/* =========================================================
   1.멘토스키샵
========================================================= */

.mento-intro {
   padding-top: 72px;
}

.mento-intro-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 18px;
}

.mento-intro-card {
   min-height: 210px;
   padding: 28px;
   border: 1px solid var(--line);
   border-radius: 22px;
   background: #fff;
   box-shadow: 0 18px 46px rgba(15, 23, 42, .06);
}

.mento-intro-card i,
.mento-intro-card svg {
   width: 34px;
   height: 34px;
   color: var(--blue);
   stroke-width: 2.1;
}

.mento-intro-card strong {
   display: block;
   margin-top: 22px;
   color: var(--dark);
   font-size: 20px;
   line-height: 1.3;
   font-weight: 900;
   letter-spacing: -0.5px;
}

.mento-intro-card p {
   margin-top: 12px;
   color: var(--text);
   font-size: 15px;
   line-height: 1.7;
   font-weight: 700;
}

.mento-gallery-section {
   background: #f6f8fb;
}

.mento-gallery {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 18px;
}

.mento-gallery-item {
   position: relative;
   height: 320px;
   border-radius: 26px;
   overflow: hidden;
   background: #111827;
   box-shadow: 0 24px 70px rgba(15, 23, 42, .14);
}

.mento-gallery-item.is-large {
   grid-row: auto;
}

.mento-gallery-item img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   opacity: .84;
   transform: scale(1.01);
}

.mento-gallery-item::after {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, rgba(15, 23, 42, .08) 0%, rgba(15, 23, 42, .74) 100%);
}

.mento-gallery-item div {
   position: absolute;
   left: 30px;
   right: 30px;
   bottom: 28px;
   z-index: 1;
   color: #fff;
}

.mento-gallery-item span {
   display: inline-flex;
   margin-bottom: 10px;
   color: #bfdbfe;
   font-size: 13px;
   font-weight: 900;
   letter-spacing: .5px;
}

.mento-gallery-item h3 {
   font-size: 28px;
   line-height: 1.25;
   font-weight: 900;
   letter-spacing: -0.8px;
}

.mento-gallery-item p {
   max-width: 520px;
   margin-top: 10px;
   color: rgba(255, 255, 255, .82);
   font-size: 15px;
   line-height: 1.65;
   font-weight: 700;
}

.mento-process {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 18px;
}

.mento-process li {
   position: relative;
   min-height: 230px;
   padding: 30px;
   border: 1px solid var(--line);
   border-radius: 24px;
   background:
      radial-gradient(circle at 100% 0%, rgba(37, 99, 235, .11), transparent 34%),
      #fff;
   box-shadow: 0 18px 46px rgba(15, 23, 42, .06);
}

.mento-process li span {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 46px;
   height: 46px;
   border-radius: 16px;
   background: var(--blue);
   color: #fff;
   font-size: 15px;
   font-weight: 900;
}

.mento-process li strong {
   display: block;
   margin-top: 26px;
   color: var(--dark);
   font-size: 22px;
   line-height: 1.3;
   font-weight: 900;
   letter-spacing: -0.6px;
}

.mento-process li p {
   margin-top: 12px;
   color: var(--text);
   font-size: 15px;
   line-height: 1.7;
   font-weight: 700;
}

.mento-return-section {
   background: #f6f8fb;
}

.mento-info-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 22px;
}

.mento-info-panel {
   min-height: 360px;
   padding: 42px;
   border: 1px solid var(--line);
   border-radius: 28px;
   background: #fff;
   box-shadow: 0 20px 60px rgba(15, 23, 42, .07);
}

.mento-info-panel.is-blue {
   background:
      radial-gradient(circle at 92% 14%, rgba(37, 99, 235, .16), transparent 34%),
      linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
}

.mento-info-panel h2 {
   color: var(--dark);
   font-size: 34px;
   line-height: 1.2;
   font-weight: 900;
   letter-spacing: -1px;
}

.mento-check-list {
   display: grid;
   gap: 14px;
   margin-top: 28px;
}

.mento-check-list li {
   position: relative;
   padding-left: 24px;
   color: var(--text);
   font-size: 16px;
   line-height: 1.7;
   font-weight: 700;
}

.mento-check-list li::before {
   content: "";
   position: absolute;
   left: 0;
   top: 11px;
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: var(--blue);
}

.mento-location {
   display: grid;
   gap: 18px;
   margin-top: 28px;
}

.mento-location p {
   padding-bottom: 18px;
   border-bottom: 1px solid rgba(148, 163, 184, .28);
}

.mento-location strong {
   display: block;
   margin-bottom: 7px;
   color: #64748b;
   font-size: 14px;
   font-weight: 900;
}

.mento-location span,
.mento-location a {
   color: var(--dark);
   font-size: 18px;
   line-height: 1.45;
   font-weight: 900;
}

.mento-map-buttons {
   display: flex;
   gap: 10px;
   margin-top: 26px;
}

.mento-map-buttons a {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   height: 48px;
   padding: 0 20px;
   border-radius: 999px;
   background: #111827;
   color: #fff;
   font-size: 15px;
   font-weight: 900;
}

.mento-map-buttons a + a {
   background: var(--blue);
}

.mento-faq-list {
   display: grid;
   gap: 12px;
}

.mento-faq-list details {
   border: 1px solid var(--line);
   border-radius: 18px;
   background: #fff;
   box-shadow: 0 12px 30px rgba(15, 23, 42, .04);
   overflow: hidden;
}

.mento-faq-list summary {
   cursor: pointer;
   padding: 22px 26px;
   color: var(--dark);
   font-size: 18px;
   font-weight: 900;
   list-style: none;
}

.mento-faq-list summary::-webkit-details-marker {
   display: none;
}

.mento-faq-list p {
   padding: 0 26px 24px;
   color: var(--text);
   font-size: 15px;
   line-height: 1.7;
   font-weight: 700;
}



@media (max-width: 980px) {
   .mento-intro-grid,
   .mento-process {
      grid-template-columns: repeat(2, 1fr);
   }

   .mento-gallery,
   .mento-info-grid {
      grid-template-columns: 1fr;
   }

   .mento-gallery-item.is-large {
      grid-row: auto;
   }
}

@media (max-width: 640px) {
   .mento-intro {
      padding-top: 58px;
   }

   .mento-intro-grid,
   .mento-process {
      grid-template-columns: 1fr;
   }

   .mento-intro-card,
   .mento-process li,
   .mento-info-panel {
      min-height: auto;
      padding: 26px;
      border-radius: 20px;
   }

   .mento-gallery {
      gap: 14px;
   }

   .mento-gallery-item {
      min-height: 330px;
      border-radius: 22px;
   }

   .mento-gallery-item div {
      left: 22px;
      right: 22px;
      bottom: 22px;
   }

   .mento-gallery-item h3 {
      font-size: 24px;
   }

   .mento-info-panel h2 {
      font-size: 29px;
   }

   .mento-map-buttons,
   .mento-bottom-cta-box {
      display: grid;
      grid-template-columns: 1fr;
   }

   .mento-map-buttons a,
   .mento-bottom-cta-box .btn {
      width: 100%;
   }

   .mento-bottom-cta {
      padding-bottom: 70px;
   }

   .mento-bottom-cta-box {
      padding: 28px;
      border-radius: 22px;
   }

   .mento-bottom-cta-box strong {
      font-size: 22px;
   }
}
/* =========================================================
   2.렌탈요금
========================================================= */
.rental-price-summary {
   padding-top: 72px;
}

.rental-price-guide {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 18px;
}

.rental-price-guide > div {
   padding: 30px;
   border: 1px solid var(--line);
   border-radius: 24px;
   background: #fff;
   box-shadow: 0 18px 46px rgba(15, 23, 42, .06);
}

.rental-price-guide svg {
   width: 36px;
   height: 36px;
   color: var(--blue);
   stroke-width: 2.1;
}

.rental-price-guide strong {
   display: block;
   margin-top: 22px;
   color: var(--dark);
   font-size: 21px;
   line-height: 1.3;
   font-weight: 900;
   letter-spacing: -0.6px;
}

.rental-price-guide p {
   margin-top: 10px;
   color: var(--text);
   font-size: 15px;
   line-height: 1.7;
   font-weight: 700;
}

.rental-price-section,
.rental-gallery-section {
   background: #f6f8fb;
}

.rental-product-panel {
   margin-bottom: 28px;
   padding: 34px;
   border: 1px solid rgba(226, 232, 240, .95);
   border-radius: 30px;
   background: #fff;
   box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}

.rental-product-panel:last-child {
   margin-bottom: 0;
}

.rental-product-head {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 28px;
   margin-bottom: 26px;
}

.rental-product-head span {
   display: block;
   margin-bottom: 8px;
   color: var(--blue);
   font-size: 13px;
   font-weight: 900;
   letter-spacing: .5px;
}

.rental-product-head h2 {
   color: var(--dark);
   font-size: 34px;
   line-height: 1.2;
   font-weight: 900;
   letter-spacing: -1px;
}

.rental-product-head p {
   margin-top: 10px;
   color: var(--text);
   font-size: 16px;
   line-height: 1.65;
   font-weight: 700;
}

.rental-product-head svg {
   width: 58px;
   height: 58px;
   color: var(--blue);
   stroke-width: 1.8;
   flex: 0 0 auto;
}

.rental-product-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 18px;
}

.rental-product-grid.is-option {
   grid-template-columns: repeat(4, 1fr);
}

.rental-price-card {
   position: relative;
   padding: 26px;
   border: 1px solid rgba(219, 226, 235, .95);
   border-radius: 24px;
   background:#ffffff;
   box-shadow: 0 14px 34px rgba(15, 23, 42, .045);
   overflow: hidden;
}

.rental-price-card::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 4px;
   background: linear-gradient(90deg, rgba(37, 99, 235, .72), rgba(96, 165, 250, .42));
}

.rental-price-card-top {
   min-height: 72px;
   padding-bottom: 18px;
   border-bottom: 1px solid var(--line);
}

.rental-price-card-top strong {
   display: block;
   color: var(--dark);
   font-size: 24px;
   line-height: 1.25;
   font-weight: 900;
   letter-spacing: -0.7px;
}

.rental-price-card-top span {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   height: 28px;
   margin-top: 10px;
   padding: 0 10px;
   border-radius: 999px;
   background: #eff6ff;
   color: var(--blue);
   font-size: 12px;
   font-weight: 900;
}

