/* =========================
   JINRO PAGE ONLY
========================= */

.jinro-page{
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 12%, rgba(0, 224, 255, 0.24), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(45, 91, 255, 0.24), transparent 32%),
    radial-gradient(circle at 70% 55%, rgba(0, 210, 255, 0.16), transparent 28%),
    radial-gradient(circle at 25% 78%, rgba(35, 120, 255, 0.16), transparent 26%),
    linear-gradient(180deg, #05070b 0%, #07111a 35%, #08131d 65%, #060b11 100%);
}

.jinro-page section + section{
  margin-top:0;
}

.jinro-page::after{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 85% 85%, rgba(0, 224, 255, 0.16), transparent 26%),
    radial-gradient(circle at 10% 90%, rgba(45, 91, 255, 0.13), transparent 24%);
}

/* =========================
   HERO
========================= */

.jinro-page .jinro-hero{
  position:relative;
  width:100%;
  height:100vh;
  overflow:hidden;
  background:transparent;
}

.jinro-page .jinro-hero::before{
  content:"";
  position:absolute;
  width:900px;
  height:900px;
  background:radial-gradient(circle,rgba(60,120,255,0.35),transparent 70%);
  filter:blur(140px);
  top:-300px;
  left:-200px;
  z-index:0;
}

.jinro-page .jinro-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at center,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.5) 60%,
    #050505 100%),
    linear-gradient(
    to bottom,
    rgba(0,0,0,0) 60%,
    rgba(0,0,0,.6) 85%,
    #050505 100%);
  pointer-events:none;
}

.jinro-page .jinro-hero .hero-bg{
  position:absolute;
  width:100%;
  height:100%;

  filter:brightness(0.5);
  z-index:1;
}

.jinro-page .hero-title{
  position:absolute;
  top:45%;
  left:50%;
  transform:translate(-50%,-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  width:100%;
  z-index:2;
}

.jinro-page .hero-title span{
  font-size:13vw;
  font-weight:900;
  white-space:nowrap;
  text-align:center;
  letter-spacing:-0.1vw;
  color:#ffffff;
  text-shadow:0 0 20px rgba(0,0,0,0.35);
}

.jinro-page .hero-percent{
  position:absolute;
  top:58%;
  right:4%;
  font-size:16vw;
  font-weight:900;
  color:#8FAE3C;
  letter-spacing:-0.4vw;
  z-index:2;
}

.jinro-page .percent-symbol{
  font-size:0.55em;
  position:relative;
  top:-0.05em;
  left:-0.08em;
}

.jinro-page .hero-percent.show{
  opacity:1;
  transform:translateX(0);
}

.jinro-page .fade-up{
  opacity:0;
  transform:translateX(120px);
  transition:all 1.2s ease;
}

.jinro-page .fade-up.show{
  opacity:1;
  transform:translateX(0);
}

.jinro-page .jinro-hero .hero-model{
  position:absolute;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  height:78vh;
  z-index:3;
}

.jinro-page .hero-desc{
  position:absolute;
  bottom:120px;
  left:10%;
  font-size:25px;
  line-height:1.7;
  color:#ffffff;
  max-width:360px;
  z-index:10;
}

.jinro-page .hero-desc::before{
  content:"";
  display:block;
  width:40px;
  height:2px;
  background:#6C7F3A;
  margin-bottom:14px;
}

/* =========================
   PROBLEM
========================= */

.jinro-page .jinro-problem{
  padding:250px 0 0;
  position:relative;
}

.jinro-page .jinro-problem::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100px;
  background:
    radial-gradient(
    ellipse at center,
    rgba(5,5,5,0.9) 0%,
    rgba(5,5,5,0.6) 40%,
    rgba(5,5,5,0) 70%),
    linear-gradient(
    to bottom,
    #050505 0%,
    rgba(5,5,5,0.7) 40%,
    rgba(5,5,5,0) 100%);
  pointer-events:none;
}

.jinro-page .problem-container{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  align-items:center;
  gap:80px;
  max-width:1400px;
  margin:auto;
}

.jinro-page .problem-title{
  font-size:64px;
  line-height:1.2;
  color:#fff;
  font-weight:600;
  margin-bottom:40px;
  opacity:0;
  transform:translateY(40px);
  transition:all .8s ease;
}

