* {
  box-sizing: border-box;
}


html {
  font-size: 6.25vmax;
  scroll-snap-type: none;
  scroll-behavior: smooth;
}

.snap-section {
  scroll-snap-align: none;
}

body {
  margin: 0;
  background: #0b0b0b;
  color: #fff;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  overflow-x: hidden;
}

/* TOP LOGO */
.top-logo{
    position: fixed;
    top: 23.2px;
    left: 34px;
    z-index: 9999;
}

.top-logo img{
  width:110px;
  display:block;
}
/* MOBILE */
@media (max-width:768px){

  .top-logo{
    top:14px;
    left:14px;
  }

  .top-logo img{
    width:90px;
  }

}

/* COMMON CTA */

.cta-main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 40px;
  background: #b6ff00;
  color: #000;
  border: none;
  border-radius: 30px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-main-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(182,255,0,0.3);
}

/* ======================
   COMMON BUTTON ARROW
====================== */

.cta-arrow,
.sw-package-btn::after{
  display:inline-block;
  position:relative;
  top:-0.01em;

  font-family:"Pretendard",sans-serif;
  font-size:1em;
  font-weight:600;
  line-height:1;

  transform-origin:center;

  animation:ctaArrowMove 1.8s ease-in-out infinite;
}

/* package btn 전용 content */
.sw-package-btn::after{
  content:"→";
}

@keyframes ctaArrowMove{
  0%{
    transform:translateX(0);
  }

  50%{
    transform:translateX(.18em);
  }

  100%{
    transform:translateX(0);
  }
}
/* ======================
   SECTION 01
====================== */

.hero-section{
  position:relative;
  width:100%;
  height:100vh;
  min-height:100svh;
  overflow:hidden;
  background:#0b0b0b;
  display:flex;
  align-items:center;
  justify-content:center;
  perspective:1500px;
}

.container{
  position:absolute;
  top:60%;
  left:50%;
  width:8.8rem;
  aspect-ratio:1 / 1;
  transform-style:preserve-3d;
  transform:translate(-50%, -50%) translateZ(-800px);
  z-index:0;
}

.inner{
  width:100%;
  height:100%;
  transform-style:preserve-3d;
  animation:rotate linear 30s infinite;
}

.card-wrapper{
  position:absolute;
  inset:0;
  margin:auto;
  height:100%;
  aspect-ratio:9 / 16;
  transform-style:preserve-3d;
  backface-visibility:visible;
}

.card-wrapper:nth-child(1){ transform:rotateY(45deg) translateX(150%); }
.card-wrapper:nth-child(2){ transform:rotateY(90deg) translateX(150%); }
.card-wrapper:nth-child(3){ transform:rotateY(135deg) translateX(150%); }
.card-wrapper:nth-child(4){ transform:rotateY(180deg) translateX(150%); }
.card-wrapper:nth-child(5){ transform:rotateY(225deg) translateX(150%); }
.card-wrapper:nth-child(6){ transform:rotateY(270deg) translateX(150%); }
.card-wrapper:nth-child(7){ transform:rotateY(315deg) translateX(150%); }
.card-wrapper:nth-child(8){ transform:rotateY(360deg) translateX(150%); }

.card-wrapper img{
  width:100%;
  height:100%;
  display:block;
  border-radius:36px;
  object-fit:cover;
  filter:grayscale(.2);
  transform:rotateY(90deg);
}

@keyframes rotate{
  0%{ transform:rotateY(-30deg) rotateX(12deg) rotateY(0deg); }
  100%{ transform:rotateY(-30deg) rotateX(12deg) rotateY(-360deg); }
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.65);
  z-index:1;
}

/* HERO TEXT */

.hero-text{
  position:absolute;
  top:50%;
  left:50%;
  z-index:2;
  transform:translate(-50%, -50%);
}

.hero-text.hero-text-left{
  width:min(980px, calc(100% - 80px));
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  column-gap:38px;
  align-items:end;
  text-align:left;
  padding:0;
}

.hero-text-left .sub{
  grid-column:1 / -1;
  margin:0 0 18px;
  padding-left:4px;
  font-size:28px;
  line-height:1.2;
  letter-spacing:-0.005rem;
  text-align:left;
}

.hero-title-deco{
  grid-column:1;
  margin:0;
  font-size:65px;
  line-height:1.25;
  font-weight:600;
  letter-spacing:-0.055em;
  word-break:keep-all;
  text-align:left;
}

.hero-title-deco span{
  color:#b6ff00;
}

/* HERO BUTTON */

.cta-main-btn.trap-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  height:54px;
  padding:0 28px;
  border-radius:999px;
  background:#b6ff00;
  color:#0b0b0b;
  font-family:"Trap","Inter","Pretendard",sans-serif;
  font-size:20px;
  font-weight:800;
  line-height:1;
  letter-spacing:-0.02em;
  box-shadow:none;
  transition:transform .25s ease, background-color .25s ease;
}

.cta-main-btn.trap-btn:hover{
  transform:scale(1.04);
  background:#c3ff2e;
  box-shadow:none;
}

.hero-trap-btn{
  grid-column:2;
  align-self:end;
  justify-self:end;
  margin:0 0 10px !important;
  white-space:nowrap;
}

.trap-btn-text{
  display:flex;
  align-items:center;
  line-height:1;
}

.trap-btn-arrow{
  width:20px;
  height:20px;
  flex-shrink:0;
  display:block;
  object-fit:contain;
  filter:brightness(0) saturate(100%) contrast(120%);
  animation:trapArrowMove 1.6s ease-in-out infinite;
}

@keyframes trapArrowMove{
  0%,100%{ transform:translateX(0); }
  50%{ transform:translateX(5px); }
}

/* HERO ICON */

.hero-inline-icon{
  display:inline-block;
  vertical-align:middle;
  object-fit:contain;
  pointer-events:none;
  transform-origin:center;
}

.hero-spin{
  width:.95em;
  margin-left:0;
  margin-right:.1em;
  margin-top:-.1em;
  animation:heroSpin 7s linear infinite;
}

.hero-float{
  width:.88em;
  margin:0 .16em;
  animation:heroFloat 3.4s ease-in-out infinite;
}

@keyframes heroSpin{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}

@keyframes heroFloat{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-6px); }
}

/* ======================
   SECTION 01 RESPONSIVE
====================== */

@media (max-width:1400px){
  .container{
    width:9rem;
  }
}

@media (max-width:1200px){
  .container{
    width:10rem;
  }
}

@media (max-width:1024px){

  .hero-text.hero-text-left{
    width:min(900px, calc(100% - 64px));
    column-gap:28px;
  }

  .hero-text-left .sub{
    font-size:24px;
    margin-bottom:16px;
  }

  .hero-title-deco{
    font-size:56px;
    line-height:1.17;
  }

  .cta-main-btn.trap-btn{
    height:50px;
    padding:0 24px;
    font-size:17px;
  }

  .trap-btn-arrow{
    width:18px;
    height:18px;
  }

  .hero-text h1{
    font-size:54px;
  }

  .hero-text .sub{
    font-size:26px;
  }

  .stats-v2-inner{
    max-width:840px;
    gap:30px;
  }
}


/* 태블릿부터 좌측 정렬 유지 */
@media (max-width:950px){

  .container{
    top:50%;
    width:11rem;
    opacity:.78;
  }

  .hero-text.hero-text-left{
    width:calc(100% - 72px);
    display:block;
    text-align:left;
  }

  .hero-text-left .sub{
    padding-left:0;
    font-size:clamp(20px, 3vw, 24px);
    text-align:left;
  }

  .hero-title-deco{
    line-height:1.18;
    text-align:left;
  }

  .hero-trap-btn{
    display:inline-flex;
    margin-top:30px !important;
    margin-left:0 !important;
    margin-right:auto !important;
    justify-self:start;
  }

  .trap-btn-text{
    margin-top:2px;
  }
}


/* 모바일 */
@media (max-width:768px){

  .container{
    top:56%;
    width:40rem;
    opacity:.68;
  }

  .card-wrapper img{
    border-radius:26px;
  }

  .overlay{
    background:rgba(0,0,0,.68);
  }

  .hero-text.hero-text-left{
    width:calc(100% - 56px);
    top:53%;
    left:35px;
    transform:translateY(-50%);
    text-align:left;
  }

  .hero-text-left .sub{
    margin-bottom:14px;
    font-size:20px;
    line-height:1.35;
    text-align:left;
  }

  .hero-title-deco{
    font-size:40px;
    line-height:1.18;
    text-align:left;
  }

  .cta-main-btn.trap-btn{
    height:52px;
    padding:0 24px;
    gap:8px;
    font-size:17px;
  }

  .hero-trap-btn{
    margin-top:30px !important;
  }

  .trap-btn-arrow{
    width:17px;
    height:17px;
  }

  .hero-spin{
    width:.95em;
    margin-top:-.16em;
  }

  .hero-float{
    width:.78em;
  }
}