.rental-price-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 14px;
   margin-top: 18px;
}

.rental-price-row span {
   color: var(--text);
   font-size: 15px;
   font-weight: 800;
}

.rental-price-row del {
   color: #94a3b8;
   font-size: 15px;
   font-weight: 900;
   text-decoration-thickness: 2px;
}

.rental-price-row strong {
   color: var(--blue);
   font-size: 24px;
   line-height: 1.2;
   font-weight: 900;
   letter-spacing: -0.6px;
}

.rental-notice-box {
   padding: 44px;
   border-radius: 30px;
   background:var(--white);
   color: #fff;
}

.rental-notice-box h2 {
   color: var(--text);
   font-size: 34px;
   line-height: 1.25;
   font-weight: 900;
   letter-spacing: -1px;
}

.rental-notice-list {
   display: grid;
   gap: 13px;
   margin-top: 28px;
}

.rental-notice-list li {
   position: relative;
   padding-left: 24px;
   color: var(--text);
   font-size: 16px;
   line-height: 1.7;
   font-weight: 700;
}

.rental-notice-list li::before {
   content: "";
   position: absolute;
   left: 0;
   top: 11px;
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: #60a5fa;
}

.rental-gallery-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 16px;
}

.rental-gallery-item {
   position: relative;
   aspect-ratio: 4 / 3;
   border: 0;
   border-radius: 20px;
   overflow: hidden;
   background: #e5e7eb;
   cursor: pointer;
   box-shadow: 0 16px 38px rgba(15, 23, 42, .08);
}

.rental-gallery-item img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   transition: .25s ease;
}

.rental-gallery-item:hover img {
   transform: scale(1.04);
}

.rental-gallery-modal {
   position: fixed;
   inset: 0;
   z-index: 3000;
   display: none;
   align-items: center;
   justify-content: center;
   padding: 32px;
}

.rental-gallery-modal.open {
   display: flex;
}

.rental-gallery-backdrop {
   position: absolute;
   inset: 0;
   background: rgba(15, 23, 42, .82);
   backdrop-filter: blur(8px);
}

.rental-gallery-viewer {
   position: relative;
   z-index: 1;
   width: min(1080px, 100%);
}

.rental-gallery-viewer img {
   width: 100%;
   max-height: 82vh;
   object-fit: contain;
   border-radius: 22px;
   background: #111827;
   box-shadow: 0 28px 80px rgba(0, 0, 0, .32);
}

.rental-gallery-close,
.rental-gallery-nav {
   position: absolute;
   z-index: 2;
   border: 0;
   display: grid;
   place-items: center;
   background: #fff;
   color: #111827;
   box-shadow: 0 14px 36px rgba(0, 0, 0, .18);
   cursor: pointer;
}

.rental-gallery-close {
   top: -18px;
   right: -18px;
   width: 46px;
   height: 46px;
   border-radius: 999px;
}

.rental-gallery-nav {
   top: 50%;
   width: 54px;
   height: 54px;
   border-radius: 999px;
   transform: translateY(-50%);
}

.rental-gallery-nav.prev {
   left: -72px;
}

.rental-gallery-nav.next {
   right: -72px;
}

.rental-gallery-close svg,
.rental-gallery-nav svg {
   width: 24px;
   height: 24px;
   stroke-width: 2.5;
}



@media (max-width: 980px) {
   .rental-price-guide,
   .rental-product-grid,
   .rental-product-grid.is-option {
      grid-template-columns: repeat(2, 1fr);
   }

   .rental-gallery-grid {
      grid-template-columns: repeat(3, 1fr);
   }

   .rental-gallery-nav.prev {
      left: 14px;
   }

   .rental-gallery-nav.next {
      right: 14px;
   }
}

@media (max-width: 640px) {
   .rental-price-summary {
      padding-top: 58px;
   }

   .rental-price-guide,
   .rental-product-grid,
   .rental-product-grid.is-option {
      grid-template-columns: 1fr;
   }

   .rental-price-guide > div,
   .rental-product-panel,
   .rental-notice-box {
      padding: 26px;
      border-radius: 22px;
   }

   .rental-product-head {
      align-items: flex-start;
   }

   .rental-product-head h2 {
      font-size: 30px;
   }

   .rental-product-head svg {
      display: none;
   }

   .rental-gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
   }

   .rental-gallery-item {
      border-radius: 14px;
   }

   .rental-gallery-modal {
      padding: 16px;
   }

   .rental-gallery-viewer img {
      border-radius: 16px;
   }

   .rental-gallery-close {
      top: 12px;
      right: 12px;
   }

   .rental-gallery-nav {
      width: 46px;
      height: 46px;
   }

}
/* =========================================================
   3.리프트요금
========================================================= */

.lift-summary-section {
   padding-top: 72px;
}

.lift-guide-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 18px;
}

.lift-guide-card {
   padding: 30px;
   border: 1px solid var(--line);
   border-radius: 24px;
   background: #fff;
   box-shadow: 0 18px 46px rgba(15, 23, 42, .06);
}

.lift-guide-card svg {
   width: 36px;
   height: 36px;
   color: var(--blue);
   stroke-width: 2.1;
}

.lift-guide-card strong {
   display: block;
   margin-top: 22px;
   color: var(--dark);
   font-size: 21px;
   line-height: 1.3;
   font-weight: 900;
   letter-spacing: -0.6px;
}

.lift-guide-card p {
   margin-top: 10px;
   color: var(--text);
   font-size: 15px;
   line-height: 1.7;
   font-weight: 700;
}

.lift-price-section {
   background: #f6f8fb;
}

.lift-product-card {
   margin-bottom: 28px;
   padding: 34px;
   border: 1px solid rgba(226, 232, 240, .95);
   border-radius: 30px;
   background: #fff;
   box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}

.lift-product-card:last-child {
   margin-bottom: 0;
}

.lift-product-head {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 28px;
   margin-bottom: 26px;
   padding: 30px;
   border-radius: 24px;

}

.lift-product-head span {
   display: block;
   margin-bottom: 8px;
   color: var(--blue);
   font-size: 13px;
   font-weight: 900;
   letter-spacing: .5px;
}

.lift-product-head h2 {
   color: var(--dark);
   font-size: 34px;
   line-height: 1.2;
   font-weight: 900;
   letter-spacing: -1px;
}

.lift-product-head p {
   margin-top: 10px;
   color: var(--text);
   font-size: 16px;
   line-height: 1.65;
   font-weight: 700;
}

.lift-product-head svg {
   width: 58px;
   height: 58px;
   color: var(--blue);
   stroke-width: 1.8;
   flex: 0 0 auto;
}

.lift-time-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 18px;
}

.lift-time-card {
   position: relative;
   padding: 24px;
   border: 1px solid rgba(219, 226, 235, .95);
   border-radius: 24px;
   background:
      radial-gradient(circle at 94% 4%, rgba(37, 99, 235, .055), transparent 26%),
      linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
   box-shadow: 0 14px 34px rgba(15, 23, 42, .045);
   overflow: hidden;
}

.lift-time-card::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 5px;
   background: linear-gradient(90deg, var(--blue), #60a5fa);
   opacity: .9;
}

.lift-time-title {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   margin-bottom: 18px;
}

.lift-time-title strong {
   color: var(--dark);
   font-size: 26px;
   line-height: 1;
   font-weight: 900;
   letter-spacing: -0.7px;
}

.lift-time-title em {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   height: 30px;
   padding: 0 11px;
   border-radius: 999px;
   background: var(--dark);
   color: var(--white);
   font-size: 13px;
   font-style: normal;
   font-weight: 900;
}

.lift-price-group {
   padding: 18px 0;
   border-top: 1px solid var(--line);
}

.lift-price-group h3 {
   margin-bottom: 12px;
   color: #64748b;
   font-size: 14px;
   font-weight: 900;
}

.lift-price-group dl {
   display: grid;
   gap: 8px;
}

.lift-price-group dl div {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 14px;
}

.lift-price-group dt {
   color: var(--text);
   font-size: 15px;
   font-weight: 800;
}

.lift-price-group dd {
   display: grid;
   justify-items: end;
   gap: 3px;
   color: var(--dark);
   font-weight: 500;
}

.lift-price-group del {
   color: #94a3b8;
   font-size: 14px;
   text-decoration-thickness: 2px;
}

.lift-price-group dd strong {
   color: var(--blue);
   font-size: 19px;
   line-height: 1.2;
   font-weight: 900;
   letter-spacing: -0.4px;
}

.lift-notice-section {
   padding-bottom: 100px;
}

.lift-notice-box {
   padding: 44px;
   border-radius: 30px;
   background:#ffffff;
   color: var(--text);
}

.lift-notice-box h2 {
   font-size: 34px;
   line-height: 1.25;
   font-weight: 900;
   letter-spacing: -1px;
}

.lift-notice-list {
   display: grid;
   gap: 13px;
   margin-top: 28px;
}

.lift-notice-list li {
   position: relative;
   padding-left: 24px;
   color: var(--text);
   font-size: 16px;
   line-height: 1.7;
   font-weight: 700;
}

.lift-notice-list li::before {
   content: "";
   position: absolute;
   left: 0;
   top: 11px;
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: #60a5fa;
}



@media (max-width: 980px) {
   .lift-guide-grid,
   .lift-time-grid {
      grid-template-columns: 1fr;
   }
}

@media (max-width: 640px) {
   .lift-summary-section {
      padding-top: 58px;
   }

   .lift-guide-card,
   .lift-product-card,
   .lift-notice-box {
      padding: 26px;
      border-radius: 22px;
   }

   .lift-product-head {
      align-items: flex-start;
      padding: 24px;
      border-radius: 20px;
   }

   .lift-product-head h2 {
      font-size: 30px;
   }

   .lift-product-head svg {
      display: none;
   }

   .lift-time-title strong {
      font-size: 24px;
   }

   .lift-notice-box h2 {
      font-size: 28px;
   }


}

.lift-visual-section{
   padding-top:0;
   padding-bottom:90px;
}

.lift-visual{
   position:relative;
   display:flex;
   align-items:center;
   min-height:430px;
   overflow:hidden;
   border-radius:24px;
   background:#101828;
}

.lift-visual>img{
   position:absolute;
   inset:0;
   width:100%;
   height:100%;
   object-fit:cover;
   transition:transform .7s cubic-bezier(.2,.8,.2,1);
}