.jinro-page .problem-text{
  font-size:16px;
  line-height:1.8;
  color:#fff;
  opacity:0;
  transform:translateY(40px);
  transition:all .8s ease .2s;
}

.jinro-page .problem-show .problem-title,
.jinro-page .problem-show .problem-text{
  opacity:1;
  transform:translateY(0);
}

.jinro-page .problem-right{
  display:flex;
  justify-content:center;
}

.jinro-page .problem-shape{
  position:relative;
  width:420px;
  padding:70px 50px;
  background:#d8cdb7;
  border-radius:60% 40% 50% 60% / 60% 50% 60% 40%;
  animation:blobMove 10s ease-in-out infinite;
  text-align:center;
}

@keyframes blobMove{
  0%{
    border-radius:60% 40% 50% 60% / 60% 50% 60% 40%;
  }
  50%{
    border-radius:50% 60% 40% 60% / 40% 60% 50% 60%;
  }
  100%{
    border-radius:60% 40% 50% 60% / 60% 50% 60% 40%;
  }
}

.jinro-page .stats-title{
  font-size:24px;
  line-height:1.5;
  color:#111;
  font-weight:700;
}

.jinro-page .stats-wrap{
  display:flex;
  justify-content:space-between;
  margin-top:30px;
}

.jinro-page .stat{
  text-align:center;
}

.jinro-page .donut{
  width:130px;
  height:130px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:20px;
  position:relative;
  background:
    conic-gradient(
    var(--color) calc(var(--percent) * 1%),
    #e5e5e5 0);
  transition:1.5s ease;
}

.jinro-page .donut span{
  position:absolute;
}

.jinro-page .donut.orange{
  --color:#e1783a;
  --percent:35.3;
}

.jinro-page .donut.purple{
  --color:#6b4ae2;
  --percent:25.6;
}

.jinro-page .stat p{
  margin-top:12px;
  font-size:14px;
  color:#111;
  line-height:1.5;
}

.jinro-page .stats-desc{
  margin-top:18px;
  font-size:14px;
  line-height:1.6;
  color:#333;
}

/* =========================
   SOLUTION
========================= */

.jinro-page .jinro-solution{
  padding:200px 8%;
  text-align:center;
}

.jinro-page .solution-wrap{
  max-width:900px;
  margin:auto;
}

.jinro-page .solution-title{
  font-size:72px;
  line-height:1.2;
  font-weight:700;
  margin-bottom:50px;
  color:#fff;
  opacity:0;
  transform:translateY(40px);
  transition:.8s ease;
}

.jinro-page .solution-show .solution-title{
  opacity:1;
  transform:translateY(0);
}

.jinro-page .solution-right{
  position:relative;
  height:500px;
}

.jinro-page .solution-show-title{
  font-size:48px;
  font-weight:600;
  margin-bottom:30px;
  color:#fff;
}

.jinro-page .solution-show-title span{
  color:#ff6b00;
}

.jinro-page .solution-sub{
  font-size:40px;
  color:#fff;
  line-height:1.6;
}

.jinro-page .solution-desc{
  padding-top:5%;
  font-size:20px;
  color:#ffffff;
  line-height:1.6;
}

/* =========================
   REASON
========================= */

.jinro-page .jinro-reason{
  padding:160px 8%;
  text-align:center;
}

.jinro-page .reason-title{
  font-size:72px;
  letter-spacing:4px;
  margin-bottom:10px;
  color:#fff;
}

.jinro-page .reason-sub{
  opacity:.7;
  margin-bottom:80px;
  color:#fff;
}

.jinro-page .reason-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  max-width:1100px;
  margin:0 auto;
}

.jinro-page .reason-card{
  padding:40px;
  text-align:left;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  transition:.3s;
}

.jinro-page .reason-card:hover{
  transform:translateY(-6px);
  border-color:rgba(255,255,255,.2);
}

.jinro-page .reason-number{
  font-size:36px;
  font-weight:700;
  color:#9dbb3d;
  display:block;
  margin-bottom:20px;
}

.jinro-page .reason-card h3{
  font-size:20px;
  margin-bottom:14px;
  color:#fff;
}

.jinro-page .reason-card p{
  font-size:15px;
  line-height:1.7;
  opacity:.8;
  color:#fff;
}

/* =========================
   GALLERY
========================= */