@media (max-width:640px){
  .hero-text{
    padding:0 22px;
  }

  .hero-text .sub{
    font-size:20px;
    line-height:1.35;
    margin-bottom:12px;
  }

  .hero-text h1{
        margin-top: 15px;
        font-size: 40px;
        line-height: 1.18;
        letter-spacing: -0.045em;
  }

  .hero-text .cta-main-btn{
    margin-top:28px;
  }}

  @media (max-width:440px){

  .hero-text h1{
    font-size:38px;
  }
  }


@media (max-width:441px){
    .hero-text h1{
    font-size:37px;
  }

  .container{
    width:35rem;
    opacity:.62;
  }

  .hero-text.hero-text-left{
    width:calc(100% - 48px);
    left:30px;
  }


  .hero-text-left .sub{
    font-size:16px;
  }

  .hero-title-deco{
    font-size:35px;
  }

  .cta-main-btn.trap-btn{
    height:46px;
    padding:0 22px;
    font-size:17px;
  }
}
/* ======================
   SECTION 02
====================== */

.stats-v2-section{
  position:relative;
  min-height:100vh;
  min-height:100svh;
  padding:0 20px;
  background:#0b0b0b;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.stats-v2-section::before{
  content:"";
  position:absolute;
  width:620px;
  height:620px;
  left:16%;
  top:50%;
  transform:translateY(-50%);
  background:radial-gradient(
    circle,
    rgba(182,255,0,.18) 0%,
    rgba(182,255,0,.08) 30%,
    rgba(182,255,0,.03) 55%,
    transparent 78%
  );
  filter:blur(48px);
  opacity:.72;
  z-index:0;
}

.stats-v2-section::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(5,5,5,.32);
  z-index:1;
}

.stats-v2-inner{
  position:relative;
  z-index:2;
  width:fit-content;
  max-width:calc(100% - 80px);
  margin:0 auto;
  display:grid;
  grid-template-columns:440px 430px;
  align-items:center;
  justify-content:center;
  gap:46px;
  transform:translateX(34px);
}

/* VISUAL */

.stats-v2-visual-wrap{
  position:relative;
  justify-self:center;
  width:390px;
  height:390px;
  overflow:visible;
}

.stats-v2-visual{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  background:url("img/bgbgbg_cta.webp") center/contain no-repeat;
  animation:statsVisualFloat 6s ease-in-out infinite;
}

.stats-shape{
  position:absolute;
  display:block;
  object-fit:contain;
  pointer-events:none;
}

.stats-shape-1{
  width:90px;
  top:-50px;
  right:-40px;
  z-index:5;
  animation:statsShapeSpin 8s linear infinite;
}

.stats-shape-2{
  width:58px;
  left:-30px;
  bottom:116px;
  z-index:5;
  opacity:.92;
  animation:statsShapePop 3s ease-in-out infinite;
}

.stats-shape-3{
  width:64px;
  right:140px;
  bottom:-30px;
  z-index:-1;
  opacity:.95;
  animation:statsShapeFloat 3.8s ease-in-out infinite;
}

/* CONTENT */

.stats-v2-content{
  justify-self:center;
  width:100%;
  max-width:430px;
  text-align:left;
}

.stats-v2-eyebrow{
  margin:0 0 30px;
  font-size:26px;
  line-height:1.25;
  font-weight:400;
  letter-spacing:-0.03em;
  color:rgba(255,255,255,.88);
}

.stats-v2-percent{
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  color:#b6ff00;
  letter-spacing:-0.07em;
  font-family:"Trap","Inter",sans-serif;
  opacity:0;
  transform:translateY(18px) scale(.96);
  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.22,.61,.36,1);
}

.stats-v2-section.active .stats-v2-percent{
  opacity:1;
  transform:translateY(0) scale(1);
}

.stats-v2-num{
  font-size:130px;
  line-height:.82;
  font-variant-numeric:tabular-nums;
}

.stats-v2-unit{
  margin-left:5px;
  font-size:52px;
  line-height:1;
  transform:translateY(-10px);
}

.stats-v2-of{
  margin-left:10px;
  margin-bottom:12px;
  font-size:24px;
  line-height:1;
  font-weight:600;
  letter-spacing:-0.04em;
}

.stats-v2-title{
  margin:0;
  padding:0;
  font-size:50px;
  line-height:1.2;
  font-weight:600;
  letter-spacing:-0.035em;
  word-break:keep-all;
  text-align:left;
}

.stats-v2-title span{
  color:#b6ff00;
}

.stats-v2-note{
  margin:20px 0 0;
  font-size:15px;
  line-height:1.5;
  letter-spacing:-0.02em;
  color:rgba(255,255,255,.45);
  text-align:left;
  font-weight: 400;
}

/* ANIMATION */

@keyframes statsVisualFloat{
  0%,100%{ transform:translateY(0) rotate(-1deg); }
  50%{ transform:translateY(-10px) rotate(1deg); }
}

@keyframes statsShapeSpin{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}

@keyframes statsShapePop{
  0%,100%{ transform:scale(1); }
  50%{ transform:scale(1.12); }
}

@keyframes statsShapeFloat{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}

/* ======================
   SECTION 02 RESPONSIVE
====================== */

@media (max-width:1200px){
  .stats-v2-inner{
    max-width:calc(100% - 64px);
    grid-template-columns:400px 410px;
    gap:40px;
    transform:translateX(28px);
  }

  .stats-v2-visual-wrap{
    width:360px;
    height:360px;
  }

  .stats-v2-content{
    max-width:410px;
  }

  .stats-v2-num{
    font-size:118px;
  }

  .stats-v2-unit{
    font-size:46px;
  }

  .stats-v2-title{
    font-size:47px;
  }
}

@media (max-width:1024px){
  .stats-v2-inner{
    grid-template-columns:330px 370px;
    gap:34px;
    transform:translateX(18px);
            left: 30px;
  }

  .stats-v2-visual-wrap{
    width:300px;
    height:300px;
  }

  .stats-v2-content{
    max-width:370px;
  }

  .stats-v2-eyebrow{
    font-size:22px;
  }

  .stats-v2-num{
    font-size:104px;
  }

  .stats-v2-unit{
    font-size:40px;
    transform:translateY(-8px);
  }

  .stats-v2-of{
    font-size:22px;
    margin-bottom:10px;
  }

  .stats-v2-title{
    font-size:42px;
    line-height:1.2;
  }
}

/* 950 ~ 641 : 태블릿 2단 유지 */
@media (max-width:950px) and (min-width:641px){
  .stats-v2-section{
    padding:0 24px;
  }

  .stats-v2-inner{
    width:100%;
    max-width:720px;
    gap:28px;
    transform:none;
  }

  .stats-v2-visual-wrap{
    width:280px;
    height:280px;
    transform:translateX(16px);
  }

  .stats-v2-content{
    max-width:360px;
    text-align:left;
  }

  .stats-v2-eyebrow{
    margin-bottom:22px;
    font-size:20px;
    line-height:1.35;
  }

  .stats-v2-percent{
    justify-content:flex-start;
  }

  .stats-v2-num{
    font-size:94px;
  }

  .stats-v2-unit{
    font-size:36px;
    transform:translateY(-7px);
  }

  .stats-v2-of{
    font-size:20px;
    margin-left:4px;
    margin-bottom:8px;
  }

  .stats-v2-title{
    font-size:38px;
    line-height:1.18;
    text-align:left;
  }

  .stats-v2-note{
    margin-top:18px;
    font-size:13px;
    text-align:left;
  }

  .stats-shape-1{
    width:48px;
    top:-18px;
    right:-8px;
  }

  .stats-shape-2{
    width:38px;
    left:-14px;
    bottom:78px;
  }

  .stats-shape-3{
    width:40px;
    right:78px;
    bottom:-12px;
  }
}