.lift-visual::after{
   content:"";
   position:absolute;
   inset:0;
   background:linear-gradient(
      90deg,
      rgba(16,24,40,.94) 0%,
      rgba(16,24,40,.78) 45%,
      rgba(16,24,40,.15) 100%
   );
}

.lift-visual-content{
   position:relative;
   z-index:1;
   max-width:680px;
   padding:60px;
   color:#fff;
}

.lift-visual-content>span{
   display:block;
   margin-bottom:14px;
   color:#60a5fa;
   font-size:14px;
   font-weight:900;
}

.lift-visual-content h2{
   margin:0;
   color:#fff;
   font-size:38px;
   font-weight:900;
   line-height:1.25;
}

.lift-visual-content p{
   margin:22px 0 0;
   color:#e2e8f0;
   font-size:16px;
   font-weight:600;
   line-height:1.8;
   word-break:keep-all;
}

.lift-visual-benefits{
   display:flex;
   flex-wrap:wrap;
   gap:8px 18px;
   margin-top:24px;
}

.lift-visual-benefits strong{
   position:relative;
   padding-left:14px;
   color:#fff;
   font-size:14px;
   font-weight:800;
}

.lift-visual-benefits strong::before{
   content:"";
   position:absolute;
   left:0;
   top:7px;
   width:5px;
   height:5px;
   border-radius:50%;
   background:#60a5fa;
}

.lift-visual-button{
   display:inline-flex;
   align-items:center;
   justify-content:center;
   gap:8px;
   height:50px;
   margin-top:30px;
   padding:0 24px;
   border-radius:8px;
   background:#2563eb;
   color:#fff;
   font-size:15px;
   font-weight:900;
   text-decoration:none;
}

.lift-visual-button svg{
   width:18px;
   height:18px;
}

@media(max-width:767px){
   .lift-visual-section{
      padding-bottom:55px;
   }

   .lift-visual{
      min-height:540px;
      border-radius:16px;
      align-items:flex-end;
   }

   .lift-visual>img{
      object-position:center;
   }

   .lift-visual::after{
      background:linear-gradient(
         0deg,
         rgba(16,24,40,.96) 0%,
         rgba(16,24,40,.68) 65%,
         rgba(16,24,40,.18) 100%
      );
   }

   .lift-visual-content{
      padding:32px 24px;
   }

   .lift-visual-content h2{
      font-size:28px;
   }

   .lift-visual-content p{
      font-size:15px;
   }

   .lift-visual-benefits{
      display:grid;
      gap:9px;
   }

   .lift-visual-button{
      width:100%;
      box-sizing:border-box;
   }
}

@media (hover:hover) and (pointer:fine){
   .lift-visual:hover>img{
      transform:scale(1.04);
   }
}

@media (prefers-reduced-motion:reduce){
   .lift-visual>img{
      transition:none;
   }
}
/* =========================================================
   4.강습
========================================================= */
.lesson-overview-section {
   padding-top: 72px;
}

.lesson-course-list {
   display: grid;
   gap: 34px;
}

.lesson-course-panel {
   padding: 42px;
   border: 1px solid rgba(226, 232, 240, .95);
   border-radius: 30px;
   background: #fff;
   box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}

.lesson-course-head {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
   margin-bottom: 30px;
   padding-bottom: 24px;
   border-bottom: 1px solid var(--line);
}

.lesson-course-head span {
   display: block;
   margin-bottom: 8px;
   color: var(--blue);
   font-size: 13px;
   font-weight: 900;
   letter-spacing: .5px;
}

.lesson-course-head h2 {
   color: var(--dark);
   font-size: 34px;
   line-height: 1.2;
   font-weight: 900;
   letter-spacing: -1px;
}

.lesson-course-head svg {
   width: 54px;
   height: 54px;
   color: var(--blue);
   stroke-width: 1.8;
}

.lesson-level-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 18px;
}

.lesson-level-card {
   display: flex;
   flex-direction: column;
   min-height: 360px;
   padding: 28px;
   border: 1px solid rgba(219, 226, 235, .95);
   border-radius: 24px;
   background: #fbfdff;
}

.lesson-level-top em {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: fit-content;
   height: 30px;
   padding: 0 12px;
   border-radius: 999px;
   background: #eff6ff;
   color: var(--blue);
   font-size: 13px;
   font-style: normal;
   font-weight: 900;
}

.lesson-level-top h3 {
   margin-top: 18px;
   color: var(--dark);
   font-size: 23px;
   line-height: 1.3;
   font-weight: 900;
   letter-spacing: -0.6px;
}

.lesson-level-top p {
   margin-top: 12px;
   color: var(--text);
   font-size: 15px;
   line-height: 1.7;
   font-weight: 700;
}

.lesson-level-card ul {
   display: grid;
   gap: 8px;
   margin-top: 20px;
}

.lesson-level-card li {
   position: relative;
   padding-left: 18px;
   color: #475569;
   font-size: 14px;
   line-height: 1.5;
   font-weight: 800;
}

.lesson-level-card li::before {
   content: "";
   position: absolute;
   left: 0;
   top: 8px;
   width: 6px;
   height: 6px;
   border-radius: 50%;
   background: var(--blue);
}

.lesson-video-btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   width: 100%;
   height: 46px;
   margin-top: auto;
   border: 0;
   border-radius: 999px;
   background: #111827;
   color: #fff;
   font-size: 15px;
   font-weight: 900;
   cursor: pointer;
}

.lesson-video-btn svg {
   width: 18px;
   height: 18px;
   stroke-width: 2.5;
}

.lesson-price-section {
   background: #f6f8fb;
}

.lesson-price-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 22px;
}

.lesson-price-card {
   padding: 34px;
   border: 1px solid rgba(226, 232, 240, .95);
   border-radius: 28px;
   background: #fff;
   box-shadow: 0 20px 60px rgba(15, 23, 42, .07);
}

.lesson-price-card h3 {
   color: var(--dark);
   font-size: 30px;
   line-height: 1.25;
   font-weight: 900;
   letter-spacing: -0.8px;
}

.lesson-price-list {
   display: grid;
   gap: 12px;
   margin-top: 24px;
}

.lesson-price-list div {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 18px;
   padding: 18px 0;
   border-top: 1px solid var(--line);
}

.lesson-price-list span {
   color: var(--text);
   font-size: 16px;
   font-weight: 900;
}

.lesson-price-list p {
   display: grid;
   justify-items: end;
   gap: 3px;
}

.lesson-price-list del {
   color: #94a3b8;
   font-size: 15px;
   font-weight: 900;
   text-decoration-thickness: 2px;
}

.lesson-price-list strong {
   color: var(--blue);
   font-size: 23px;
   line-height: 1.2;
   font-weight: 900;
   letter-spacing: -0.5px;
}

.lesson-junior-box {
   display: grid;
   grid-template-columns: 0.4fr .8fr;
   gap: 34px;
   align-items: center;
   padding: 44px;
   border-radius: 30px;
   background:
      radial-gradient(circle at 90% 16%, rgba(255, 106, 0, .2), transparent 28%),
      linear-gradient(135deg, #111827 0%, #1e3a8a 100%);
   color: #fff;
}

.lesson-junior-box h2 {
   font-size: 34px;
   line-height: 1.25;
   font-weight: 900;
   letter-spacing: -1px;
}

.lesson-junior-box p {
   margin-top: 16px;
   color: rgba(255, 255, 255, .82);
   font-size: 16px;
   line-height: 1.8;
   font-weight: 700;
}

.lesson-junior-box ul {
   display: grid;
   gap: 12px;
}

.lesson-junior-box li {
   padding: 16px 18px;
   border-radius: 16px;
   background: rgba(255, 255, 255, .1);
   color: #fff;
   font-size: 15px;
   font-weight: 900;
}

.lesson-video-modal {
   position: fixed;
   inset: 0;
   z-index: 3000;
   display: none;
   align-items: center;
   justify-content: center;
   padding: 32px;
}

.lesson-video-modal.open {
   display: flex;
}

.lesson-video-backdrop {
   position: absolute;
   inset: 0;
   background: rgba(15, 23, 42, .82);
   backdrop-filter: blur(8px);
}

.lesson-video-viewer {
   position: relative;
   z-index: 1;
   width: min(980px, 100%);
}

.lesson-video-frame {
   aspect-ratio: 16 / 9;
   border-radius: 22px;
   background: #020617;
   overflow: hidden;
   box-shadow: 0 28px 80px rgba(0, 0, 0, .32);
}

.lesson-video-frame iframe,
.lesson-video-frame video {
   width: 100%;
   height: 100%;
   border: 0;
   display: block;
}

.lesson-video-empty {
   height: 100%;
   display: grid;
   place-items: center;
   color: #fff;
   font-size: 22px;
   font-weight: 900;
}

.lesson-video-close {
   position: absolute;
   top: -18px;
   right: -18px;
   z-index: 2;
   width: 46px;
   height: 46px;
   border: 0;
   border-radius: 999px;
   background: #fff;
   color: #111827;
   display: grid;
   place-items: center;
   box-shadow: 0 14px 36px rgba(0, 0, 0, .18);
   cursor: pointer;
}

@media (max-width: 980px) {
   .lesson-level-grid,
   .lesson-price-grid,
   .lesson-junior-box {
      grid-template-columns: 1fr;
   }
}

@media (max-width: 640px) {
   .lesson-overview-section {
      padding-top: 58px;
   }

   .lesson-course-panel,
   .lesson-price-card,
   .lesson-junior-box {
      padding: 26px;
      border-radius: 22px;
   }

   .lesson-course-head h2,
   .lesson-junior-box h2 {
      font-size: 30px;
   }

   .lesson-course-head svg {
      display: none;
   }
}
/* 기존 강습안내 CSS 아래에 추가 */
.lesson-flow-section,
.lesson-teacher-section {
   background: #f6f8fb;
}

.lesson-schedule-list {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 22px;
}

.lesson-schedule-card {
   padding: 34px;
   border: 1px solid rgba(226, 232, 240, .95);
   border-radius: 28px;
   background: #fff;
   box-shadow: 0 20px 60px rgba(15, 23, 42, .07);
}

.lesson-schedule-head,
.lesson-price-head {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
}

.lesson-schedule-head span,
.lesson-price-head span {
   display: block;
   margin-bottom: 7px;
   color: var(--blue);
   font-size: 13px;
   font-weight: 900;
}

.lesson-schedule-head h3 {
   color: var(--dark);
   font-size: 30px;
   line-height: 1.25;
   font-weight: 900;
}

.lesson-schedule-head > em,
.lesson-price-head > em {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   height: 38px;
   padding: 0 14px;
   border-radius: 999px;
   background: #111827;
   color: #fff;
   font-size: 13px;
   font-style: normal;
   font-weight: 900;
}

.lesson-schedule-axis {
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   margin: 30px 0 8px 76px;
   color: #94a3b8;
   font-size: 11px;
   font-weight: 800;
}

.lesson-schedule-axis span:last-child {
   text-align: right;
}

.lesson-schedule-chart {
   display: grid;
   gap: 12px;
}

.lesson-schedule-row {
   display: grid;
   grid-template-columns: 62px minmax(0, 1fr);
   align-items: center;
   gap: 14px;
}

.lesson-schedule-row > strong {
   color: #475569;
   font-size: 14px;
   font-weight: 900;
}

.lesson-schedule-row > em {
   display: none;
}

.lesson-schedule-rail {
   position: relative;
   height: 38px;
   border-radius: 8px;
   background:
      repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), #e5eaf1 calc(25% - 1px), #e5eaf1 25%),
      #f1f5f9;
   overflow: hidden;
}