.jinro-page .jinro-gallery{
  padding:160px 8%;
  text-align:center;
  overflow:hidden;
  mask-image:linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.jinro-page .gallery-title{
  font-size:72px;
  margin-bottom:60px;
  color:#fff;
}

.jinro-page .gallery-stats{
  display:flex;
  justify-content:center;
  gap:80px;
  margin-bottom:60px;
}

.jinro-page .gallery-stats h3{
  font-size:48px;
  font-weight:700;
  color:#8FAE3C;
  margin-bottom:6px;
}

.jinro-page .gallery-stats p{
  font-size:14px;
  color:#cfd6e6;
}

.jinro-page .jinro-gallery-track{
  display:flex;
  gap:24px;
  overflow:visible;
  animation:jinroSlide 35s linear infinite;
  scrollbar-width:none;
}

.jinro-page .jinro-gallery-track:hover{
  animation-play-state:paused;
}

.jinro-page .jinro-gallery-track::-webkit-scrollbar{
  display:none;
}

.jinro-page .jinro-gallery-track{
  cursor:grab;
}

.jinro-page .jinro-gallery-track:active{
  cursor:grabbing;
}

@keyframes jinroSlide{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

.jinro-page .gallery-item{
  position:relative;
  flex:0 0 auto;
  overflow:hidden;
  border-radius:18px;
}

.jinro-page .gallery-item::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:55%;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0) 100%
  );
  pointer-events:none;
}

.jinro-page .jinro-gallery-track img{
  width:420px;
  height:260px;
  object-fit:cover;
  border-radius:14px;
  scroll-snap-align:start;
  transition:0.35s;
}

.jinro-page .jinro-gallery-track img:hover{
  transform:scale(1.04);
}

.jinro-page .gallery-item img{
  width:420px;
  height:260px;
  object-fit:cover;
  border-radius:14px;
  transition:0.4s ease;
}

.jinro-page .gallery-item:hover img{
  transform:scale(1.05);
}

.jinro-page .gallery-school{
  position:absolute;
  left:16px;
  bottom:14px;
  font-size:14px;
  font-weight:500;
  color:#fff;
  z-index:2;
}

/* =========================
   STORY
========================= */

.jinro-page .jinro-story{
  padding:160px 8%;
  text-align:center;
}

.jinro-page .story-title{
  text-align:center;
  font-size:72px;
  color:#fff;
}

.jinro-page .story-horizontal{
  display:flex;
  justify-content:space-between;
  gap:40px;
  margin-top:80px;
  position:relative;
  padding:0 10%;
}

.jinro-page .story-horizontal::before{
  content:"";
  position:absolute;
  top:70px;
  left:14%;
  right:14%;
  height:2px;
  background:#8FAE3C;
  box-shadow:0 0 8px rgba(45,91,255,0.4);
}

.jinro-page .story-step{
  width:150px;
  text-align:center;
  position:relative;
}

.jinro-page .story-step img{
  width:150px;
  height:150px;
  border-radius:16px;
  object-fit:cover;
  margin-bottom:20px;
  position:relative;
  z-index:2;
  box-shadow:0 10px 30px rgba(0,0,0,0.4);
  transition:.3s;
}

.jinro-page .story-step h3{
  font-size:0.9rem;
  color:#fff;
}

.jinro-page .story-step:hover img{
  transform:translateY(-10px) scale(1.05);
  transition:.3s;
}

.jinro-page .story-number{
  position:absolute;
  top:-38px;
  left:50%;
  transform:translateX(-50%);
  width:34px;
  height:34px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:700;
  background:#111;
  border:1px solid #444;
  color:#fff;
  z-index:3;
}

/* =========================
   REVIEWS
========================= */

.jinro-page .jinro-reviews{
  padding:160px 8%;
  text-align:center;
}

.jinro-page .reviews-title{
  font-size:72px;
  letter-spacing:4px;
  margin-bottom:80px;
  color:#fff;
}

.jinro-page .reviews-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,280px);
  gap:40px;
  max-width:1200px;
  margin:0 auto;
  justify-content:center;
}