/* 640 이하 : 모바일 구조 */
@media (max-width:640px){

  .stats-v2-section{
  min-height:100dvh;
    height:auto;
    padding:72px 0 86px !important;
  }

  .stats-v2-inner{
    width:100%;
    max-width:none;
    margin:0;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    justify-content:center;
    gap:40px;
    transform:none;
    left:0;
  }

  /* 이미지는 오른쪽 여백 35px 기준 */
  .stats-v2-visual-wrap{
    width:270px;
    height:270px;
    align-self:flex-end;
    margin-right:35px;
    transform:none;
  }

  /* 텍스트는 섹션1과 같은 왼쪽 35px 기준 */
  .stats-v2-content{
    width:calc(100% - 70px);
    max-width:none;
    margin-left:35px;
    margin-right:35px;
    text-align:left;
  }

  .stats-v2-eyebrow{
    margin:0 0 18px;
    font-size:18px;
    line-height:1.35;
    font-weight:500;
    text-align:left;
  }

  .stats-v2-percent{
    justify-content:flex-start;
    margin-bottom:7px;
  }

  .stats-v2-num{
    font-size:72px;
  }

  .stats-v2-unit{
    margin-left:0;
    font-size:28px;
    transform:translateY(-5px);
  }

  .stats-v2-of{
    margin-left:3px;
    margin-bottom:7px;
  }

  .stats-v2-title{
    font-size:38px;
    line-height:1.18;
    text-align:left;
  }

  .stats-v2-note{
    margin-top:20px;
    font-size:12px;
    text-align:left;
  }

  .stats-shape-1{
    width:40px;
    top:-25px;
    right:-20px;
  }

  .stats-shape-2{
    width:35px;
    left:-20px;
    bottom:60px;
  }

  .stats-shape-3{
    width:35px;
    bottom:-15px;
  }
}

/* 440 이하 */
@media (max-width:440px){
  .stats-v2-title{
    font-size:36px;
    line-height:1.18;
  }


  .stats-v2-inner{
    gap:30px;

  }

}

/* 390 이하 */
@media (max-width:441px){

  .stats-v2-visual-wrap{
    width:230px;
    height:230px;
    margin-right:30px;
    transform:none;
  }

  .stats-v2-content{
    width:calc(100% - 60px);
    margin-left:30px;
    margin-right:30px;
  }

  .stats-v2-eyebrow{
    font-size:18px;
    margin-bottom:1.5rem;
  }

  .stats-v2-num{
    font-size:83px;
    letter-spacing:-0.08em;
  }

  .stats-v2-unit{
    font-size:26px;
    margin-left:5px;
  }

  .stats-v2-title{
    font-size:35px;
    line-height:1.18;
  }


  .stats-v2-note{
    font-size:12px;
  }

  .stats-shape-3{
    width:35px;
    bottom:-15px;
    left:100px;
  }

  .stats-v2-percent{
    margin-bottom:1px;
  }
}

/* ======================
   SECTION 03
====================== */

.ready-section{
  background:#f7f7f7;
  color:#000;
  padding:120px 0;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.ready-inner{
  width:100%;
  text-align:center;
}

.ready-slider{
  width:100%;
  overflow:hidden;
}

.ready-track{
  display:flex;
  align-items:flex-start;
  gap:80px;
  width:max-content;
  margin-bottom:20px;
  animation:readySlide 32s linear infinite;
  will-change:transform;
  font-weight: 400;
}

.ready-card{
  width:260px;
  flex:0 0 260px;
  display:grid;
  grid-template-rows:300px 40px auto;
  row-gap:10px;
  text-align:center;
}

.ready-visual{
  position:relative;
  width:280px;
  height:280px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
}

.ready-visual .shape{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain;
}

.ready-visual .product{
  position:relative;
  z-index:1;
  width:82%;
  max-height:150px;
  object-fit:contain;
  filter:drop-shadow(0 18px 24px rgba(0,0,0,0.16));
}

.campaign-meta{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:100%;
  min-width:0;
  margin:2px 0 8px;
  overflow:visible;
  white-space:nowrap;
}

.campaign-category{
  height:32px;
  width:auto;
  max-width:110px;
  display:block;
  flex:0 0 auto;
  object-fit:contain;
}

.campaign-badge-wrap{
  height:32px;
  min-width:74px;
  padding:0 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgb(44,44,44);
  border-radius:999px;
  flex:0 0 auto;
}

.campaign-badge{
  height:23px;
  width:auto;
  max-width:60px;
  display:block;
  object-fit:contain;
}

.ready-card h3{
    margin: 0;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.016em;
    font-weight: 700;
}

.ready-card p{
  margin:0;
  font-size:17px;
  line-height:1.45;
  letter-spacing:-0.03em;
  color:#111;
}

@keyframes readySlide{
  0%{ transform:translate3d(0,0,0); }
  100%{ transform:translate3d(calc(-50% - 28px),0,0); }
}

/* TABLET */
@media (min-width:769px) and (max-width:1200px){

  .ready-section{
    padding:110px 0;
  }

  .ready-track{
    gap:48px;
    animation-duration:30s;
  }

  .ready-card{
    width:220px;
    flex:0 0 220px;
    grid-template-rows:230px 36px auto;
    row-gap:9px;
  }

  .ready-visual{
    width:220px;
    height:220px;
  }

  .ready-visual .product{
    width:82%;
    max-height:125px;
  }

  .campaign-meta{
    gap:7px;
    height:30px;
    margin:0 0 7px;
  }

  .campaign-category{
    height:26px;
    max-width:86px;
  }

  .campaign-badge-wrap{
    height:26px;
    min-width:66px;
    padding:0 8px;
  }

  .campaign-badge{
    height:19px;
    max-width:50px;
  }


}

/* MOBILE */
@media (max-width:768px){

  .ready-section{
    padding:125px 0 150px;
  }

  .ready-track{
    gap:48px;
    animation-duration:28s;
  }

  .ready-card{
    width:238px;
    flex:0 0 238px;
    grid-template-rows:248px 40px auto;
    row-gap:12px;
  }

  .ready-visual{
    width:238px;
    height:238px;
  }

  .ready-visual .product{
    width:86%;
    max-height:136px;
  }

  .campaign-meta{
    gap:8px;
    width:100%;
    height:36px;
    margin:0 0 10px;
    overflow:visible;
    white-space:nowrap;
  }

  .campaign-category{
    height:29px;
    max-width:100px;
  }

  .campaign-badge-wrap{
    height:29px;
    min-width:74px;
    padding:0 10px;
  }

  .campaign-badge{
    height:19px;
    max-width:58px;
  }

  .ready-card h3{
    font-size:20px;
    line-height:0.9;
  }

  .ready-visual{
    overflow:visible;
  }

  .ready-visual .product{
    filter:none;
  }

  .ready-visual::after{
    content:"";
    position:absolute;
    left:50%;
    top:58%;
    width:48%;
    height:22%;
    transform:translate(-50%, -50%);
    background:rgba(0,0,0,.16);
    filter:blur(22px);
    border-radius:50%;
    z-index:0;
    pointer-events:none;
  }

  .ready-visual .product{
    z-index:1;
  }

  .ready-visual .product{
  filter:drop-shadow(0 8px 16px rgba(0,0,0,.12));
}

}

/* SMALL MOBILE */
@media (max-width:441px){

  .ready-section{
    padding:110px 0 130px;
  }

  .ready-track{
    gap:36px;
  }

  .ready-card{
    width:214px;
    flex:0 0 214px;
    grid-template-rows:224px 38px auto;
  }

  .ready-visual{
    width:214px;
    height:214px;
  }

  .ready-visual .product{
    max-height:124px;
  }

  .campaign-meta{
    gap:7px;
    height:34px;
  }

  .campaign-category{
    height:28px;
    max-width:94px;
  }

  .campaign-badge-wrap{
    height:27px;
    padding:0 9px;
  }

  .campaign-badge{
        height: 21px;

  }

  .ready-card h3{
    font-size:19px;
  }

  .ready-card p{
    font-size:15px;
  }
}
/* ======================
   SECTION 04
====================== */

.focus-section{
  position:relative;
  background:#0b0b0b;
  color:#fff;
  padding:120px 32px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.focus-inner{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1120px;
}

.focus-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:28px;
}

.focus-card{
  position:relative;
  min-height:190px;
  padding:34px 42px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,0.16);
  background:rgba(255,255,255,0.015);
  backdrop-filter:blur(6px);
  overflow:hidden;
  transition:.3s ease;
}

.focus-card:hover{
  transform:translateY(-5px);
  border-color:rgba(182,255,0,0.42);
}