.lesson-schedule-rail span {
   position: absolute;
   top: 4px;
   bottom: 4px;
   display: flex;
   align-items: center;
   justify-content: center;
   min-width: 112px;
   padding: 0 9px;
   border-radius: 6px;
   background: var(--blue);
   color: #fff;
   font-size: 11px;
   font-weight: 900;
   white-space: nowrap;
}

.lesson-schedule-card:nth-child(2) .lesson-schedule-rail span {
   background: #111827;
}

.lesson-price-table {
   margin-top: 24px;
   border-top: 1px solid var(--line);
}

.lesson-price-table-head,
.lesson-price-row {
   display: grid;
   grid-template-columns: .7fr 1fr 1fr;
   align-items: center;
   gap: 10px;
   padding: 14px 4px;
   text-align: right;
}

.lesson-price-table-head {
   color: #94a3b8;
   font-size: 12px;
   font-weight: 900;
}

.lesson-price-row {
   border-top: 1px solid #edf0f4;
   color: var(--dark);
}

.lesson-price-table-head span:first-child,
.lesson-price-row strong {
   text-align: left;
}

.lesson-price-row strong {
   font-size: 15px;
   font-weight: 900;
}

.lesson-price-row span {
   font-size: 17px;
   font-weight: 900;
}

.lesson-price-row .is-weekend {
   color: var(--blue);
}

.lesson-price-note {
   display: flex;
   align-items: flex-start;
   gap: 12px;
   margin-top: 20px;
   padding: 18px 20px;
   border-radius: 14px;
   background: #eef2f7;
   color: #475569;
}

.lesson-price-note svg {
   width: 20px;
   height: 20px;
   flex: 0 0 auto;
   color: var(--blue);
}

.lesson-price-note p {
   font-size: 14px;
   line-height: 1.65;
   font-weight: 700;
}

.lesson-price-empty,
.lesson-teacher-empty {
   padding: 44px;
   border: 1px solid var(--line);
   border-radius: 20px;
   background: #fff;
   color: #64748b;
   text-align: center;
   font-weight: 800;
}

.lesson-teacher-grid {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 18px;
}

.lesson-teacher-card {
   display: grid;
   grid-template-columns: 150px minmax(0, 1fr);
   align-items: start;
   gap: 26px;
   padding: 30px;
   border: 1px solid rgba(226, 232, 240, .95);
   border-radius: 24px;
   background: #fff;
   box-shadow: 0 18px 46px rgba(15, 23, 42, .05);
}

.lesson-teacher-photo {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 150px;
   aspect-ratio: 1;
   border: 7px solid #eef4ff;
   border-radius: 50%;
   background: #e8edf4;
   overflow: hidden;
}

.lesson-teacher-photo img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

.lesson-teacher-photo svg {
   width: 48px;
   height: 48px;
   color: #94a3b8;
}

.lesson-teacher-body > span {
   color: var(--blue);
   font-size: 12px;
   font-weight: 900;
}

.lesson-teacher-body h3 {
   margin-top: 7px;
   color: var(--dark);
   font-size: 25px;
   line-height: 1.25;
   font-weight: 900;
}

.lesson-teacher-body > strong {
   display: block;
   margin-top: 5px;
   color: #64748b;
   font-size: 14px;
   font-weight: 800;
}

.lesson-teacher-body > p {
   margin-top: 12px;
   color: var(--text);
   font-size: 14px;
   line-height: 1.65;
   font-weight: 700;
}

.lesson-teacher-career {
   margin-top: 16px;
   padding-top: 14px;
   border-top: 1px solid var(--line);
   color: #475569;
   font-size: 13px;
   line-height: 1.65;
   font-weight: 700;
}

.lesson-junior-box.has-certificate {
   grid-template-columns: 420px minmax(0, 1fr);
   align-items: center;
}

.lesson-junior-box.has-certificate .lesson-junior-media {
   display: flex;
   align-items: center;
   justify-content: center;
   min-height: 0;
   padding: 36px;
}

.lesson-junior-box.has-certificate .lesson-junior-media img {
   display: block;
   width: 100%;
   max-width: 340px;
   height: auto;
   max-height: 440px;
   object-fit: contain;
}

@media (max-width: 980px) {
   .lesson-junior-box.has-certificate {
      grid-template-columns: 1fr;
   }
}

.lesson-junior-content {
   display: flex;
   flex-direction: column;
   justify-content: center;
   padding: 56px;
}

.lesson-junior-box.has-certificate h3 {
   margin-top: 10px;
   color: var(--dark);
   font-size: 38px;
   line-height: 1.25;
   font-weight: 900;
}

.lesson-junior-box.has-certificate p {
   margin-top: 20px;
   color: var(--text);
   font-size: 16px;
   line-height: 1.8;
   font-weight: 700;
}

.lesson-junior-box.has-certificate ul {
   display: grid;
   gap: 12px;
   margin-top: 24px;
}

.lesson-junior-box.has-certificate li {
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 0;
   background: transparent;
   color: #334155;
   font-size: 15px;
   font-weight: 800;
}

.lesson-junior-box.has-certificate li svg {
   width: 20px;
   height: 20px;
   padding: 3px;
   border-radius: 50%;
   background: var(--blue);
   color: #fff;
   stroke-width: 3;
}

.lesson-junior-content .btn {
   align-self: flex-start;
   margin-top: 30px;
}

.lesson-notice-section {
   padding-bottom: 100px;
}

.lesson-notice-box {
   display: grid;
   grid-template-columns: .8fr 1.2fr;
   gap: 48px;
   padding: 44px;
   border-radius: 28px;
   border: 1px solid rgba(226, 232, 240, .95);
   background: #ffffff;
   color: var(--text);
}

.lesson-notice-title h2 {
   margin-top: 8px;
   font-size: 32px;
   line-height: 1.3;
   font-weight: 900;
}

.lesson-notice-box ul {
   display: grid;
   gap: 12px;
}

.lesson-notice-box li {
   position: relative;
   padding-left: 20px;
   color: var(--text);
   font-size: 15px;
   line-height: 1.65;
   font-weight: 700;
}

.lesson-notice-box li::before {
   content: "";
   position: absolute;
   left: 0;
   top: 10px;
   width: 7px;
   height: 7px;
   border-radius: 50%;
   background: #60a5fa;
}

@media (max-width: 1040px) {
   .lesson-schedule-list,
   .lesson-teacher-grid {
      grid-template-columns: 1fr;
   }
}

@media (max-width: 980px) {
   .lesson-junior-box.has-certificate {
      grid-template-columns: 1fr;
   }
}

@media (max-width: 640px) {
   .lesson-schedule-card,
   .lesson-teacher-card,
   .lesson-notice-box {
      padding: 26px;
      border-radius: 22px;
   }

   .lesson-schedule-head h3 {
      font-size: 25px;
   }

   .lesson-schedule-axis,
   .lesson-schedule-rail {
      display: none;
   }

   .lesson-schedule-row {
      grid-template-columns: 54px 1fr;
      padding: 11px 0;
      border-top: 1px solid #edf0f4;
   }

   .lesson-schedule-row > em {
      display: block;
      color: var(--dark);
      font-size: 14px;
      font-style: normal;
      font-weight: 900;
      text-align: right;
   }

   .lesson-price-table-head,
   .lesson-price-row {
      grid-template-columns: .6fr 1fr 1fr;
   }

   .lesson-price-row span {
      font-size: 15px;
   }

   .lesson-teacher-card {
      grid-template-columns: 92px minmax(0, 1fr);
      gap: 18px;
   }

   .lesson-teacher-photo {
      width: 92px;
      border-width: 5px;
   }

   .lesson-teacher-body h3 {
      font-size: 22px;
   }

   .lesson-junior-box.has-certificate {
      padding: 0;
      border-radius: 22px;
   }

   .lesson-junior-media {
      min-height: 0;
      padding: 22px;
   }

   .lesson-junior-content {
      padding: 30px 24px;
   }

   .lesson-junior-box.has-certificate h3 {
      font-size: 30px;
   }

   .lesson-junior-content .btn {
      width: 100%;
   }

   .lesson-notice-box {
      grid-template-columns: 1fr;
      gap: 24px;
   }
}
.lesson-level-card > em,
.lesson-level-card .lesson-level-top > em {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   align-self: flex-start;
   width: fit-content;
   height: 32px;
   margin-bottom: 16px;
   padding: 0 13px;
   border-radius: 999px;
   font-size: 13px;
   line-height: 1;
   font-style: normal;
   font-weight: 900;
}

/* 입문 */
.lesson-level-card:nth-child(1) > em,
.lesson-level-card:nth-child(1) .lesson-level-top > em {
   background: #eaf2ff;
   color: #2563eb;
}

/* 초급 */
.lesson-level-card:nth-child(2) > em,
.lesson-level-card:nth-child(2) .lesson-level-top > em {
   background: #eaf8f1;
   color: #07875d;
}

/* 중급 */
.lesson-level-card:nth-child(3) > em,
.lesson-level-card:nth-child(3) .lesson-level-top > em {
   background: #fff2e8;
   color: #e85d04;
}

.lesson-video-list {
   display: grid;
   gap: 8px;
   margin-top: auto;
   padding-top: 24px;
}