.jinro-page .review-card{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  transition:.3s;
  padding:32px;
  min-height:260px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.jinro-page .review-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.jinro-page .review-card::before{
  content:"★★★★★";
  display:block;
  color:#FFD700;
  font-size:18px;
  letter-spacing:4px;
  margin-bottom:18px;
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}

.jinro-page .review-text{
  font-size:16px;
  line-height:1.7;
  margin-bottom:20px;
  opacity:0.9;
  color:#fff;
}

.jinro-page .review-author{
  font-size:14px;
  opacity:0.6;
  color:#fff;
}

/* =========================
   DETAILS
========================= */

.jinro-page .jinro-details{
  padding:160px 8%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:transparent;
}

.jinro-page .details-title{
  text-align:center;
  font-size:72px;
  letter-spacing:4px;
  margin-bottom:50px;
  color:#ffffff;
}

.jinro-page .details-box{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  transition:.3s;
  padding:40px;
  max-width:500px;
  width:100%;
  backdrop-filter: blur(8px);
}

.jinro-page .details-box:hover{
  transform:translateY(-6px);
  border-color:rgba(255,255,255,.2);
}

.jinro-page .details-list{
  list-style:none;
  padding:0;
  margin:0;
}

.jinro-page .details-list li{
  display:flex;
  align-items:center;
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  font-size:18px;
  color:#fff;
}

.jinro-page .details-list li:last-child{
  border-bottom:none;
}

.jinro-page .check{
  width:22px;
  height:22px;
  border-radius:50%;
  background:#2d5bff;
  margin-right:18px;
  flex-shrink:0;
  position:relative;
}

.jinro-page .check::after{
  content:"";
  position:absolute;
  left:6px;
  top:5px;
  width:6px;
  height:10px;
  border-right:2px solid #fff;
  border-bottom:2px solid #fff;
  transform:rotate(45deg);
}

.jinro-page .details-list strong{
  width:140px;
  font-weight:600;
}

.jinro-page .details-list span{
  opacity:0.7;
}

/* =========================
   MAGICIAN
========================= */

.jinro-page .jinro-magician{
  padding:160px 8%;
}

.jinro-page .magician-title{
  text-align:center;
  font-size:72px;
  color:#fff;
}

.jinro-page .magician-name{
  text-align:center;
  font-size:14px;
  letter-spacing:4px;
  color:#9aa4c4;
  margin-top:8px;
}

.jinro-page .magician-container{
  display:grid;
  grid-template-columns:1fr 420px 1fr;
  gap:60px;
  align-items:center;
  color:#000;
}

.jinro-page .magician-center img{
  display:block;
  width:100%;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 72%,
    rgba(0,0,0,0.85) 82%,
    rgba(0,0,0,0.35) 92%,
    rgba(0,0,0,0) 100%
  );
  -webkit-mask-repeat:no-repeat;
  -webkit-mask-size:100% 100%;
  -webkit-mask-position:center;
  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 72%,
    rgba(0,0,0,0.85) 82%,
    rgba(0,0,0,0.35) 92%,
    rgba(0,0,0,0) 100%
  );
  mask-repeat:no-repeat;
  mask-size:100% 100%;
  mask-position:center;
}

.jinro-page .magician-left h3{
  margin-bottom:20px;
  color:#8FAE3C;
  text-align:right;
}

.jinro-page .magician-left ul{
  list-style:none;
  padding:0;
  color:#fff;
  text-align:right;
}

.jinro-page .magician-left li{
  margin-bottom:12px;
  color:#fff;
  text-align:right;
}

.jinro-page .magician-right h3{
  margin-bottom:20px;
  color:#8FAE3C;
  text-align:left;
}

.jinro-page .magician-right ul{
  list-style:none;
  padding:0;
  color:#fff;
  text-align:left;
}

.jinro-page .magician-right li{
  margin-bottom:12px;
  color:#fff;
  text-align:left;
}

/* =========================
   CTA
========================= */

.jinro-page .jinro-cta{
  padding:160px 8%;
  text-align:center;
}

.jinro-page .jinro-cta h2{
  font-size:56px;
  letter-spacing:3px;
  margin-bottom:24px;
  color:#fff;
}

.jinro-page .jinro-cta p{
  font-size:18px;
  line-height:1.8;
  color:rgba(255,255,255,.8);
  margin-bottom:12px;
}

.jinro-page .jinro-cta .cta-btn{
  display:inline-block;
  margin-top:36px;
  padding:16px 38px;
  border-radius:999px;
  background:#fff;
  color:#111;
  text-decoration:none;
  font-weight:700;
  transition:.3s;
}