.focus-card::before{
  display:none;
}

.focus-num{
  display:block;
  margin-bottom:28px;
  color:#b6ff00;
  font-size:50px;
  font-weight:900;
  line-height:.82;
  font-family:"Trap","Inter",sans-serif;
  letter-spacing:0;
  position:relative;
  z-index:2;
}

.focus-card-content{
  position:relative;
  z-index:2;
  min-width:0;
  padding-right:88px;
}

.focus-card h3{
  width:100%;
  margin:0 0 12px;
  font-size:23px;
  line-height:1.15;
  font-weight:600;
  letter-spacing:-0.015em;
  color:#fff;
}

.focus-card p{
  width:100%;
  margin:0;
  font-size:17px;
  line-height:1.45;
  font-weight:500;
  letter-spacing:-0.035em;
  color:rgba(255,255,255,0.68);
}

.focus-icon{
  position:absolute;
  right:42px;
  bottom:42px;
  z-index:2;
  width:60px;
  height:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#b6ff00;
  color:#000;
}

.focus-icon img,
.focus-icon svg{
  width:33px;
  height:33px;
  display:block;
  object-fit:contain;
}

.focus-icon img{
  filter:brightness(0);
}

.focus-icon svg path,
.focus-icon svg rect,
.focus-icon svg circle{
  fill:none;
  stroke:#000;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* FLOATING SHAPES */

.focus-float{
  position:absolute;
  object-fit:contain;
  filter:
    brightness(0)
    saturate(100%)
    invert(82%)
    sepia(96%)
    saturate(746%)
    hue-rotate(30deg)
    brightness(105%)
    contrast(105%);
  pointer-events:none;
  animation:focusFloat 8s ease-in-out infinite;
}

.ff1{
  width:250px;
  top:-2%;
  left:-2%;
  opacity:.09;
  --r:-12deg;
  animation-delay:0s;
}

.ff2{
  width:220px;
  top:1%;
  right:1%;
  opacity:.11;
  --r:8deg;
  animation-delay:1.3s;
}

.ff3{
  width:120px;
  bottom:4%;
  left:5%;
  opacity:.08;
  --r:-8deg;
  filter:
    blur(1px)
    brightness(0)
    saturate(100%)
    invert(82%)
    sepia(96%)
    saturate(746%)
    hue-rotate(30deg)
    brightness(105%)
    contrast(105%);
  animation-delay:2.2s;
}

.ff4{
  width:230px;
  bottom:-4%;
  right:4%;
  opacity:.1;
  --r:14deg;
  animation-delay:3s;
}

@keyframes focusFloat{
  0%{ transform:translateY(0) rotate(var(--r,0deg)); }
  50%{ transform:translateY(-18px) rotate(calc(var(--r,0deg) + 3deg)); }
  100%{ transform:translateY(0) rotate(var(--r,0deg)); }
}

/* ======================
   SECTION 04 TABLET
====================== */

@media (max-width:1024px){

  .focus-section{
    padding:110px 40px;
  }

  .focus-grid{
    gap:22px;
  }

  .focus-card{
    min-height:178px;
    padding:30px 32px;
    border-radius:26px;
  }

  .focus-card-content{
    padding-right:74px;
  }

  .focus-num{
    font-size:46px;
    margin-bottom:24px;
  }

  .focus-card h3{
    font-size:22px;
  }

  .focus-card p{
    font-size:15.5px;
  }

  .focus-icon{
    right:32px;
    bottom:34px;
    width:52px;
    height:52px;
  }

  .focus-icon img,
  .focus-icon svg{
    width:28px;
    height:28px;
  }
}

/* ======================
   SECTION 04 MOBILE
====================== */

@media (max-width:768px){

  .focus-section{
    padding:90px 28px 110px !important;
  }

  .focus-inner{
    max-width:100%;
  }

  .focus-grid{
    grid-template-columns:1fr;
    gap:16px;
    margin-top: -15px;
  }

  .focus-card{
    min-height:148px;
    padding:26px 24px !important;
    border-radius:16px;
  }

  .focus-card-content{
    padding-right:58px;
  }

  .focus-num{
        font-size: 35px;
        line-height: .82;
        margin-bottom: 18px;
  }

  .focus-card h3{
    margin:0 0 8px !important;
    font-size:21px !important;
    line-height:1.2 !important;
  }

  .focus-icon{
    right:24px;
    bottom:28px;
    width:55px;
    height:55px;
  }

  .focus-icon img,
  .focus-icon svg{
    width:30px;
    height:30px;
  }

  .focus-float{
    width:100px;
    opacity:.06;
  }

  .focus-card p{        font-size: 15px !important;
        letter-spacing: -0.02em;}

        .ff2{
  width:100px;
        top: 18%;
        right: -2%;
}

.ff1{
        width: 110px;
    top: 0%;
    opacity: .09;
    --r: -15deg;
    animation-delay: 0s;
            left: -5%;
}

.ff3{
    bottom: 2%;
    left: -5%;
        --r: -18deg;

}}

/* ======================
   SECTION 04 SMALL MOBILE
====================== */

@media (max-width:441px){

  .focus-section{
    padding:82px 24px 100px !important;
  }

  .focus-grid{
    gap:14px;
  }

  .focus-card{
        min-height: 130px;
        padding: 24px 22px 20px 22px !important;
  }

  .focus-card-content{
    padding-right:54px;
  }

  .focus-num{
    font-size:26px;
    margin-bottom:15px;
  }

  .focus-card h3{
    font-size:20px !important;
            margin: 0 0 5px !important;
  }


  .focus-icon{
 right: 22px;
        bottom: 29px;
        width: 46px;
        height: 46px;
  }

  .focus-icon img,
  .focus-icon svg{
    width:27px;
    height:27px;
  }
}
/* ======================
   SECTION 05
====================== */

.growth-section{
  position:relative;
  background:#f7f7f7;
  color:#000;
  padding:120px 20px;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  overflow:hidden;
}

/* 이전 배경 로고 복구 */
.growth-section::before{
  content:"";
  position:absolute;
  width:200%;
  height:160px;
  top:50%;
  left:-50%;
  transform:translateY(-50%);
  background-image:url("img/logo1.svg");
  background-repeat:repeat-x;
  background-size:460px 110px;
  opacity:.15;
  filter:brightness(0) saturate(100%) invert(82%) sepia(96%) saturate(746%) hue-rotate(30deg) brightness(105%) contrast(110%);
  animation:logoSlide 28s linear infinite;
  pointer-events:none;
}

@keyframes logoSlide{
  0%{ background-position:0 center; }
  100%{ background-position:460px center; }
}

.growth-inner{
  position:relative;
  z-index:2;
  width:100%;
  max-width:980px;
  text-align:center;
}

.growth-slider{
  width:100%;
  max-width:420px;
  margin:0 auto;
}

.growth-track{
  position:relative;
  width:100%;
  height:500px;
}

.growth-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .75s ease;
  pointer-events:none;
}

.growth-slide.active{
  opacity:1;
  pointer-events:auto;
}

/* 카드만 현재 캡처 느낌으로 변경 */
.growth-card{
  position:relative;
  width:100%;
  height:100%;
  overflow:hidden;
  border-radius:30px;
  background:#ddd;
  border:none;
  box-shadow:0 34px 86px rgba(0,0,0,.16);
}

.growth-visual{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  overflow:hidden;
}

.growth-visual > img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.growth-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.56) 34%,
    rgba(0,0,0,.18) 66%,
    rgba(0,0,0,0) 100%
  );
  pointer-events:none;
}

.growth-text{
  position:absolute;
  left:28px;
  right:28px;
  bottom:30px;
  z-index:2;

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

  padding:0;
  text-align:left;
  color:#fff;
}

.growth-icon{
  width:60px;
  height:60px;
  margin:0 0 16px;
  border-radius:50%;
  background:#b6ff00;

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

  box-shadow:none;
}

.growth-icon img{
  width:27px;
  height:27px;
  display:block;
  object-fit:contain;
  filter:brightness(0);
}

.growth-label{
  display:none;
}

.growth-card p{
  margin:0;
  padding:0;
  font-size:22px;
  line-height:1.38;
  font-weight:500;
  letter-spacing:-0.02em;
  color:#fff;
}

/* DOTS */

.growth-dots{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:9px;
  margin-top:24px;
}

.growth-dots button{
  width:7px;
  height:7px;
  padding:0;
  margin:0;
  border:0;
  border-radius:999px;
  background:rgba(0,0,0,.22);
  cursor:pointer;
  transition:
    width .25s ease,
    background .25s ease,
    opacity .25s ease;
}