.lesson-video-chip {
   display: flex;
   align-items: center;
   gap: 9px;
   width: 100%;
   min-height: 40px;
   padding: 8px 14px;
   border: 1px solid #dbe5f3;
   border-radius: 999px;
   background: #fff;
   color: #334155;
   font-size: 13px;
   font-weight: 900;
   text-align: left;
   cursor: pointer;
   transition:
      border-color .2s ease,
      background-color .2s ease,
      color .2s ease;
}

.lesson-video-chip:hover {
   border-color: var(--blue);
   background: #eff6ff;
   color: var(--blue);
}

.lesson-video-chip svg {
   width: 18px;
   height: 18px;
   flex: 0 0 auto;
   color: var(--blue);
   stroke-width: 2.4;
}

.lesson-video-chip span {
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
}

.lesson-video-modal-head {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
   margin-bottom: 14px;
   color: #fff;
}

.lesson-video-modal-head strong {
   font-size: 18px;
   line-height: 1.4;
   font-weight: 900;
}

.lesson-video-modal-head .lesson-video-close {
   position: static;
   flex: 0 0 auto;
}

.lesson-process-section {
   background: #fff;
}

.lesson-process-flow {
   position: relative;
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   gap: 0;
   margin-top: 42px;
}

.lesson-process-flow::before {
   content: "";
   position: absolute;
   left: 10%;
   right: 10%;
   top: 32px;
   height: 2px;
   background: var(--line);
   z-index: 0;
}

.lesson-process-flow li {
   position: relative;
   z-index: 1;
   display: grid;
   justify-items: center;
   text-align: center;
   padding: 0 16px;
}

.lesson-process-icon {
   position: relative;
   z-index: 2;
   display: grid;
   place-items: center;
   width: 64px;
   height: 64px;
   margin: 0 auto 18px;
   border-radius: 999px;
   background: #fff;
   color: var(--blue);
   border: 2px solid #dbeafe;
   box-shadow: 0 12px 30px rgba(37, 99, 235, .12);
}

.lesson-process-icon svg {
   width: 28px;
   height: 28px;
   stroke-width: 2.3;
}

.lesson-process-flow strong {
   color: var(--dark);
   font-size: 18px;
   font-weight: 900;
}

.lesson-process-desc {
   margin-top: 8px;
   color: var(--text);
   font-size: 14px;
   line-height: 1.6;
   font-weight: 700;
}
@media (max-width: 980px) {
   .lesson-process-flow {
      grid-template-columns: 1fr;
      gap: 24px;
      margin-top: 32px;
   }

   .lesson-process-flow::before {
      left: 32px;
      right: auto;
      top: 0;
      bottom: 0;
      width: 2px;
      height: auto;
   }

   .lesson-process-flow li {
      display: grid;
      grid-template-columns: 64px 1fr;
      column-gap: 16px;
      align-items: start;
      justify-items: start;
      text-align: left;
      padding: 0;
   }

   .lesson-process-icon {
      grid-row: span 2;
      margin: 0;
   }

   .lesson-process-flow strong {
      align-self: end;
      padding-top: 6px;
   }

   .lesson-process-desc {
      margin-top: 4px;
   }
}

/* 기존 강습안내 CSS 아래에 추가 */
.lesson-trust-box {
   position: relative;
   display: grid;
   grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
   gap: 28px;
   margin-bottom: 34px;
   padding: 42px;
   border: 1px solid rgba(191, 219, 254, .9);
   border-radius: 30px;
   background:
      radial-gradient(circle at 93% 0%, rgba(37, 99, 235, .16), transparent 34%),
      linear-gradient(135deg, #f8fbff 0%, #edf5ff 100%);
   box-shadow: 0 24px 70px rgba(37, 99, 235, .08);
   overflow: hidden;
}

.lesson-trust-box::before {
   content: "";
   position: absolute;
   left: 42px;
   right: 42px;
   bottom: 148px;
   height: 1px;
   background: rgba(148, 163, 184, .22);
}

.lesson-trust-copy,
.lesson-cert-list,
.lesson-promise-grid {
   position: relative;
   z-index: 1;
}

.lesson-trust-copy h3 {
   margin-top: 10px;
   color: var(--dark);
   font-size: 40px;
   line-height: 1.22;
   font-weight: 900;
   letter-spacing: -1.2px;
}

.lesson-trust-copy p {
   max-width: 620px;
   margin-top: 18px;
   color: #475569;
   font-size: 16px;
   line-height: 1.8;
   font-weight: 700;
   word-break: keep-all;
}

.lesson-cert-list {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 14px;
   align-self: stretch;
}

.lesson-cert-card {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   min-height: 210px;
   padding: 24px 18px;
   border: 1px solid rgba(226, 232, 240, .95);
   border-radius: 24px;
   background: rgba(255, 255, 255, .88);
   text-align: center;
   box-shadow: 0 18px 46px rgba(15, 23, 42, .06);
}

.lesson-cert-card img {
   display: block;
   width: min(132px, 78%);
   height: 86px;
   object-fit: contain;
   margin-bottom: 16px;
}

.lesson-cert-card span {
   display: inline-flex;
   align-items: center;
   height: 26px;
   padding: 0 10px;
   border-radius: 999px;
   background: #e8f0ff;
   color: var(--blue);
   font-size: 12px;
   font-weight: 900;
}

.lesson-cert-card strong {
   display: block;
   margin-top: 9px;
   color: var(--dark);
   font-size: 15px;
   line-height: 1.35;
   font-weight: 900;
}

.lesson-promise-grid {
   grid-column: 1 / -1;
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   gap: 14px;
   padding-top: 30px;
}

.lesson-promise-card {
   padding: 24px;
   border: 1px solid rgba(226, 232, 240, .9);
   border-radius: 20px;
   background: rgba(255, 255, 255, .76);
}

.lesson-promise-card svg {
   width: 30px;
   height: 30px;
   color: var(--blue);
   stroke-width: 2.1;
}

.lesson-promise-card strong {
   display: block;
   margin-top: 16px;
   color: var(--dark);
   font-size: 19px;
   line-height: 1.3;
   font-weight: 900;
}

.lesson-promise-card p {
   margin-top: 9px;
   color: #64748b;
   font-size: 14px;
   line-height: 1.65;
   font-weight: 700;
   word-break: keep-all;
}

.lesson-course-head h2,
.lesson-course-head h3,
.lesson-price-head h3,
.lesson-schedule-head h3 {
   color: var(--dark);
   font-size: 30px;
   line-height: 1.2;
   font-weight: 900;
}

.lesson-level-card em {
   display: inline-flex;
   align-items: center;
   height: 28px;
   padding: 0 10px;
   border-radius: 999px;
   background: #e8f0ff;
   color: var(--blue);
   font-size: 12px;
   font-style: normal;
   font-weight: 900;
}

.lesson-level-card h3,
.lesson-level-card h4 {
   margin-top: 15px;
   color: var(--dark);
   font-size: 21px;
   line-height: 1.3;
   font-weight: 900;
}

.lesson-flow-section,
.lesson-teacher-section {
   background: #f6f8fb;
}

.lesson-schedule-list {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 22px;
}

.lesson-schedule-card {
   padding: 34px;
   border: 1px solid rgba(226, 232, 240, .95);
   border-radius: 28px;
   background: #fff;
   box-shadow: 0 20px 60px rgba(15, 23, 42, .07);
}

.lesson-schedule-head,
.lesson-price-head {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
}

.lesson-schedule-head span,
.lesson-price-head span {
   display: block;
   margin-bottom: 7px;
   color: var(--blue);
   font-size: 13px;
   font-weight: 900;
}

.lesson-schedule-head h3 {
   color: var(--dark);
   font-size: 30px;
   line-height: 1.25;
   font-weight: 900;
}

.lesson-schedule-head > em,
.lesson-price-head > em {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   height: 38px;
   padding: 0 14px;
   border-radius: 999px;
   background: #111827;
   color: #fff;
   font-size: 13px;
   font-style: normal;
   font-weight: 900;
}

.lesson-schedule-axis {
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   margin: 30px 0 8px 76px;
   color: #94a3b8;
   font-size: 11px;
   font-weight: 800;
}

.lesson-schedule-axis span:last-child {
   text-align: right;
}

.lesson-schedule-chart {
   display: grid;
   gap: 12px;
}

.lesson-schedule-row {
   display: grid;
   grid-template-columns: 62px minmax(0, 1fr);
   align-items: center;
   gap: 14px;
}

.lesson-schedule-row > strong {
   color: #475569;
   font-size: 14px;
   font-weight: 900;
}

.lesson-schedule-row > em {
   display: none;
}

.lesson-schedule-rail {
   position: relative;
   height: 38px;
   border-radius: 8px;
   background:
      repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), #e5eaf1 calc(25% - 1px), #e5eaf1 25%),
      #f1f5f9;
   overflow: hidden;
}

.lesson-schedule-rail span {
   position: absolute;
   top: 4px;
   bottom: 4px;
   display: flex;
   align-items: center;
   justify-content: center;
   min-width: 112px;
   padding: 0 9px;
   border-radius: 6px;
   background: var(--blue);
   color: #fff;
   font-size: 11px;
   font-weight: 900;
   white-space: nowrap;
}

.lesson-schedule-card:nth-child(2) .lesson-schedule-rail span {
   background: #111827;
}

.lesson-price-table {
   margin-top: 24px;
   border-top: 1px solid var(--line);
}

.lesson-price-table-head,
.lesson-price-row {
   display: grid;
   grid-template-columns: .7fr 1fr 1fr;
   align-items: center;
   gap: 10px;
   padding: 14px 4px;
   text-align: right;
}

.lesson-price-table-head {
   color: #94a3b8;
   font-size: 12px;
   font-weight: 900;
}

.lesson-price-row {
   border-top: 1px solid #edf0f4;
   color: var(--dark);
}

.lesson-price-table-head span:first-child,
.lesson-price-row strong {
   text-align: left;
}

.lesson-price-row strong {
   font-size: 15px;
   font-weight: 900;
}

.lesson-price-row span {
   font-size: 17px;
   font-weight: 900;
}

.lesson-price-row .is-weekend {
   color: var(--blue);
}

.lesson-price-note {
   display: flex;
   align-items: flex-start;
   gap: 12px;
   margin-top: 20px;
   padding: 18px 20px;
   border-radius: 14px;
   background: #eef2f7;
   color: #475569;
}

.lesson-price-note svg {
   width: 20px;
   height: 20px;
   flex: 0 0 auto;
   color: var(--blue);
}