.jinro-page .jinro-cta .cta-btn:hover{
  transform:translateY(-4px);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  
  .jinro-page {
    overflow-x: hidden;
  }

  .jinro-page .jinro-problem,
  .jinro-page .jinro-solution,
  .jinro-page .jinro-reason,
  .jinro-page .jinro-gallery,
  .jinro-page .jinro-story,
  .jinro-page .jinro-reviews,
  .jinro-page .jinro-details,
  .jinro-page .jinro-magician,
  .jinro-page .jinro-cta {
    padding: 88px 20px;
  }

  .jinro-page .jinro-hero {
    height: auto;
    min-height: auto;
    padding: 110px 20px 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .jinro-page .jinro-hero .hero-bg {
    background-position: center center;
    filter: brightness(0.38);
  }

  .jinro-page .hero-title {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin: 0 auto;
    z-index: 3;
  }

  .jinro-page .hero-title span {
    display: block;
    font-size: clamp(2rem, 11vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    white-space: normal;
    word-break: keep-all;
    text-align: center;
  }

  .jinro-page .hero-percent {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 6px;
    font-size: clamp(4rem, 22vw, 6.5rem);
    line-height: 0.9;
    text-align: center;
    z-index: 3;
  }

  .jinro-page .jinro-hero .hero-model {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: min(84vw, 330px);
    height: auto;
    margin: 18px auto 0;
    z-index: 2;
  }

  .jinro-page .hero-desc {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: 100%;
    margin-top: 18px;
    padding: 0 6px;
    font-size: 0.98rem;
    line-height: 1.75;
    text-align: center;
  }

  .jinro-page .hero-desc::before {
    margin: 0 auto 12px;
  }

  .jinro-page .problem-title,
  .jinro-page .solution-title,
  .jinro-page .reason-title,
  .jinro-page .gallery-title,
  .jinro-page .story-title,
  .jinro-page .reviews-title,
  .jinro-page .details-title,
  .jinro-page .magician-title,
  .jinro-page .jinro-cta h2 {
    font-size: clamp(2rem, 8.5vw, 2.8rem);
    line-height: 1.2;
    letter-spacing: 0;
    word-break: keep-all;
    text-align: center;
  }

  .jinro-page .problem-text,
  .jinro-page .solution-sub,
  .jinro-page .solution-desc,
  .jinro-page .reason-card p,
  .jinro-page .review-text,
  .jinro-page .jinro-cta p {
    font-size: 0.98rem;
    line-height: 1.85;
    word-break: keep-all;
  }

  .jinro-page .problem-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .jinro-page .problem-title {
    margin-bottom: 20px;
  }

  .jinro-page .problem-text {
    text-align: center;
  }

  .jinro-page .problem-right {
    justify-content: center;
  }

  .jinro-page .problem-shape {
    width: 100%;
    max-width: 340px;
    padding: 28px 20px;
    border-radius: 28px;
    animation: none;
  }

  .jinro-page .stats-title {
    font-size: 1rem;
    line-height: 1.5;
  }

  .jinro-page .stats-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
  }

  .jinro-page .donut {
    width: 96px;
    height: 96px;
    font-size: 0.95rem;
    margin: 0 auto;
  }

  .jinro-page .stat p {
    margin-top: 10px;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .jinro-page .solution-wrap {
    max-width: 100%;
  }

  .jinro-page .solution-title {
    margin-bottom: 20px;
  }

  .jinro-page .solution-show-title {
    font-size: 1.45rem;
    line-height: 1.4;
    margin-bottom: 16px;
    color:#fff;
  }

  .jinro-page .solution-sub {
    font-size: 1rem;
  }

  .jinro-page .solution-desc {
    padding-top: 20px;
  }

  .jinro-page .reason-sub {
    margin-bottom: 28px;
    font-size: 0.92rem;
    line-height: 1.6;
    opacity: 0.85;
  }

  .jinro-page .reason-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .jinro-page .reason-card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .jinro-page .reason-number {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .jinro-page .reason-card h3 {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 8px;
  }

  .jinro-page .jinro-gallery {
    mask-image: none;
    overflow: visible;
    padding: 72px 20px;
  }

  .jinro-page .gallery-title {
    margin-bottom: 28px;
  }

  .jinro-page .gallery-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 28px;
    align-items: start;
    text-align: center;
  }

  .jinro-page .gallery-stats h3 {
    font-size: 1.9rem;
    margin-bottom: 4px;
  }

  .jinro-page .gallery-stats p {
    font-size: 0.88rem;
  }

  .jinro-page .jinro-gallery-track {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 2px 10px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    animation: none;
    cursor: grab;
  }

  .jinro-page .gallery-item {
    flex: 0 0 31%;
    max-width: 31%;
    min-width: 31%;
    scroll-snap-align: start;
    position: relative;
  }

  .jinro-page .gallery-item img,
  .jinro-page .jinro-gallery-track img {
    width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    display: block;
  }

  .jinro-page .gallery-school {
    left: 6px;
    bottom: 6px;
    font-size: 0.68rem;
    padding: 4px 7px;
  }

  .jinro-page .story-title {
    margin-bottom: 24px;
  }

  .jinro-page .story-horizontal {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 2px 10px;
    margin-top: 0;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  .jinro-page .story-horizontal::-webkit-scrollbar {
    display: none;
  }

  .jinro-page .story-horizontal::before {
    display: none;
  }

  .jinro-page .story-step {
    flex: 0 0 31%;
    max-width: 31%;
    min-width: 31%;
    margin: 0;
    scroll-snap-align: start;
  }

  .jinro-page .story-step img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 14px;
  }

  .jinro-page .story-step h3 {
    font-size: 0.82rem;
    line-height: 1.45;
    text-align: center;
  }

  .jinro-page .story-number {
    top: 8px;
    left: 8px;
    transform: none;
    width: 24px;
    height: 24px;
    font-size: 0.68rem;
  }

  .jinro-page .reviews-title {
    margin-bottom: 28px;
  }

  .jinro-page .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .jinro-page .review-card {
    min-height: auto;
    padding: 22px 18px;
    text-align: left;
  }

  .jinro-page .review-card::before {
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .jinro-page .review-text {
    margin-bottom: 14px;
  }

  .jinro-page .review-author {
    font-size: 0.82rem;
  }

  .jinro-page .details-title {
    margin-bottom: 28px;
  }

  .jinro-page .details-box {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .jinro-page .details-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .jinro-page .details-list li {
    width: min(100%, 320px);
    display: grid;
    grid-template-columns: 22px 92px auto;
    align-items: center;
    justify-content: center;
    column-gap: 12px;
    min-height: 44px;
  }

  .jinro-page .details-list strong {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    margin: 0;
    line-height: 1.4;
    width:auto;
  }

  .jinro-page .details-list span {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    margin: 0;
    line-height: 1.4;
  }

  .jinro-page .check {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    max-width: 20px !important;
    min-height: 20px !important;
    max-height: 20px !important;
    flex: 0 0 20px !important;
    display: block !important;
    border-radius: 50% !important;
    margin: 0 !important;
    position: relative;
    background: #2d5bff;
    align-self: center;
    justify-self: center;
  }

  .jinro-page .check::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 4px;
    width: 5px;
    height: 9px;
    border: solid #111;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }

  .jinro-page .magician-title {
    margin-bottom: 6px;
  }

  .jinro-page .magician-name {
    margin-top: 0;
    margin-bottom: 22px;
    font-size: 0.76rem;
    letter-spacing: 3px;
  }

  .jinro-page .magician-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .jinro-page .magician-center {
    order: -1;
  }

  .jinro-page .magician-center img {
    max-width: 280px;
    margin: 0 auto;
  }

  .jinro-page .magician-left h3,
  .jinro-page .magician-right h3,
  .jinro-page .magician-left ul,
  .jinro-page .magician-right ul,
  .jinro-page .magician-left li,
  .jinro-page .magician-right li {
    text-align: left;
  }

  .jinro-page .magician-left h3,
  .jinro-page .magician-right h3 {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .jinro-page .magician-left li,
  .jinro-page .magician-right li {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 8px;
  }

  .jinro-page .jinro-cta h2 {
    margin-bottom: 16px;
  }

  .jinro-page .jinro-cta p {
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 10px;
  }

  .jinro-page .jinro-cta .cta-btn {
    width: 100%;
    max-width: 300px;
    margin-top: 24px;
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  .jinro-page .cta-phone,
  .jinro-page .cta-kakao {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

    .mobile-line {
    display: block;
  }

}

.pc-break {
  display: inline;
}

.mobile-break {
  display: none;
}

@media (max-width: 768px) {
  .pc-break {
    display: none;
  }

  .mobile-break {
    display: inline;
  }
}