.growth-dots button.active{
  width:20px;
  height:7px;
  background:#b6ff00;
}

.growth-section h2{
  margin: 0 20px 50px;
}

@media (max-width:1024px){
.growth-icon{width: 52px;
        height: 52px;}
      .growth-icon img{width: 26px;
        height: 26px;}
      }

/* MOBILE */

@media (max-width:768px){

  .growth-section{
    padding:70px 20px !important;
  }

  .growth-section::before{
    background-size:360px 90px;
    opacity:.025;
  }

  .growth-slider{
    max-width:min(375px, 90vw);
            margin-top: -20px;
  }

  .growth-track{
    height:430px;
  }

  .growth-card{
    border-radius:16px;
  }

  .growth-text{
  left: 25px;
        right: 22px;
        bottom: 30px;
  }


  .growth-icon{width: 52px;
        height: 52px;
        margin-bottom:14px;}
      .growth-icon img{width: 26px;
        height: 26px;}

  .growth-card p{
    font-size:20px;
    line-height:1.3;
  }

}
@media (max-width:441px){
  .growth-slider{
    max-width:min(300px, 90vw);
            margin-top: -20px;
  }

    .growth-icon{        width: 46px;
        height: 46px;}
      .growth-icon img{width: 22px;
        height: 22px;}
}

/* ======================
   SECTION 06
====================== */

.process-section{
  position:relative;
  background:#0b0b0b;
  color:#fff;
  padding:110px 60px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.process-inner{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1120px;
  text-align:center;
}

.process-mobile-preview,
.process-img-mobile{
  display:none !important;
}

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

.process-step{
  position:relative;
  display:flex;
  flex-direction:column;
  text-align:left;
  opacity:.36;
  color:rgba(255,255,255,.45);
  cursor:pointer;
  transition:.45s ease;
}

/* PC 이미지 */
.process-img-pc{
  order:1;
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  object-position:top center;
  border-radius:20px;
  filter:grayscale(1) brightness(.55);
  transition:1.2s cubic-bezier(.22,1,.36,1);
}

/* PC bar: 이미지 바로 아래 */
.process-bar{
  order:2;
  position:relative;
  width:100%;
  height:1.5px;
  margin:13px 0 26px;
  background:rgba(255,255,255,.32);
  overflow:hidden;
  border-radius:999px;
}

.process-bar::after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:#b6ff00;
  border-radius:999px;
  opacity:0;
  transform:scaleX(0);
  transform-origin:left center;
  box-shadow:
    0 0 10px rgba(182,255,0,.35),
    0 0 24px rgba(182,255,0,.15);
}

.process-step span{
  order:3;
  display:block;
  margin:0 0 12px;
  font-size:30px;
  font-weight:700;
  font-family:"Trap","Inter",sans-serif;
  letter-spacing:.01rem;
}

.process-step h3{
  order:4;
  margin:0 0 10px;
  font-size:22px;
  line-height:1;
  color:#fff;
  font-weight:600;
}

.process-step p{
    order: 5;
    margin: 0;
    font-size: 16.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .45);
    letter-spacing: -0.1px;
}

.process-step.active{
  opacity:1;
}

.process-step.active .process-img-pc{
  filter:grayscale(0) brightness(1);
  box-shadow:0 24px 60px rgba(182,255,0,.12);
}

.process-step.active span{
  color:#b6ff00;
}

.process-step.active p{
  color:rgba(255,255,255,0.68);
  font-weight: 500;
}

.process-step.active .process-bar::after{
  opacity:1;
  animation:processBarFill 2.6s linear forwards;
}

@keyframes processBarFill{
  0%{ transform:scaleX(0); }
  100%{ transform:scaleX(1); }
}

@media (max-width:1100px){
.process-step p{
  font-size:14px;
}}


/* TABLET */
@media (max-width:1024px){

  .process-section{
    padding:100px 40px;
  }

  .process-inner{
    max-width:920px;
  }

  .process-steps{
    gap:22px;
  }

  .process-step span{
    font-size:21px;
  }

  .process-step h3{
    font-size:19px;
    line-height:1.2;
  }

  .process-step p{
    font-size:14px;
  }
}

@media (max-width:950px){
  .process-step h3{font-size: 18px;}
.process-step p{font-size: 12px;}
}

@media (max-width:820px){
.process-step h3{ font-size: 18px;}
    .process-step p {
        font-size: 11px;
    }
}

/* MOBILE */
@media (max-width:768px){

  .process-section{
    padding:70px 24px 80px !important;
  }

  .process-inner{
    width:100%;
    max-width:360px;
    margin:0 auto;
  }

  .process-mobile-preview{
    display:block !important;
    width:100%;
    max-width:min(330px, 90vw);
    margin:0 auto 28px;
    border-radius:16px;
    overflow:hidden;
  }

  .process-mobile-preview img{
    display:block !important;
    width:100%;
    aspect-ratio:4 / 5;
    height:auto;
    object-fit:cover;
    object-position:center;
    border-radius:16px;
    transition:opacity .35s ease, transform .35s ease;
  }

  .process-mobile-preview img.is-changing{
    opacity:.25;
    transform:translateY(8px);
  }

  .process-steps{
    display:block;
    width:100%;
  }

  .process-step{
    display:grid;
    grid-template-columns:42px 1fr;
    column-gap:16px;
    padding-bottom:17px;
    opacity:.42;
    transform:none;
  }

  .process-step .process-img-pc,
  .process-step .process-img-mobile{
    display:none !important;
  }

  .process-step span{
    grid-column:1;
    grid-row:1;
    margin:0;
    font-size:25px;
    line-height:1.15;
    color:rgba(255,255,255,.42);
  }

  .process-step h3{
    grid-column:2;
    grid-row:1;
    margin:0;
    font-size:20px;
    line-height:1.24;
    color:rgba(255,255,255,.55);
  }

  .process-step p{
    grid-column:2;
    grid-row:2;
    max-height:0;
    opacity:0;
    overflow:hidden;
    margin:0;
    font-size:15px;
    line-height:1.5;
letter-spacing: -0.02em;
        color: rgba(255, 255, 255, 0.48);
    transition:max-height .35s ease, opacity .35s ease, margin-top .35s ease;
  }

  .process-bar{
    grid-column:1 / -1;
    grid-row:3;
    display:block;
    position:relative;
    width:100%;
    height:2px;
    margin:14px 0 0;
    background:rgba(255,255,255,.12);
    border-radius:999px;
    overflow:hidden;
  }

  .process-bar::after{
    box-shadow:none;
  }

  .process-step.active{
    opacity:1;
  }

  .process-step.active span{
    color:#b6ff00;
  }

  .process-step.active h3{
    color:#fff;
  }

  .process-step.active p{
    max-height:60px;
    opacity:1;
    margin-top:4px;
  }
}

/* SMALL MOBILE */
@media (max-width:441px){

  .process-section{
    padding:64px 24px 74px !important;
  }

  .process-inner{
    max-width:100%;
  }

  .process-mobile-preview{
    max-width:min(300px, 90vw);
    margin-top:-20px;
    margin-bottom:40px;
  }

  .process-step{
    grid-template-columns:38px 1fr;
    column-gap:14px;
    padding-bottom:16px;
  }

  .process-step span{
    font-size:25px;
  }

  .process-step h3{
    font-size:20px;
  }

  .process-step p{
    font-size:15px;
            color: rgba(255, 255, 255, 0.48);
  }

  .process-step.active p{
    margin-top:3px;
  }

}


/* =========================
   SECTION 07
========================= */

.proof-section{
  position:relative;
  background:#f7f7f7;
  color:#000;
  padding:82px 20px 110px;
  overflow:hidden;
}

.proof-inner{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1180px;
  margin:0 auto;
}

/* BG */

.proof-section::before{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  left:-90px;
  bottom:80px;
  background:radial-gradient(
    circle,
    rgba(182,255,0,.12) 0%,
    rgba(182,255,0,.04) 42%,
    transparent 72%
  );
  filter:blur(24px);
  opacity:.55;
  pointer-events:none;
}

.proof-section::after{
  content:"";
  position:absolute;
  width:320px;
  height:320px;
  right:-140px;
  top:20px;
  background:radial-gradient(
    circle,
    rgba(182,255,0,.1) 0%,
    rgba(182,255,0,.035) 42%,
    transparent 72%
  );
  filter:blur(28px);
  opacity:.48;
  pointer-events:none;
}