.lesson-price-note p {
   font-size: 14px;
   line-height: 1.65;
   font-weight: 700;
}

.lesson-price-empty,
.lesson-teacher-empty {
   padding: 44px;
   border: 1px solid var(--line);
   border-radius: 20px;
   background: #fff;
   color: #64748b;
   text-align: center;
   font-weight: 800;
}

.lesson-teacher-grid {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 18px;
}

.lesson-teacher-card {
   display: grid;
   grid-template-columns: 150px minmax(0, 1fr);
   align-items: start;
   gap: 26px;
   padding: 30px;
   border: 1px solid rgba(226, 232, 240, .95);
   border-radius: 24px;
   background: #fff;
   box-shadow: 0 18px 46px rgba(15, 23, 42, .05);
}

.lesson-teacher-photo {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 150px;
   aspect-ratio: 1;
   border: 7px solid #eef4ff;
   border-radius: 50%;
   background: #e8edf4;
   overflow: hidden;
}

.lesson-teacher-photo img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

.lesson-teacher-photo svg {
   width: 48px;
   height: 48px;
   color: #94a3b8;
}

.lesson-teacher-body > span {
   color: var(--blue);
   font-size: 12px;
   font-weight: 900;
}

.lesson-teacher-body h3 {
   margin-top: 7px;
   color: var(--dark);
   font-size: 25px;
   line-height: 1.25;
   font-weight: 900;
}

.lesson-teacher-body > strong {
   display: block;
   margin-top: 5px;
   color: #64748b;
   font-size: 14px;
   font-weight: 800;
}

.lesson-teacher-body > p {
   margin-top: 12px;
   color: var(--text);
   font-size: 14px;
   line-height: 1.65;
   font-weight: 700;
}

.lesson-teacher-career {
   margin-top: 16px;
   padding-top: 14px;
   border-top: 1px solid var(--line);
   color: #475569;
   font-size: 13px;
   line-height: 1.65;
   font-weight: 700;
}

.lesson-junior-box.has-certificate {
   grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
   gap: 0;
   align-items: stretch;
   padding: 0;
   border: 1px solid var(--line);
   background: #fff;
   color: var(--dark);
   overflow: hidden;
   box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}

.lesson-junior-media {
   min-height: 560px;
   padding: 36px;

}

.lesson-junior-media img {
   width: 100%;
   height: 100%;
   object-fit: contain;
   display: block;
}

.lesson-junior-content {
   display: flex;
   flex-direction: column;
   justify-content: center;
   padding: 56px;
}

.lesson-junior-box.has-certificate h3 {
   margin-top: 10px;
   color: var(--dark);
   font-size: 38px;
   line-height: 1.25;
   font-weight: 900;
}

.lesson-junior-box.has-certificate p {
   margin-top: 20px;
   color: var(--text);
   font-size: 16px;
   line-height: 1.8;
   font-weight: 700;
}

.lesson-junior-box.has-certificate ul {
   display: grid;
   gap: 12px;
   margin-top: 24px;
}

.lesson-junior-box.has-certificate li {
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 0;
   background: transparent;
   color: #334155;
   font-size: 15px;
   font-weight: 800;
}

.lesson-junior-box.has-certificate li svg {
   width: 20px;
   height: 20px;
   padding: 3px;
   border-radius: 50%;
   background: var(--blue);
   color: #fff;
   stroke-width: 3;
}

.lesson-junior-content .btn {
   align-self: flex-start;
   margin-top: 30px;
}

.lesson-notice-section {
   padding-bottom: 100px;
}

.lesson-notice-box {
   display: grid;
   grid-template-columns: .8fr 1.2fr;
   gap: 48px;
   padding: 44px;
   border-radius: 28px;
   background: #ffffff;
   color: var(--text);
}

.lesson-notice-title h2 {
   margin-top: 8px;
   font-size: 32px;
   line-height: 1.3;
   font-weight: 900;
}

.lesson-notice-box ul {
   display: grid;
   gap: 12px;
}

.lesson-notice-box li {
   position: relative;
   padding-left: 20px;
   color: var(--text);
   font-size: 15px;
   line-height: 1.65;
   font-weight: 700;
}

.lesson-notice-box li::before {
   content: "";
   position: absolute;
   left: 0;
   top: 10px;
   width: 7px;
   height: 7px;
   border-radius: 50%;
   background: #60a5fa;
}

@media (max-width: 1040px) {
   .lesson-trust-box {
      grid-template-columns: 1fr;
   }

   .lesson-trust-box::before {
      bottom: 168px;
   }

   .lesson-schedule-list,
   .lesson-teacher-grid {
      grid-template-columns: 1fr;
   }
}

@media (max-width: 980px) {
   .lesson-promise-grid,
   .lesson-junior-box.has-certificate {
      grid-template-columns: 1fr;
   }

   .lesson-trust-box::before {
      display: none;
   }
}

@media (max-width: 640px) {
   .lesson-trust-box {
      gap: 22px;
      margin-bottom: 28px;
      padding: 26px;
      border-radius: 22px;
   }

   .lesson-trust-copy h3 {
      font-size: 30px;
   }

   .lesson-trust-copy p {
      font-size: 15px;
   }

   .lesson-cert-list {
      gap: 10px;
   }

   .lesson-cert-card {
      min-height: 160px;
      padding: 18px 12px;
      border-radius: 18px;
   }

   .lesson-cert-card img {
      height: 64px;
      margin-bottom: 12px;
   }

   .lesson-cert-card strong {
      font-size: 13px;
   }

   .lesson-promise-grid {
      padding-top: 0;
   }

   .lesson-promise-card {
      padding: 20px;
   }

   .lesson-schedule-card,
   .lesson-teacher-card,
   .lesson-notice-box {
      padding: 26px;
      border-radius: 22px;
   }

   .lesson-schedule-head h3 {
      font-size: 25px;
   }

   .lesson-course-head h2,
   .lesson-course-head h3,
   .lesson-price-head h3 {
      font-size: 25px;
   }

   .lesson-schedule-axis,
   .lesson-schedule-rail {
      display: none;
   }

   .lesson-schedule-row {
      grid-template-columns: 54px 1fr;
      padding: 11px 0;
      border-top: 1px solid #edf0f4;
   }

   .lesson-schedule-row > em {
      display: block;
      color: var(--dark);
      font-size: 14px;
      font-style: normal;
      font-weight: 900;
      text-align: right;
   }

   .lesson-price-table-head,
   .lesson-price-row {
      grid-template-columns: .6fr 1fr 1fr;
   }

   .lesson-price-row span {
      font-size: 15px;
   }

   .lesson-teacher-card {
      grid-template-columns: 92px minmax(0, 1fr);
      gap: 18px;
   }

   .lesson-teacher-photo {
      width: 92px;
      border-width: 5px;
   }

   .lesson-teacher-body h3 {
      font-size: 22px;
   }

   .lesson-junior-box.has-certificate {
      padding: 0;
      border-radius: 22px;
   }

   .lesson-junior-media {
      min-height: 0;
      padding: 22px;
   }

   .lesson-junior-content {
      padding: 30px 24px;
   }

   .lesson-junior-box.has-certificate h3 {
      font-size: 30px;
   }

   .lesson-junior-content .btn {
      width: 100%;
   }

   .lesson-notice-box {
      grid-template-columns: 1fr;
      gap: 24px;
   }
}

.lesson-junior-call{
   border:1px solid rgba(255,255,255,.35);
   border-radius:999px;
   background:rgba(255,255,255,.1);
   color:#fff;
}

.lesson-junior-call:hover{
   border-color:#fff;
   background:#fff;
   color:#101828;
}

.lesson-junior-actions{
   display:flex;
   flex-wrap:wrap;
   gap:10px;
   margin-top:24px;
}

.lesson-junior-actions .btn{
   display:inline-flex;
   align-items:center;
   justify-content:center;
   gap:7px;
   min-height:48px;
}

.lesson-junior-actions .btn svg{
   width:18px;
   height:18px;
}

@media(max-width:767px){
   .lesson-junior-actions{
      display:grid;
      grid-template-columns:1fr;
   }

   .lesson-junior-actions .btn{
      width:100%;
      box-sizing:border-box;
   }
}

.lesson-junior-actions a.lesson-junior-call{
   display:inline-flex;
   align-items:center;
   justify-content:center;
   gap:7px;
   min-height:48px;
   padding:0 24px;
   border:1px solid rgba(255,255,255,.45) !important;
   border-radius:999px;
   background:rgba(255,255,255,.14) !important;
   color:#fff !important;
   box-shadow:none !important;
}

.lesson-junior-actions a.lesson-junior-call:hover{
   border-color:#fff !important;
   background:#fff !important;
   color:#101828 !important;
}

.lesson-teacher-photo{
   overflow:hidden;
   background:#f8fafc;
}

.lesson-teacher-photo img{
   width:100%;
   height:100%;
   object-fit:cover;
   filter:brightness(1.06) contrast(1.02) saturate(1.06);
   transition:transform .35s ease, filter .35s ease;
}

@media(hover:hover){
   .lesson-teacher-card:hover .lesson-teacher-photo img{
      transform:scale(1.07);
      filter:brightness(1.1) contrast(1.03) saturate(1.08);
   }
}
/* =========================================================
   5.숙박
========================================================= */
.stay-overview-section {
   padding-top: 72px;
}

.stay-hero-box {
   display: grid;
   grid-template-columns: minmax(0, 1.04fr) minmax(380px, .96fr);
   gap: 34px;
   align-items: stretch;
   padding: 42px;
   border: 1px solid rgba(191, 219, 254, .9);
   border-radius: 30px;
   background:
      radial-gradient(circle at 96% 0%, rgba(37, 99, 235, .16), transparent 34%),
      linear-gradient(135deg, #f8fbff 0%, #edf5ff 100%);
   box-shadow: 0 24px 70px rgba(37, 99, 235, .08);
   overflow: hidden;
}

.stay-hero-copy {
   display: flex;
   flex-direction: column;
   justify-content: center;
}

.stay-hero-copy h3 {
   margin-top: 10px;
   color: var(--dark);
   font-size: 42px;
   line-height: 1.22;
   font-weight: 900;
   letter-spacing: -1.2px;
}

.stay-hero-copy p {
   max-width: 640px;
   margin-top: 18px;
   color: #475569;
   font-size: 16px;
   line-height: 1.8;
   font-weight: 700;
   word-break: keep-all;
}

.stay-hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin-top: 28px;
}

.stay-hero-actions .btn-outline {
   border: 1px solid rgba(37, 99, 235, .28);
   background: #fff;
   color: var(--blue);
}

.stay-hero-media {
   position: relative;
   min-height: 360px;
}

.stay-hero-media figure {
   position: absolute;
   margin: 0;
   border: 8px solid #fff;
   border-radius: 26px;
   background: #dbeafe;
   overflow: hidden;
   box-shadow: 0 22px 60px rgba(15, 23, 42, .14);
}

.stay-hero-media figure.is-main {
   inset: 0 86px 42px 0;
}

.stay-hero-media figure:not(.is-main) {
   right: 0;
   bottom: 0;
   width: 46%;
   height: 48%;
}

.stay-hero-media img,
.stay-room-photo img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

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

.stay-check-card {
   padding: 26px;
   border: 1px solid var(--line);
   border-radius: 22px;
   background: #fff;
   box-shadow: 0 18px 46px rgba(15, 23, 42, .06);
}

.stay-check-card svg {
   width: 32px;
   height: 32px;
   color: var(--blue);
   stroke-width: 2.1;
}

.stay-check-card strong {
   display: block;
   margin-top: 18px;
   color: var(--dark);
   font-size: 19px;
   line-height: 1.3;
   font-weight: 900;
}

.stay-check-card p {
   margin-top: 10px;
   color: #64748b;
   font-size: 14px;
   line-height: 1.7;
   font-weight: 700;
   word-break: keep-all;
}

.stay-room-section,
.stay-notice-section {
   background: #f6f8fb;
}

.stay-room-grid {
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   gap: 20px;
}

.stay-room-card {
   border: 1px solid var(--line);
   border-radius: 26px;
   background: #fff;
   overflow: hidden;
   box-shadow: 0 20px 56px rgba(15, 23, 42, .06);
}

.stay-room-photo {
   height: 250px;
   background: #e8edf4;
}

.stay-room-body {
   padding: 28px;
}

.stay-room-body > span {
   display: block;
   margin-bottom: 8px;
   color: var(--blue);
   font-size: 12px;
   font-weight: 900;
   letter-spacing: .4px;
}

.stay-room-body h3 {
   color: var(--dark);
   font-size: 24px;
   line-height: 1.28;
   font-weight: 900;
   letter-spacing: -0.6px;
}

.stay-room-body p {
   margin-top: 12px;
   color: var(--text);
   font-size: 15px;
   line-height: 1.7;
   font-weight: 700;
}

.stay-room-body ul {
   display: flex;
   flex-wrap: wrap;
   gap: 7px;
   margin-top: 18px;
}

.stay-room-body li {
   padding: 7px 10px;
   border-radius: 999px;
   background: #eef4ff;
   color: #475569;
   font-size: 12px;
   font-weight: 900;
}

.stay-process-flow {
   display: grid;
   grid-template-columns: repeat(4, minmax(0, 1fr));
   gap: 18px;
}

.stay-process-flow li {
   min-height: 220px;
   padding: 30px;
   border: 1px solid var(--line);
   border-radius: 24px;
   background:
      radial-gradient(circle at 100% 0%, rgba(37, 99, 235, .11), transparent 34%),
      #fff;
   box-shadow: 0 18px 46px rgba(15, 23, 42, .06);
}

.stay-process-flow li > span {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 46px;
   height: 46px;
   border-radius: 16px;
   background: var(--blue);
   color: #fff;
   font-size: 15px;
   font-weight: 900;
}

.stay-process-flow strong {
   display: block;
   margin-top: 26px;
   color: var(--dark);
   font-size: 22px;
   line-height: 1.3;
   font-weight: 900;
   letter-spacing: -0.6px;
}

.stay-process-flow p {
   margin-top: 12px;
   color: var(--text);
   font-size: 15px;
   line-height: 1.7;
   font-weight: 700;
}

.stay-notice-box {
   display: grid;
   grid-template-columns: .8fr 1.2fr;
   gap: 48px;
   padding: 44px;
   border: 1px solid var(--line);
   border-radius: 28px;
   background: #fff;
   box-shadow: 0 20px 60px rgba(15, 23, 42, .06);
}

.stay-notice-title h2 {
   margin-top: 8px;
   color: var(--dark);
   font-size: 32px;
   line-height: 1.3;
   font-weight: 900;
}

.stay-notice-box ul {
   display: grid;
   gap: 12px;
}

.stay-notice-box li {
   position: relative;
   padding-left: 20px;
   color: var(--text);
   font-size: 15px;
   line-height: 1.65;
   font-weight: 700;
}

.stay-notice-box li::before {
   content: "";
   position: absolute;
   left: 0;
   top: 10px;
   width: 7px;
   height: 7px;
   border-radius: 50%;
   background: #60a5fa;
}

.stay-bottom-cta {
   padding-top: 0;
}

@media (max-width: 1040px) {
   .stay-hero-box {
      grid-template-columns: 1fr;
   }

   .stay-check-grid,
   .stay-process-flow {
      grid-template-columns: repeat(2, minmax(0, 1fr));
   }

   .stay-room-grid {
      grid-template-columns: 1fr;
   }

   .stay-room-card {
      display: grid;
      grid-template-columns: 300px minmax(0, 1fr);
   }

   .stay-room-photo {
      height: auto;
      min-height: 260px;
   }
}

@media (max-width: 760px) {
   .stay-check-grid,
   .stay-process-flow,
   .stay-notice-box {
      grid-template-columns: 1fr;
   }

   .stay-room-card {
      display: block;
   }

   .stay-room-photo {
      height: 230px;
      min-height: 0;
   }
}

@media (max-width: 640px) {
   .stay-overview-section {
      padding-top: 58px;
   }

   .stay-hero-box,
   .stay-notice-box {
      padding: 26px;
      border-radius: 22px;
   }

   .stay-hero-copy h3 {
      font-size: 30px;
   }

   .stay-hero-copy p {
      font-size: 15px;
   }

   .stay-hero-actions .btn {
      width: 100%;
   }

   .stay-hero-media {
      min-height: 280px;
   }

   .stay-hero-media figure {
      border-width: 5px;
      border-radius: 18px;
   }

   .stay-hero-media figure.is-main {
      inset: 0 54px 38px 0;
   }

   .stay-hero-media figure:not(.is-main) {
      width: 48%;
      height: 46%;
   }

   .stay-check-card,
   .stay-process-flow li {
      padding: 24px;
      border-radius: 20px;
   }

   .stay-room-body {
      padding: 24px;
   }

   .stay-notice-box {
      gap: 24px;
   }

   .stay-notice-title h2 {
      font-size: 28px;
   }
}
.stay-room-body h3 em {
   color: #64748b;
   font-style: normal;
}

.stay-room-price {
   display: block;
   margin-top: 10px;
   color: var(--dark);
   font-size: 23px;
   line-height: 1.25;
   font-weight: 900;
   letter-spacing: -0.6px;
}

.stay-room-capacity {
   margin-top: 8px !important;
   color: #64748b !important;
   font-size: 16px !important;
   font-weight: 900 !important;
}

.stay-price-table {
   margin-top: 22px;
   border: 1px solid #e5e7eb;
   border-radius: 16px;
   overflow: hidden;
   background: #fff;
}

.stay-price-head,
.stay-price-row {
   display: grid;
   grid-template-columns: .9fr 1fr 1fr 1fr;
   align-items: center;
}

.stay-price-head span,
.stay-price-row strong,
.stay-price-row span {
   padding: 13px 10px;
   border-right: 1px solid #e5e7eb;
   border-bottom: 1px solid #e5e7eb;
   text-align: center;
   font-size: 14px;
   font-weight: 900;
}

.stay-price-head span {
   color: #334155;
   background: #f8fafc;
}

.stay-price-row strong {
   color: #64748b;
   background: #fff;
}

.stay-price-row span {
   color: #475569;
}

.stay-price-head span:last-child,
.stay-price-row strong:last-child,
.stay-price-row span:last-child {
   border-right: 0;
}

.stay-price-row:last-child strong,
.stay-price-row:last-child span {
   border-bottom: 0;
}

@media (max-width: 640px) {
   .stay-price-head span,
   .stay-price-row strong,
   .stay-price-row span {
      padding: 11px 6px;
      font-size: 13px;
   }

   .stay-room-price {
      font-size: 21px;
   }
}

.stay-bottom-cta {
   padding: 0 0 90px;
}

.stay-bottom-cta .mento-bottom-cta-box {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
   padding: 34px 38px;
   border-radius: 26px;
   background:
      radial-gradient(circle at 90% 20%, rgba(255, 106, 0, .22), transparent 28%),
      linear-gradient(135deg, #111827 0%, #1e3a8a 100%);
   color: #fff;
}

.stay-bottom-cta .mento-bottom-cta-box span {
   display: block;
   margin-bottom: 8px;
   color: #bfdbfe;
   font-size: 13px;
   font-weight: 900;
   letter-spacing: .5px;
}

.stay-bottom-cta .mento-bottom-cta-box strong {
   display: block;
   color: #fff;
   font-size: 26px;
   line-height: 1.3;
   font-weight: 900;
   letter-spacing: -0.8px;
}

.stay-bottom-cta .mento-bottom-cta-box .btn {
   flex: 0 0 auto;
   min-width: 150px;
   background: #fff;
   color: #1e3a8a;
   box-shadow: none;
}

@media (max-width: 640px) {
   .stay-bottom-cta {
      padding: 0 0 70px;
   }

   .stay-bottom-cta .mento-bottom-cta-box {
      display: grid;
      grid-template-columns: 1fr;
      padding: 26px;
      border-radius: 22px;
      text-align: left;
   }

   .stay-bottom-cta .mento-bottom-cta-box strong {
      font-size: 22px;
   }

   .stay-bottom-cta .mento-bottom-cta-box .btn {
      width: 100%;
   }
}
/* =========================================================
   7. 사이즈폼
========================================================= */

#rentalSizeForm{
   background:#f8fafc;
   min-height:100vh;
   color:#111827;
}

#rentalSizeForm *{
   box-sizing:border-box;
}