/* SUMMARY */

.proof-summary-card{
  width:100%;
  max-width:820px;
  margin:0 auto 36px;
  padding:26px 8px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:34px;
  border-top:1px solid rgba(0,0,0,.08);
  border-bottom:1px solid rgba(0,0,0,.08);
}

.proof-stat{
  text-align:center;
}

.proof-stat-text{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.proof-label{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:34px;
  padding:0 18px;
  margin:0 0 20px;
  border-radius:999px;
  background:#b6ff00;
  color:#0b0b0b;
  font-size:15px;
  line-height:1;
  font-weight:700;
  letter-spacing:-0.03em;
  white-space:nowrap;
}

.proof-number{
  font-size:52px;
  line-height:.95;
  font-weight:700;
  letter-spacing:.04em;
  color:#000;
  font-family:"Trap","Inter",sans-serif;
  white-space:nowrap;
}

.proof-unit{
  font-size:.72em;
  position:relative;
  top:-2px;
  white-space:nowrap;
}

.proof-note{
  margin:10px 0 0;
  font-size:14px;
  line-height:1;
  color:rgba(0,0,0,.42);
  font-weight:500;
}

.proof-divider{
  width:1px;
  height:72px;
  background:rgba(0,0,0,.08);
}

/* BRAND */

.brand-slider{
  width:100%;
  max-width:1060px;
  margin:0 auto 42px;
  overflow:hidden;
  mask-image:linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  -webkit-mask-image:linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

.brand-track{
  display:flex;
  align-items:center;
  gap:46px;
  width:max-content;
  animation:brandSlide 34s linear infinite;
}

.brand-track img{
  width:96px;
  height:34px;
  flex:0 0 auto;
  object-fit:contain;
  filter:grayscale(1);
  transition:.35s ease;
}

.brand-track img:hover{
  opacity:.78;
}

@keyframes brandSlide{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(calc(-50% - 23px)); }
}

/* REVIEW GRID */

.proof-review-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:18px;
}

.proof-review-card{
  display:grid;
  grid-template-columns:170px 1fr;
  gap:26px;
  align-items:center;
  min-height:206px;
  padding:14px;
  border-radius:30px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(0,0,0,.045);
  box-shadow:
    0 18px 42px rgba(0,0,0,.045),
    inset 0 1px 0 rgba(255,255,255,.7);
  transition:.35s ease;
}

.proof-review-card:hover{
  transform:translateY(-3px);
}

.proof-review-img{
  width:170px;
  height:178px;
  overflow:hidden;
  border-radius:20px;
}

.proof-review-img img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.proof-review-text{
  min-width:0;
}

/* REVIEW TEXT */

.content-review{
  margin:0 0 18px;
  font-size:21.5px;
  line-height:1.34;
  font-weight:700;
  letter-spacing:-0.015em;
  color:#0b0b0b;
  word-break:keep-all;
}

.review-shape-inline{
  display:inline-block;
  width:0.8em;
  height:0.8em;
  margin-right:.28em;
  vertical-align:-.12em;
  background-position:center;
  background-repeat:no-repeat;
  background-size:contain;
  transform-origin:center;
  animation:proofQuoteSpin 8s linear infinite;
  vertical-align: .03em;
}

.shape-quote-1{
  background-image:url("./img/shape_1-1.png");
}

.shape-quote-2{
  background-image:url("./img/shape_6-1.png");
  animation-duration:9s;
}

.shape-quote-3{
  background-image:url("./img/shape_2-1.png");
  animation-duration:7.5s;
}

.shape-quote-4{
  background-image:url("./img/shape_5-1.png");
  animation-duration:8.5s;
}

@keyframes proofQuoteSpin{
  from{
    transform:rotate(0deg);
  }

  to{
    transform:rotate(360deg);
  }
}

.content-profile{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.content-profile .name{
  font-size:14px;
  font-weight:600;
  color:#111;
}

.content-profile .followers{
  font-size:13px;
  color:rgba(0,0,0,.5);
}

/* =========================
   SECTION 07 TABLET
========================= */

@media (max-width:1024px){

  .proof-inner{
    max-width:920px;
  }

  .proof-review-card{
    grid-template-columns:150px 1fr;
    gap:20px;
  }

  .proof-review-img{
    width:150px;
    height:160px;
  }

  .content-review{
    font-size:19px;
  }
}

/* =========================
   SECTION 07 MOBILE
========================= */

@media (max-width:768px){

  .proof-section{
    padding:72px 16px 82px !important;
  }

  .proof-inner{
    max-width:100%;
  }

  .proof-summary-card{
    max-width:100%;
    margin-bottom:24px;
    padding:20px 0;
    gap:12px;
  }

  .proof-label{
    height:30px;
    padding:0 14px;
    margin-bottom:11px;
    font-size:13px;
    font-weight:700;
  }

  .proof-number{
    font-size:40px;
    line-height:1;
  }

  .proof-note{
    margin-top:6px;
    font-size:10px;
  }

  .proof-divider{
    height:50px;
  }

  .brand-slider{
    margin-bottom:24px;
  }

  .brand-track{
    gap:24px;
    animation-duration:30s;
  }

  .brand-track img{
    width:72px;
    height:24px;
  }

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

  .proof-review-card{
    display:grid;
    grid-template-columns:150px 1fr;
    gap:23px;
    align-items:center;
    min-height:auto;
    padding:12px;
    border-radius:16px;
    opacity:0;
    transform:translateY(24px);
    transition:
      opacity .65s ease,
      transform .65s cubic-bezier(.22,1,.36,1);
  }

  .proof-review-card.is-visible{
    opacity:1;
    transform:translateY(0);
  }

  .proof-review-img{
    width:150px;
    height:170px;
    aspect-ratio:auto;
    border-radius:12px;
  }

  .proof-review-text{
    padding:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
  }

  .content-review{
    margin-bottom:10px;
    font-size:18px;
    line-height:1.36;
    letter-spacing:-0.02em;
    word-break:keep-all;
  }

  .content-review br{
    display:none;
  }

  .review-shape-inline{
    width:1em;
    height:1em;
    margin-right:.24em;
    vertical-align:-.13em;
  }

  .content-profile .name{
    font-size:13px;
  }

  .content-profile .followers{
    font-size:12px;
  }

  .proof-review-card:nth-child(even){
    grid-template-columns:1fr 150px;
  }

  .proof-review-card:nth-child(even) .proof-review-text{
    grid-column:1;
    grid-row:1;
    margin-left:10px;
  }

  .proof-review-card:nth-child(even) .proof-review-img{
    grid-column:2;
    grid-row:1;
  }
}

/* =========================
   SECTION 07 SMALL MOBILE
========================= */

@media (max-width:441px){

  .proof-summary-card{
    margin-top:-20px;
    grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);
  }

  .proof-stat{
    min-width:0;
  }

  .proof-label{
    height:23px;
    padding:0 13px;
    font-size:11px;
  }

  .proof-number{
    display:flex;
    align-items:flex-end;
    justify-content:center;
    gap:0;
    font-size:31px;
    line-height:1;
    white-space:nowrap;
  }

  .count-up{
    flex:0 0 auto;
  }

  .proof-unit{
    flex:0 0 auto;
    margin-left:2px;
    font-size:.72em;
    line-height:1;
    white-space:nowrap;
    position:relative;
    top:-2px;
  }

  .proof-review-grid{
    gap:12px;
  }

  .proof-review-card{
    grid-template-columns:135px 1fr;
    gap:20px;
    padding:11px;
  }

  .proof-review-img{
    width:135px;
    height:155px;
    border-radius:12px;
  }

  .content-review{
    font-size:17.5px;
    line-height:1.36;
    letter-spacing:-0.02em;
  }

  .content-review br{
    display:none;
  }

  .review-shape-inline{
  width: 0.8em;
        height: 0.8em;
        margin-right: .22em;
        vertical-align: -.01em;
  }

  .content-profile .name{
    font-size:12px;
  }

  .content-profile .followers{
    font-size:12px;
  }

  .proof-review-card:nth-child(even){
    grid-template-columns:1fr 135px;
  }

  .proof-review-card:nth-child(even) .proof-review-text{
    grid-column:1;
    grid-row:1;
    margin-left:10px;
  }

  .proof-review-card:nth-child(even) .proof-review-img{
    grid-column:2;
    grid-row:1;
  }
}
/* ======================
   SECTION 08 CTA
====================== */