.size-hero{
   padding:70px 20px 42px;
   background:linear-gradient(135deg, #111827 0%, #1e3a8a 100%);
   color:#fff;
}

.size-hero-inner{
   width:100%;
   max-width:1180px;
   margin:0 auto;
}

.size-hero-badge{
   display:inline-flex;
   align-items:center;
   gap:7px;
   height:34px;
   padding:0 13px;
   border-radius:999px;
   background:rgba(255,255,255,.12);
   border:1px solid rgba(255,255,255,.2);
   color:#fff;
   font-size:13px;
   font-weight:800;
}

.size-hero-badge i,
.size-hero-badge svg{
   width:16px;
   height:16px;
   stroke-width:2.5;
}

.size-hero h1{
   margin:18px 0 10px;
   font-size:38px;
   line-height:1.15;
   font-weight:900;
   letter-spacing:-.04em;
}

.size-hero p{
   margin:0;
   color:rgba(255,255,255,.78);
   font-size:16px;
   line-height:1.6;
}

.size-section{
   width:100%;
   max-width:1280px;
   margin:0 auto;
   padding:34px 20px 70px;
}

.size-card{
   margin-bottom:22px;
   padding:28px;
   border:1px solid #e5e7eb;
   border-radius:22px;
   background:#fff;
   box-shadow:0 14px 34px rgba(15,23,42,.06);
}

.size-card-head{
   margin-bottom:22px;
}

.size-card-head.row-head{
   display:flex;
   align-items:flex-start;
   justify-content:space-between;
   gap:16px;
}

.size-card-head h2,
.reservation-info-head h2{
   margin:0 0 6px;
   color:#111827;
   font-size:22px;
   font-weight:900;
   letter-spacing:-.03em;
}

.size-card-head p,
.reservation-info-head p{
   margin:0;
   color:#64748b;
   font-size:14px;
   line-height:1.5;
}

.lookup-form{
   display:grid;
   grid-template-columns:minmax(0, 1fr) minmax(0, 1fr) auto;
   gap:14px;
   align-items:end;
}

.form-field label{
   display:block;
   margin-bottom:8px;
   color:#334155;
   font-size:13px;
   font-weight:900;
}

.form-field input,
.form-field select,
.size-table input,
.size-table select{
   width:100%;
   height:48px;
   padding:0 13px;
   border:1px solid #d1d5db;
   border-radius:12px;
   background:#fff;
   color:#111827;
   font-size:15px;
   font-weight:700;
   outline:none;
}

.form-field input:focus,
.form-field select:focus,
.size-table input:focus,
.size-table select:focus{
   border-color:#2563eb;
   box-shadow:0 0 0 3px rgba(37,99,235,.12);
}

.size-btn{
   display:inline-flex;
   align-items:center;
   justify-content:center;
   gap:8px;
   height:48px;
   padding:0 20px;
   border-radius:12px;
   border:1px solid transparent;
   font-size:15px;
   font-weight:900;
   line-height:1;
   white-space:nowrap;
   cursor:pointer;
   text-decoration:none;
}

.size-btn i,
.size-btn svg{
   width:19px;
   height:19px;
   stroke-width:2.5;
}

.size-btn-primary{
   background:#2563eb;
   color:#fff;
   border-color:#2563eb;
}

.size-btn-primary:hover{
   background:#1d4ed8;
   border-color:#1d4ed8;
}

.size-btn-basic{
   background:#fff;
   color:#111827;
   border-color:#d1d5db;
}

.size-btn-basic:hover{
   background:#f8fafc;
   border-color:#94a3b8;
}

.size-btn-large{
   min-width:190px;
   height:54px;
   font-size:16px;
}

.reservation-info-head{
   display:flex;
   align-items:flex-start;
   justify-content:space-between;
   gap:16px;
   margin-bottom:20px;
}

.info-badge{
   display:inline-flex;
   align-items:center;
   gap:6px;
   height:32px;
   padding:0 12px;
   border-radius:999px;
   background:#ecfdf5;
   color:#047857;
   border:1px solid #a7f3d0;
   font-size:13px;
   font-weight:900;
   white-space:nowrap;
}

.info-badge i,
.info-badge svg{
   width:15px;
   height:15px;
   stroke-width:2.5;
}

.reservation-info-grid{
   display:grid;
   grid-template-columns:repeat(5, minmax(0, 1fr));
   gap:12px;
}

.reservation-info-grid div{
   padding:16px;
   border-radius:16px;
   background:#f8fafc;
   border:1px solid #e5e7eb;
}

.reservation-info-grid span{
   display:block;
   margin-bottom:7px;
   color:#64748b;
   font-size:12px;
   font-weight:800;
}

.reservation-info-grid strong{
   display:block;
   color:#111827;
   font-size:15px;
   font-weight:900;
   word-break:break-all;
}

.size-table-wrap{
   overflow-x:auto;
   border:1px solid #e5e7eb;
   border-radius:16px;
}

.size-table{
   width:100%;
   min-width:860px;
   border-collapse:collapse;
}

.size-table th{
   height:46px;
   padding:0 12px;
   background:#f8fafc;
   border-bottom:1px solid #e5e7eb;
   color:#334155;
   font-size:13px;
   font-weight:900;
   text-align:center;
   white-space:nowrap;
}

.size-table td{
   position:relative;
   padding:10px;
   border-bottom:1px solid #f1f5f9;
   text-align:center;
}

.size-table tbody tr:last-child td{
   border-bottom:0;
}



.row-delete-btn{
   display:inline-flex;
   align-items:center;
   justify-content:center;
   width:38px;
   height:38px;
   border:1px solid #e5e7eb;
   border-radius:10px;
   background:#fff;
   color:#64748b;
   cursor:pointer;
}

.row-delete-btn:hover{
   background:#fef2f2;
   color:#dc2626;
   border-color:#fecaca;
}

.row-delete-btn i,
.row-delete-btn svg{
   width:17px;
   height:17px;
   stroke-width:2.5;
}

.size-notice{
   display:flex;
   align-items:flex-start;
   gap:8px;
   margin-top:16px;
   padding:14px 16px;
   border-radius:14px;
   background:#eff6ff;
   color:#1d4ed8;
   font-size:13px;
   font-weight:800;
   line-height:1.5;
}

.size-notice i,
.size-notice svg{
   flex:0 0 auto;
   width:17px;
   height:17px;
   margin-top:1px;
   stroke-width:2.5;
}

.size-submit-area{
   display:flex;
   justify-content:center;
   margin-top:26px;
}

@media (max-width:900px){
   .size-hero{
      padding:52px 18px 34px;
   }

   .size-hero h1{
      font-size:30px;
   }

   .size-section{
      padding:24px 16px 56px;
   }

   .size-card{
      padding:22px 18px;
      border-radius:18px;
   }

   .lookup-form{
      grid-template-columns:1fr;
   }

   .size-card-head.row-head,
   .reservation-info-head{
      display:block;
   }

   .size-card-head.row-head .size-btn{
      margin-top:14px;
      width:100%;
   }

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

@media (max-width:560px){
   .reservation-info-grid{
      grid-template-columns:1fr;
   }

   .size-btn-large{
      width:100%;
   }
}

.size-guide-grid{
   display:grid;
   grid-template-columns:repeat(3, minmax(0, 1fr));
   gap:16px;
   margin:22px 0;
}

.size-guide-card{
   padding:22px;
   border:1px solid #e5e7eb;
   border-radius:18px;
   background:#fff;
   box-shadow:0 10px 26px rgba(15,23,42,.045);
}

.size-guide-icon{
   display:flex;
   align-items:center;
   justify-content:center;
   width:44px;
   height:44px;
   margin-bottom:14px;
   border-radius:14px;
   background:#eff6ff;
   color:#2563eb;
}

.size-guide-icon i,
.size-guide-icon svg{
   width:22px;
   height:22px;
   stroke-width:2.5;
}

.size-guide-card h3{
   margin:0 0 8px;
   color:#111827;
   font-size:18px;
   font-weight:900;
   letter-spacing:-.03em;
}

.size-guide-card p{
   margin:0;
   color:#64748b;
   font-size:14px;
   font-weight:700;
   line-height:1.6;
   word-break:keep-all;
}

.size-caution-box{
   margin:18px 0px;
   padding:20px 22px;
   border:1px solid rgba(226, 232, 240, .95);
   border-radius:18px;
   background:#eef2f7;
   color:var(--text);
}

.size-caution-title{
   display:flex;
   align-items:center;
   gap:8px;
   margin-bottom:12px;
}

.size-caution-title i,
.size-caution-title svg{
   width:19px;
   height:19px;
   color:var(--blue);
   stroke-width:2.5;
}

.size-caution-title strong{
   color:var(--text);
   font-size:16px;
   font-weight:900;
}

.size-caution-box ul{
   display:grid;
   gap:7px;
   margin:0;
   padding:0;
   list-style:none;
}

.size-caution-box li{
   position:relative;
   padding-left:14px;
   color:var(--text);
   font-size:14px;
   font-weight:700;
   line-height:1.55;
   word-break:keep-all;
}

.size-caution-box li:before{
   content:"";
   position:absolute;
   left:0;
   top:10px;
   width:5px;
   height:5px;
   border-radius:50%;
   background:var(--text);
}

@media (max-width:900px){
   .size-guide-grid{
      grid-template-columns:1fr;
   }
}

#rentalSizeForm .size-unit-field{
   position:relative;
   display:block;
   width:100%;
}

#rentalSizeForm .size-unit-field input{
   width:100%;
   padding-right:46px;
   box-sizing:border-box;
}

#rentalSizeForm .size-unit-field span{
   position:absolute;
   right:15px;
   top:50%;
   transform:translateY(-50%);
   color:#94a3b8;
   font-size:14px;
   font-weight:900;
   line-height:1;
   pointer-events:none;
}

#rentalSizeForm .size-table td{
   vertical-align:middle;
}

#rentalSizeForm .size-table td{
   vertical-align:middle;
}

#rentalSizeForm .size-table input,
#rentalSizeForm .size-table select{
   display:block;
   width:100%;
   height:58px;
   min-height:58px;
   margin:0 auto;
   padding:0 16px;
   border:1px solid #d1d5db;
   border-radius:12px;
   background-color:#fff;
   color:#111827;
   font-size:15px;
   font-weight:800;
   line-height:normal;
   box-sizing:border-box;
}

#rentalSizeForm .size-table select{
   padding:0 42px 0 16px;
   -webkit-appearance:none;
   appearance:none;
   background-image:linear-gradient(45deg, transparent 50%, #111827 50%), linear-gradient(135deg, #111827 50%, transparent 50%);
   background-position:calc(100% - 20px) 50%, calc(100% - 14px) 50%;
   background-size:6px 6px, 6px 6px;
   background-repeat:no-repeat;
}