.cta-section{
  position:relative;
  min-height:24vh;
  background:#0b0b0b;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:74px 20px;
  overflow:hidden;
  isolation:isolate;
}

.cta-section::before,
.cta-section::after{
  content:none !important;
  display:none !important;
}

.cta-inner{
  position:relative;
  z-index:2;
  width:100%;
  max-width:720px;
  margin:0 auto;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.cta-section h2{
  margin:0 0 30px !important;
  text-align:center;
}

.cta-section h2 span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  font-size:38px;
  line-height:1.2;
}

.cta-title-icon{
  width:.78em;
  height:.78em;
  display:inline-block;
  object-fit:contain;
  flex:0 0 auto;
  margin-right:10px;

  animation:ctaArrowMove 1.8s ease-in-out infinite;
}

.cta-section .cta-main-btn{
  margin-top:0 !important;
}

.cta-inner h2,
.cta-inner .cta-main-btn{
  opacity:0;
  transform:translateY(22px);
  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.22,.61,.36,1);
}

.cta-section.is-active .cta-inner h2{
  opacity:1;
  transform:translateY(0);
      margin: 0 0px 30px !important;
}

.cta-section.is-active .cta-inner .cta-main-btn{
  opacity:1;
  transform:translateY(0);
  transition-delay:.18s;
}

/* TABLET */

@media (max-width:1024px){

  .cta-section{
    min-height:24vh;
    padding:70px 24px;
  }

  .cta-section h2 span{
    font-size:34px;
    gap:10px;
  }
}

/* MOBILE */

@media (max-width:768px){

  .cta-section{
    min-height:auto;
    padding:54px 20px 56px !important;
  }

  .cta-inner{
    max-width:100%;
  }

  .cta-section h2{
    margin-bottom:22px !important;
  }

  .cta-section h2 span{
    display:inline-flex;
    flex-wrap:nowrap;
    white-space:nowrap;
    align-items:center;
    justify-content:center;
    gap:7px;

    font-size:clamp(24px, 6.2vw, 28px) !important;
    line-height:1.25;
  }

  .cta-title-icon{
    margin-right:4px;
    flex:0 0 auto;
  }

  .cta-section .cta-main-btn{
    height:48px;
    padding:0 24px;
    font-size:16px;
  }
}

/* SMALL MOBILE */

@media (max-width:441px){

  .cta-section{
    padding:50px 20px 52px !important;
  }

  .cta-inner{
    max-width:100%;
  }

.cta-section h2 span{
  white-space:nowrap;
  font-size:22px !important;
  gap:5px;
}

  .cta-title-icon{
    margin-right:4px;
  }

  .cta-section .cta-main-btn{
    height:46px;
    padding:0 30px;
    font-size:15px;
  }
  .cta-section.is-active .cta-inner h2{
margin: 0 0px 20px !important;
}
}
/* ======================
   SECTION 09 FAQ
====================== */

.faq-section{
  min-height:auto;
  background:#f7f7f7;
  color:#000;
  padding:140px 20px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.faq-inner{
  width:100%;
  max-width:880px;
  margin:0 auto;
}

.faq-section h2{
  margin:0 0 56px;
  font-size:38px;
  line-height:1.2;
  font-weight:700;
  letter-spacing:-0.04em;
  text-align:center;
  color:#000;
}

.faq-item{
  border-bottom:1px solid rgba(0,0,0,.92);
}

.faq-item:first-of-type{
  border-top:1px solid rgba(0,0,0,.12);
}

.faq-question{
  width:100%;
  min-height:84px;
  padding:0;
  border:0;
  background:transparent;
  color:#000;

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

  text-align:left;
  cursor:pointer;

  font-family:"Pretendard",-apple-system,BlinkMacSystemFont,system-ui,sans-serif;
}

.faq-q{
  width:28px;
  height:28px;
  flex:0 0 28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding-top:1px;

  border-radius:7px;
  background:#0b0b0b;
  color:#b6ff00;

  font-size:16px;
  font-weight:600;
  font-family: "Trap", "Inter", sans-serif;
}

.faq-question strong{
  flex:1;
  min-width:0;
  margin:0;
  padding:0;

  font-family:"Pretendard",-apple-system,BlinkMacSystemFont,system-ui,sans-serif;
  font-size:22px;
  line-height:1.45;
  font-weight:700;
  letter-spacing:-0.02em;
  color:#0b0b0b;

  word-break:keep-all;
}

.faq-question i{
  position:relative;
  width:18px;
  height:18px;
  flex:0 0 18px;
  font-size:0;
  font-style:normal;
}

.faq-question i::before,
.faq-question i::after{
  content:"";
  position:absolute;
  background:#000;
  border-radius:999px;
}

.faq-question i::before{
  width:18px;
  height:2px;
  top:8px;
  left:0;
}

.faq-question i::after{
  width:2px;
  height:18px;
  top:0;
  left:8px;
  transition:.25s ease;
}

.faq-item.active .faq-question i::after{
  transform:rotate(90deg);
  opacity:0;
}

.faq-answer{
  max-height:0;
  overflow:hidden;

  padding-left:52px;
  padding-right:52px;


  font-size:17.5px;
  line-height:1.7;
  letter-spacing:-0.01em;

  transition:
    max-height .35s ease,
    padding-bottom .35s ease;

  word-break:keep-all;
  font-weight: 400;
}

.faq-answer p{
  margin:0;
}

.faq-item.active .faq-answer{
  max-height:160px;
  padding-bottom:26px;
}

/* FAQ 강조 텍스트 */

.faq-answer .faq-highlight{
  font-size:.8em;
  vertical-align:super;
  font-weight:normal;
}

.faq-answer .faq-note{
  display:block;
  margin-top:10px;

  font-size:14px;
  line-height:1.5;
  color:rgba(0,0,0,.45);
}

.faq-item:first-of-type{
  border-top:none;
}

/* ======================
   SECTION 09 TABLET
====================== */

@media (max-width:1024px){

  .faq-section{
    padding:120px 32px;
  }

  .faq-inner{
    max-width:820px;
  }

  .faq-section h2{
    margin-bottom:48px;
    font-size:34px;
  }

  .faq-question{
    min-height:80px;
    gap:20px;
  }

  .faq-question strong{
    font-size:19px;
  }

  .faq-answer{
    padding-left:48px;
    padding-right:48px;
    font-size:16.5px;
  }
}

/* ======================
   SECTION 09 MOBILE
====================== */

@media (max-width:768px){

  .faq-section{
    padding:82px 22px 96px !important;
  }

  .faq-inner{
    max-width:100%;
  }

  .faq-section h2{
    margin-bottom:36px !important;
    font-size:27px !important;
    line-height:1.2;
  }

  .faq-question{
    min-height:72px;
    gap:13px;
  }

  .faq-q{
    width:25px;
    height:25px;
    flex:0 0 25px;
    border-radius:6px;
    font-size:14px;
  }

  .faq-question strong{
    font-size:18px;
    line-height:1.45;
  }

  .faq-question i{
    width:16px;
    height:16px;
    flex:0 0 16px;
  }

  .faq-question i::before{
    width:16px;
    height:2px;
    top:7px;
  }

  .faq-question i::after{
    width:2px;
    height:16px;
    left:7px;
  }

  .faq-answer{
    padding-left:38px;
    padding-right:28px;
    font-size:16px;
    line-height:1.65;
  }

  .faq-item.active .faq-answer{
    max-height:240px;
    padding-bottom:20px;
  }

  .faq-answer .faq-note{
    margin-top:8px;
    font-size:12px;
    line-height:1.45;
  }
}

/* ======================
   SECTION 09 SMALL MOBILE
====================== */

@media (max-width:441px){

  .faq-section{
    padding:76px 20px 88px !important;
  }

  .faq-section h2{
    margin-bottom:32px !important;
    font-size:25px !important;
  }

  .faq-question{
    min-height:68px;
    gap:11px;
  }

  .faq-q{
    width:23px;
    height:23px;
    flex:0 0 23px;
    font-size:12px;
  }


  .faq-question i{
    width:15px;
    height:15px;
    flex:0 0 15px;
  }

  .faq-question i::before{
    width:16px;
    top:7px;
  }

  .faq-question i::after{
    height:16px;
    left:7px;
  }

  .faq-answer{
        padding-left: 0;
        padding-right: 0;
        font-size: 15px;
        line-height: 1.62;
  }

  .faq-item.active .faq-answer{
    max-height:260px;
    padding-bottom:18px;
  }
}
/* ======================
   FLOATING
====================== */

.floating-contact{
  position:fixed;
  right:15px;
  bottom:10px;
  z-index:9999;
}

.floating-contact img{
  width:70px;
  display:block;
  transition:.3s ease;
}

.floating-contact:hover img{
  transform:translateY(-6px) scale(1.05);
}

@media (max-width:441px){
  .floating-contact img{
  width:65px;

}}

/* FLOATING CONTACT BUTTON MOTION */

.floating-contact{
  animation:contactFloat 3.2s ease-in-out infinite;
}

.floating-contact img{
  display:block;
  transition:transform .25s ease;
}

.floating-contact:hover img{
  transform:scale(1.06);
}

@keyframes contactFloat{
  0%,100%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-7px);
  }
}

/* ======================
   FOOTER
====================== */


.site-footer{
  position:relative;
  z-index:30;

  background:#f5f5f5;
  border-top:1px solid #e5e7eb;

  padding:58px 40px 42px;

  color:#6b7280;
  overflow:hidden;
}

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

  width:min(1150px,100%);
  margin:0 auto;
}

/* LOGO */

.footer-logo{
  width:96px;
  display:block;

  margin-bottom:30px;

  filter:brightness(0);
  opacity:.92;
}

/* INFO */

.footer-info{
  display:flex;
  flex-direction:column;
  gap:5px;
}

.footer-info p{
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
    color: #7d7d7d;
    letter-spacing: -0.01em;
}

.footer-info a{
color:  #7d7d7d;
    font-weight: 600;
    text-decoration: none;
}

.footer-info .is-strong{
font-weight: 600;
    color:#0b0b0b;
}

.footer-info a.footer-mail {
font-weight: 600;
    color: #0b0b0b;
}

.footer-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 16px; /* 라인과 텍스트 간격 */
}

.footer-links::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08); /* 아주 은은한 라인 */
}



/* LINKS */

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

  margin-top:24px;
}

.footer-links a,
.footer-links span{
  font-size:13px;
  font-weight:600;
  letter-spacing:-0.03em;

  color:#0b0b0b;
  text-decoration:none;
}

.footer-bar{font-weight: 400 !important;   opacity: 0.6;   }

/* COPY */

.footer-copy{
  margin-top:12px;

  font-size:12px;
  line-height:1.6;
  letter-spacing:-0.01em;

  color:#9b9b9b;
}


/* FOOTER MOBILE */

@media (max-width:768px){
  .site-footer{
    padding:44px 22px 38px;
  }

  .footer-logo{
    width:104px;
    margin-bottom:22px;
  }

  .footer-info p{
    font-size:12px;
    line-height:1.6;
  }

  .footer-links{
    margin-top:24px;
    gap:9px;
  }

  .footer-links a,
  .footer-links span{
    font-size:13px;
  }

  .footer-copy{
    margin-top:20px;
    font-size:11px;
    line-height:1.5;
  }

  .floating-contact{
    right:12px;
    bottom:14px;
  }


}

/* =========================
   SECTION 03~07 VERTICAL SPACE
========================= */

.process-section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
}

.process-inner{
  position:relative;
  z-index:2;
}

.ready-section,
.focus-section,
.growth-section,
.process-section,
.proof-section{
  padding-top:170px;
  padding-bottom:170px;
  align-items:flex-start;
}

@media (max-width:768px){
  .ready-section,
  .focus-section,
  .growth-section,
  .process-section,
  .proof-section{
    padding-top:60px !important;
    padding-bottom:60px !important;
  }
}

/* ======================
   COMMON SECTION TITLES
====================== */

.ready-section h2,
.focus-section h2,
.growth-section h2,
.process-section h2,
.proof-section h2,
.cta-section h2{
  font-size:30px !important;
  line-height:1.3 !important;
  font-weight:300 !important;
  letter-spacing:-0.03em !important;
  margin:0 20px 70px !important;
  text-align:center !important;
}

.ready-section h2 span,
.focus-section h2 span,
.growth-section h2 span,
.process-section h2 span,
.proof-section h2 span,
.cta-section h2 span{
  display:block !important;
  font-size:38px !important;
  line-height:1.25 !important;
  font-weight:700 !important;
  margin-top:3px !important;
}

/* ======================
   FINAL RESPONSIVE OVERRIDES
====================== */

img{
  max-width:100%;
}

.bg-card{
  transform:translateZ(0);
  backface-visibility:hidden;
}

@media (max-width:1024px){
  .focus-inner,
  .process-inner,
  .proof-inner{
    max-width:920px;
  }

  .focus-card{
    padding:26px 28px;
  }

  .process-steps{
    gap:22px;
  }


}

@media (max-width:768px){
  html{
    font-size:16px;
    scroll-snap-type:none;
  }

  body{
    width:100%;
    overflow-x:hidden;
  }

  .snap-section{
    padding-top:70px;
    padding-bottom:70px ;
  }

  .top-logo{
    top:18px;
    left:18px;
  }

  .top-logo img{
    width:92px;
  }

  .cta-main-btn{
    padding:14px 28px;
    font-size:15px;
    border-radius:999px;
  }

  .hero-section{
    height:100svh;
    min-height:640px;
    padding:0 18px !important;
  }

  .card-wrapper img{
    border-radius:22px;
  }

  .overlay{
    background:rgba(0,0,0,.48);
  }

  .ready-section h2,
  .focus-section h2,
  .growth-section h2,
  .process-section h2,
  .proof-section h2,
  .cta-section h2{
    margin:0 12px 50px !important;
    font-size:24px !important;
    line-height:1.26 !important;
    font-weight:300 !important;
    letter-spacing:-0.04em !important;
    word-break:keep-all;
  }

  .ready-section h2 span,
  .focus-section h2 span,
  .growth-section h2 span,
  .process-section h2 span,
  .proof-section h2 span,
  .cta-section h2 span,
  .faq-section h2{
    font-size:32px !important;
    line-height:1.18 !important;
    font-weight:700 !important;
  }
}

@media (max-width:640px){
  .ready-section h2,
  .focus-section h2,
  .growth-section h2,
  .process-section h2,
  .proof-section h2,
  .cta-section h2{
    margin:0 12px 50px !important;
    font-size:24px !important;
    line-height:1.6 !important;
    font-weight:400 !important;
    letter-spacing:-0.04em !important;
    word-break:keep-all;
  }

  .ready-section h2 span,
  .focus-section h2 span,
  .growth-section h2 span,
  .process-section h2 span,
  .proof-section h2 span,
  .cta-section h2 span{
    font-size:32px !important;
    line-height:1.18 !important;
    font-weight:700 !important;
  }
}

@media (max-width:441px){
  .hero-text .sub{
    font-size:18px;
    font-weight:500;
    letter-spacing:-0.02rem;
  }

  .ready-section h2,
  .focus-section h2,
  .growth-section h2,
  .process-section h2,
  .proof-section h2,
  .cta-section h2{
    font-size:22px !important;
  }

  .ready-section h2 span,
  .focus-section h2 span,
  .growth-section h2 span,
  .process-section h2 span,
  .proof-section h2 span,
{
    font-size:32px !important;
  }

    .cta-section h2 span,
      .faq-section h2{
    font-size:30px !important;
  }
}

.growth-section h2{margin-bottom: 50px !important;}

/* ======================
   SNAP ONLY SECTION 01~03
====================== */

.snap-section{
  scroll-snap-align:none;
  scroll-snap-stop:normal;
}

.hero-section,
.stats-v2-section,
.ready-section{
  scroll-snap-stop:always;
}

@font-face{
  font-family:"Trap";
  src:url("./font/Trap-ExtraBold.otf") format("opentype");
  font-weight:800;
  font-style:normal;
  font-display:swap;
}

@media (max-width:768px){

  .hero-section,
  .stats-v2-section{
    height:auto !important;
    min-height:100dvh !important;
    scroll-snap-align:start;
    scroll-snap-stop:always;
  }

  .ready-section{
    scroll-snap-align:none;
  }

}


#ch-plugin-entry{
  display:none !important;
}

.overlay {
  pointer-events: none !important;
}

/* 클릭 이벤트가 다른 레이어에 가려지지 않게 강제 설정 */
#contactBtn {
  position: fixed !important;
  z-index: 999999 !important;
  pointer-events: auto !important;
  touch-action: manipulation !important; /* 모바일 터치 최적화 */
}