@charset "UTF-8";

/* ==========================================================================
   LOC-10 PREMIUM 
   ========================================================================== */

@font-face {
  font-family: 'Jalnan Gothic';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_231029@1.1/JalnanGothic.woff') format('woff');
  font-weight: normal;
  font-display: swap;
}

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

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

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #000;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

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

p {
  margin: 0;
}

.loc10_landing {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
}

/* -- scroll reveal animation ---------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
  .js-reveal,
  .js-reveal-pop,
  .js-reveal-left,
  .js-reveal-right {
    opacity: 0;
    transition: opacity var(--reveal-duration, 0.7s) cubic-bezier(0.16, 0.84, 0.44, 1),
                transform var(--reveal-duration-transform, 0.45s) cubic-bezier(0.16, 0.84, 0.44, 1),
                box-shadow 0.25s ease;
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
  }

  .js-reveal { transform: translateY(40px); }

  .js-reveal-pop { transform: translateY(26px) scale(0.92); }

  .js-reveal-left { transform: translateX(-48px); }

  .js-reveal-right { transform: translateX(48px); }

  .js-reveal.in-view,
  .js-reveal-pop.in-view,
  .js-reveal-left.in-view,
  .js-reveal-right.in-view {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }

  /* hero title gets its own bouncier, more prominent entrance */
  .js-hero-title {
    opacity: 0;
    transform: translateY(30px) scale(0.82);
    transition: opacity var(--reveal-duration, 0.75s) cubic-bezier(0.34, 1.56, 0.64, 1),
                transform var(--reveal-duration-transform, 0.75s) cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: var(--reveal-delay, 0s);
  }

  .js-hero-title.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* -- card hover polish -------------------------------------------------
   No separate `transition` declared here on purpose: these elements all
   receive .js-reveal-pop via JS, which already declares the
   opacity/transform/box-shadow transition (plus stagger delay). Redeclaring
   `transition` here would silently replace that whole value instead of
   merging with it. */

.tech_step:hover,
.func_card:hover,
.chart_card:hover,
.diff_patent:hover,
.reco_check:hover,
.skin_stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(110, 91, 75, 0.18);
}

.origin_card:hover {
  transform: translateY(-6px);
}

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

.consumer_item:hover .consumer_photo {
  transform: translateY(-6px) scale(1.03);
}
textarea{font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;}
/* -- shared section heading block ---------------------------------------- */

.tit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: center;
  word-break: keep-all;
}

.eyebrow_group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.layer_deco {
  width: 170px;
  height: 14.66px;
}

.layer_deco img {
  width: 100%;
  height: 100%;
}

.eyebrow {
  display: flex;
  align-items: flex-start;
  padding: 6px 14px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid #e7d6d0;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.05);
}

.eyebrow p {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: capitalize;
  color: #a15a09;
  white-space: nowrap;
  word-break: keep-all;
}

.title {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 4vw, 50px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #000;
  text-align: center;
  word-break: keep-all;
}

.subtitle {
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 1.6vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #181924;
  text-align: center;
  word-break: keep-all;
}

@media (min-width: 768px) {
  .tit { gap: 24px; }
  .layer_deco { width: 232px; height: 20px; }
  .eyebrow { padding: 8px 14px; }
  .eyebrow p { font-size: 20px; }
}

/* ==========================================================================
   01_header
   ========================================================================== */

.hero_header {
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px clamp(20px, 3vw, 40px);
}

.hero_logo {
  flex-shrink: 0;
  width: clamp(60px, 5vw, 89.231px);
  height: clamp(54px, 4.5vw, 80px);
}

.hero_logo img {
  width: 100%;
  height: 100%;
}

.hero_nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 50px;
  padding: 10px 18px;
  box-shadow: 0 4px 2px #e5bed8;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero_btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 20px rgba(210, 38, 107, 0.35);
}

.hero_btn:active {
  transform: translateY(0) scale(0.98);
}

.hero_btn_fill {
  gap: 8px;
  background: #d2266b;
  color: #fff;
}

.hero_btn_fill:hover {
  background: #b81f5c;
}

.hero_btn_strong {
  font-family: 'Pretendard', sans-serif;
  font-weight: 800;
  font-size: clamp(15px, 1.2vw, 24px);
}

.hero_btn_num {
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 24px);
}

.hero_btn_outline {
  background: #fff;
  border: 1px solid #d2266b;
  font-weight: 700;
  font-size: clamp(13px, 1vw, 20px);
  color: #d2266b;
}

.hero_btn_outline:hover {
  background: #fdf1f6;
}

@media (min-width: 1200px) {
  .hero_btn_fill { width: 280px; }
  .hero_btn_outline { width: 198px; }
}

/* ==========================================================================
   01_HERO
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
  padding: 140px clamp(20px, 3vw, 40px) 60px;
  display: flex;
  align-items: center;
  min-height: 640px;
}

.hero_bg {
  position: absolute;
  inset: 0;
  background: url(../images/hero-bg.png) center / cover no-repeat;
}

.hero_bg_photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  -webkit-mask-image: url(../images/hero-bg-mask.svg);
  mask-image: url(../images/hero-bg-mask.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: center;
  mask-position: center;
}

.hero_bg_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero_ring {
  position: absolute;
}

.hero_ring_right {
  right: -6%;
  top: -6%;
  width: 35%;
  max-width: 666px;
  aspect-ratio: 1;
}

.hero_ring_left {
  left: 9%;
  bottom: -12%;
  width: 32%;
  max-width: 607px;
  aspect-ratio: 1;
}

.hero_ring img {
  width: 100%;
  height: 100%;
}

.hero_giftbox {
  position: absolute;
  right: 3%;
  bottom: 4%;
  width: 29%;
  max-width: 558px;
  aspect-ratio: 558 / 573;
}

.hero_giftbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* -- hero content ---------------------------------------------------- */

.hero_content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.hero_text_col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  flex: 1 1 380px;
  max-width: 500px;
}

.hero_heading_group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.hero_brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero_brand p {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 4.5vw, 80px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #e04573;
  white-space: nowrap;
}

.hero_eng {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.hero_eng_underline {
  display: block;
  width: 100%;
  max-width: 386px;
  height: auto;
  aspect-ratio: 386 / 28;
}

.hero_eng_underline img {
  width: 100%;
  height: 100%;
}

.hero_eng p {
  font-family: 'Ponomar', serif;
  font-weight: 400;
  font-size: clamp(18px, 1.7vw, 30px);
  line-height: 1.45;
  color: #a15a09;
  white-space: nowrap;
}

.hero_catch {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero_catch p {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 2.6vw, 44px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #2c191d;
  white-space: nowrap;
}

.hero_catch_accent {
  color: #77480d;
}

.hero_info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 500px;
}

.hero_desc {
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.15vw, 20px);
  line-height: 1.4;
  color: #2a2526;
}

.hero_badge {
  display: flex;
  align-items: center;
  padding: 11px 25px;
  border-radius: 50px;
  background: #e04574;
  overflow: hidden;
}

.hero_badge p {
  font-weight: 700;
  font-size: clamp(14px, 1.15vw, 20px);
  line-height: 1.4;
  letter-spacing: -0.4px;
  color: #fff;
}

/* ==========================================================================
   01_HERO-photo (floating visual)
   ========================================================================== */

.hero_photo {
  position: relative;
  flex: 0 1 500px;
  width: 100%;
  min-width: 260px;
  max-width: 500px;
  aspect-ratio: 800 / 900;
  z-index: 2;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .hero_photo {
    flex-basis: 650px;
    max-width: 850px;
  }
}

.hero_photo_deer {
  position: absolute;
  left: -5%;
  top: 18.8%;
  width: 66%;
}

.hero_photo_deer_img {
  position: absolute;
  left: 0;
  top: 0.75%;
  width: 100%;
  aspect-ratio: 487.557 / 533.507;
  object-fit: cover;
  pointer-events: none;
}

.hero_photo_deer_img_blur {
  top: 0;
  filter: blur(6.495px);
}

.hero_photo_model {
  position: absolute;
  left: 29%;
  top: 1.5%;
  width: 65%;
  aspect-ratio: 479.786 / 719.679;
}

.hero_photo_model img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero_photo_rose {
  position: absolute;
  left: 9%;
  top: 59.6%;
  width: 33%;
  aspect-ratio: 245.015 / 267.687;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero_photo_rose img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero_photo_cluster {
  position: absolute;
  left: 40%;
  top: 47%;
  width: 80%;
  aspect-ratio: 611 / 409;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 10px 16px rgba(110, 60, 90, 0.25));
}

.hero_photo_cluster img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  transform: rotate(-3deg);
}

/* ==========================================================================
   02_PROBLEM
   ========================================================================== */

.problem {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #FFCFC3, #fefefd);
  padding: 80px clamp(20px, 3vw, 40px);
}

.problem_bg {
  position: absolute;
  inset: 0;
}

.problem_pattern {
  position: absolute;
  inset: 0;
  overflow: hidden;
  -webkit-mask-image: url(../images/bg-pattern-mask.svg);
  mask-image: url(../images/bg-pattern-mask.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: center;
  mask-position: center;
}

.problem_pattern_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  pointer-events: none;
}

.problem_ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  max-width: 646px;
  aspect-ratio: 1;
}

.problem_ring img {
  width: 100%;
  height: 100%;
}

.problem_content {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.problem_body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  width: 100%;
  max-width: 696px;
}

.problem_divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.problem_divider_line {
  display: block;
  width: 100px;
}

.problem_divider_line img,
.problem_divider_dot img {
  width: 100%;
  height: 100%;
}

.problem_divider_dot {
  display: block;
  width: 8px;
  height: 8px;
}

.problem_lead {
  font-weight: 700;
  font-size: clamp(16px, 1.5vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #1c1c1c;
  text-align: center;
}

.problem_lead strong {
  font-weight: 700;
}

.problem_card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: clamp(24px, 3.5vw, 56px) clamp(20px, 5vw, 80px);
  border-radius: 20px;
  background: #fff;
  border: 1px solid #ffaccd;
  box-shadow: 0 12px 20px rgba(110, 91, 75, 0.15);
}

.problem_card p {
  font-weight: 700;
  font-size: clamp(18px, 2vw, 32px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #c6154a;
  text-align: center;
}

.problem_closing {
  padding-top: 30px;
  font-weight: 700;
  font-size: clamp(16px, 1.5vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #000;
  text-align: center;
}

/* ==========================================================================
   03_NEW_ORIGIN
   ========================================================================== */

.origin {
  position: relative;
  overflow: hidden;
  background: url(../images/origin-bg.png) center / cover no-repeat;
  padding: 80px clamp(20px, 3vw, 40px);
}

.origin_content {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}


.origin_body {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}

.origin_cards {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}

.origin_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 464px;
  max-width: 100%;
  padding: 30px 28px;
  border-radius: 20px;
  background: #fffffe;
  border: 1px solid #edc096;
  overflow: hidden;
}

.origin_card_highlight {
  width: 498px;
  max-width: 100%;
}

.origin_card_tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 39px;
  border-radius: 50px;
}

.origin_card_tag_outline {
  background: #fff;
  border: 1px solid #a9a9a9;
}

.origin_card_tag_outline p {
  font-family: 'Jalnan Gothic', sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.36px;
  color: #898a8f;
  white-space: nowrap;
}

.origin_card_tag_fill {
  background: #7b2945;
}

.origin_card_tag_fill p {
  font-family: 'Jalnan Gothic', sans-serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.48px;
  color: #fff;
  white-space: nowrap;
}

.origin_card_img {
  width: 200px;
  height: 224px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}



.origin_card:not(.origin_card_highlight) .origin_card_img img {
  object-position: center center;
  opacity: 0.8;
}

.origin_card_highlight .origin_card_img img {
  object-position: center center;
  transform-origin: center center;
}

.origin_card_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  list-style: none;
}

.origin_card_list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Pretendard', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.16px;
  color: #1c1c1c;
  white-space: nowrap;
}

.origin_card_list li img {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}

.origin_card_highlight .origin_card_list li {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.4px;
}

.origin_card_highlight .origin_card_list li strong {
  font-weight: 700;
}

.origin_quote {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50px;
  border: 2px solid #FFACCD;
  background: #FFF;
  box-shadow: 0 12px 40px 0 rgba(110, 91, 75, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.origin_quote img {
  width: 50%;
  height: 50%;
}

.origin_supporting {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.origin_desc {
  width: 100%;
  max-width: 980px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #505050;
}

.origin_desc strong {
  font-weight: 700;
}

.origin_closing {
  width: 100%;
  max-width: 980px;
  font-family: 'Jalnan Gothic', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 24px);
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: #181924;
}

.origin_closing strong {
  font-weight: 400;
  color: #7b2945;
}

/* ==========================================================================
   05_NP-2007
   ========================================================================== */

.np2007 {
  position: relative;
  overflow: hidden;
  background: url(../images/np2007-bg.png) center / cover no-repeat;
  display: flex;
  justify-content: center;
  padding: 60px clamp(20px, 3vw, 40px);
}


.np2007_content {
  position: relative;
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}


.np2007_body {
  position: relative;
  width: 100%;
  max-width: 696px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.np2007_photo {
  width: clamp(180px, 22vw, 322px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 9.908px 33.026px rgba(110, 91, 75, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.np2007_photo img {
  width: 100%;
  height: auto;
}

.np2007_name {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 44px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #7b2945;
  text-align: center;
  word-break: keep-all;
}

.np2007_badge {
  width: 100%;
  max-width: 443px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  background: #620b25;
}

.np2007_badge p {
  font-weight: 800;
  font-size: clamp(16px, 1.8vw, 30px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
}

.np2007_desc {
  width: 100%;
  font-weight: 400;
  font-size: clamp(15px, 1.5vw, 24px);
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: #505050;
  text-align: center;
}

.np2007_desc strong {
  font-weight: 700;
  color: #620b25;
}

/* ==========================================================================
   05_TECHNOLOGY
   ========================================================================== */

.tech {
  position: relative;
  overflow: hidden;
  background: url(../images/tech-bg.png) center / cover no-repeat;
  padding: 60px clamp(20px, 3vw, 40px);
}


.tech_content {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin: 0 auto;
}

.tech_heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.tech_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.tech_row {
  display: contents;
}

.tech_step {
  width: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 10px;
  background: #fff;
  border: 1px solid #edc096;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(110, 91, 75, 0.15);
}

.tech_icon {
  width: 100%;
  max-width: 128px;
  height: auto;
  aspect-ratio: 128 / 120;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech_icon img {
  display: block;
  max-width: 100%;
  height: auto;
}

.tech_icon_select img { width: 150px; aspect-ratio: 150 / 100; }
.tech_icon_wash img { width: 128px; aspect-ratio: 1; }
.tech_icon_crush img { width: 150px; aspect-ratio: 1; }
.tech_icon_extract img { width: 130px; aspect-ratio: 1; }
.tech_icon_concentrate img { width: 144px; aspect-ratio: 1; }
.tech_icon_enzyme img { width: 219px; aspect-ratio: 219 / 146; }
.tech_icon_dry img { width: 140px; aspect-ratio: 1; }
.tech_icon_grind img { width: 120px; aspect-ratio: 1; }

.tech_step p {
  font-weight: 700;
  font-size: clamp(15px, 1.4vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #181924;
  text-align: center;
  white-space: nowrap;
}

.tech_closing {
  margin-top: 20px;
  font-weight: 800;
  font-size: clamp(18px, 1.8vw, 30px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #000;
  text-align: center;
}

.tech_closing strong {
  font-weight: 800;
  color: #a41c4b;
}

/* ==========================================================================
   06_FUNCTION
   ========================================================================== */

.func {
  position: relative;
  overflow: hidden;
  background: url(../images/func-bg.png) center / cover no-repeat;
  padding: 60px clamp(20px, 3vw, 40px);
}

.func_content {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin: 0 auto;
}


.func_body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.func_cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  width: 100%;
}

.func_card {
  width: 555px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: clamp(18px, 2vw, 30px);
  background: #fff;
  border: 1px solid #edc096;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(110, 91, 75, 0.15);
}

.func_card_photo {
  width: 100%;
  max-width: 495px;
  aspect-ratio: 495 / 330;
  overflow: hidden;
  border-radius: 20px;
}

.func_card_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.func_card_text {
  font-weight: 700;
  font-size: clamp(16px, 1.5vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #000;
  text-align: center;
}

.func_card_text_multi {
  width: 100%;
  max-width: 410px;
}

.func_closing {
  font-weight: 800;
  font-size: clamp(18px, 1.8vw, 30px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #181924;
  text-align: center;
  width: 100%;
  max-width: 700px;
  word-break: keep-all;
}

/* ==========================================================================
   07_기술혁신
   ========================================================================== */

.tech2 {
  position: relative;
  overflow: hidden;
  background: url(../images/tech2-bg.png) center / cover no-repeat;
  padding: 60px clamp(20px, 3vw, 40px);
}

.tech2_content {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin: 0 auto;
}

.tech2_body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  overflow: hidden;
}

.tech2_visual {
  position: relative;
  width: 100%;
  max-width: 1400px;
  aspect-ratio: 1400 / 461;
}

.tech2_img {
  position: absolute;
}

.tech2_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.tech2_img_antler {
  left: 28.3%;
  top: 5.6%;
  width: 40%;
}
.tech2_img_antler img { object-position: center top; }

.tech2_img_tea {
  left: 32.6%;
  top: 69.4%;
  width: 34.7%;
  aspect-ratio: 486 / 167;
}
.tech2_img_tea img { object-position: center bottom; }


.tech2_badge {
  position: absolute;
  left: 65%;
  top: 0%;

  max-width: 152px;
  aspect-ratio: 152 / 152;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #fff;
  border: 2px solid #edc096;
  border-radius: 100px;
  box-shadow: 0 12px 20px rgba(110, 91, 75, 0.15);
  text-align: center;
  padding: 8px;
}

.tech2_badge_tit {
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 32px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #9f5918;
}

.tech2_badge_desc {
  font-weight: 700;
  font-size: clamp(11px, 0.8vw, 14px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #9f5918;
}

.tech2_message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  word-break: break-all;
}

.tech2_highlight {
  width: 100%;
  max-width: 798px;
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e7f2b7;
  border-radius: 50px;
  padding: 12px 20px;
  word-break: break-all;
}

.tech2_highlight p {
  font-weight: 800;
  font-size: clamp(16px, 1.5vw, 30px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #181924;
  text-align: center;
  word-break: break-all;
}

.tech2_highlight p span { color: #7b2945; }

.tech2_desc {
  font-weight: 400;
  font-size: clamp(16px, 1.35vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #505050;
  text-align: center;
  word-break: keep-all;
}

.tech2_desc strong { font-weight: 700; }

/* ==========================================================================
   08_SKIN_CHECK
   ========================================================================== */

.skin {
  position: relative;
  overflow: hidden;
  background: url(../images/skin-bg.png) center / cover no-repeat;
  padding: 60px clamp(20px, 3vw, 40px);
}


.skin_content {
  position: relative;
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin: 0 auto;
}


.skin_body {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  width: 100%;
}

.skin_photo {
  width: 508px;
  max-width: 100%;
  aspect-ratio: 508 / 521;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 12px 20px rgba(110, 91, 75, 0.15);
}

.skin_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  pointer-events: none;
}

.skin_info {
  width: 474px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.skin_stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.skin_stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 20px;
  background: #fff;
  border: 1px solid #edc096;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(110, 91, 75, 0.15);
}

.skin_stat_label {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.5vw, 24px);
  letter-spacing: -0.02em;
  color: #2a2526;
}

.skin_stat_num {
  font-family: 'Pretendard', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: 1.4;
  color: #7b2945;
}

.skin_stat_num span {
  font-weight: 400;
}

.skin_note {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: clamp(15px, 1.5vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-align: center;
}

.skin_note_strong {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  color: #181924;
}

.skin_note_reg {
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  color: #2a2526;
}

/* ==========================================================================
   09_7_INDICATORS
   ========================================================================== */

.indi {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f9eae5 0%, #fcfcfc 70%, #fefefe 100%);
  padding: 60px clamp(20px, 3vw, 40px);
}


.indi_content {
  position: relative;
  width: 100%;
  max-width: 772px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.indi_title {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #7b2945;
  text-align: center;
}

.indi_diagram {
  position: relative;
  width: 100%;
  max-width: 772px;
  aspect-ratio: 772 / 770;
}

.indi_petal {
  position: absolute;
  pointer-events: none;
}

.indi_petal img {
  display: block;
  width: 100%;
  height: 100%;
}

.indi_petal_1 { left: 28.11%; top: 0%;     width: 44.56%; height: 38.18%; }
.indi_petal_2 { left: 53.63%; top: 4.29%;  width: 43.39%; height: 43.77%; }
.indi_petal_3 { left: 61.27%; top: 30.78%; width: 38.73%; height: 46.36%; }
.indi_petal_4 { left: 46.37%; top: 55.19%; width: 46.89%; height: 44.68%; }
.indi_petal_5 { left: 6.87%;  top: 55.58%; width: 46.76%; height: 44.42%; }
.indi_petal_6 { left: 0.13%;  top: 31.69%; width: 38.99%; height: 45.71%; }
.indi_petal_7 { left: 2.72%;  top: 3.90%;  width: 44.43%; height: 43.51%; }

.indi_dial {
  position: absolute;
  left: 34.2%;
  top: 32.86%;
  width: 31.1%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3a5a5 25%, #e08383 75%);
  box-shadow: 0 8px 8px rgba(212, 126, 126, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.indi_dial p {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 44px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

.indi_badge {
  position: absolute;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  background: #ae5454;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.25), 0 0 5px #f03b4a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.indi_badge p {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  white-space: nowrap;
}

.indi_badge_1 { left: 47.80%; top: 0.91%; }
.indi_badge_2 { left: 80.18%; top: 14.81%; }
.indi_badge_3 { left: 92.10%; top: 51.04%; }
.indi_badge_4 { left: 70.60%; top: 85.45%; }
.indi_badge_5 { left: 23.45%; top: 85.45%; }
.indi_badge_6 { left: 3.24%;  top: 52.60%; }
.indi_badge_7 { left: 14.51%; top: 16.10%; }

.indi_item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 118px;
}

.indi_item p {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #5c3e35;
  text-align: center;
  white-space: nowrap;
}

.indi_icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.indi_item_1 { left: 50%; top: 10%; transform: translateX(-50%); }
.indi_item_1 .indi_icon_water { width: 40px; height: 51px; }

.indi_item_2 { left: 64.51%; top: 18.44%; }
.indi_item_2 .indi_icon_balance { width: 52px; height: 42px; }

.indi_item_3 { left: 73.70%; top: 43.25%; }
.indi_item_3 .indi_icon_shield { width: 40px; height: 50px; }

.indi_item_4 { left: 57.51%; top: 67.53%; }
.indi_item_4 .indi_icon_waves { width: 55px; height: 26px; }

.indi_item_5 { left: 27.20%; top: 67.53%; }
.indi_item_5 .indi_icon_eye { width: 118px; height: 55px; }

.indi_item_6 { left: 9.84%; top: 42.73%; }
.indi_item_6 .indi_icon_elasticity {
  flex-direction: column;
  align-items: center;
  gap: 3px;
  width: 52px;
  height: 52px;
}
.indi_icon_arrows {
  display: flex;
  gap: 9px;
}
.indi_icon_arrows img {
  width: 11px;
  height: 15px;
}
.indi_icon_wave {
  width: 34px;
  height: 6px;
  display: block;
}

.indi_item_7 { left: 17.75%; top: 17.40%; }
.indi_item_7 .indi_icon_search { width: 38px; height: 38px; }
.indi_item_7 .indi_icon_search img { width: 34px; height: 34px; }

/* -- mobile fallback: simple 2-column list instead of the wheel --------- */

.indi_mobile_list {
  display: none;
}

/* ==========================================================================
   09_7_INDICATORS_2 (chart grid)
   ========================================================================== */

.chart {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fdfdfd 0%, #faf1ec 50%, #FAEDE8 100%);
  padding: 60px clamp(20px, 3vw, 40px);
}



.chart_ellipse { position: absolute; }
.chart_ellipse_right { right: -30%; top: -1%; width: 80%; max-width: 1528px; aspect-ratio: 1; }
.chart_ellipse_left { left: -28%; top: 4%; width: 72%; max-width: 1388px; aspect-ratio: 1; }

.chart_grid {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 16px;
  row-gap: 50px;
}

.chart_card_center { grid-column: 2; }

.chart_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.chart_card_tit {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.3vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #7b2945;
  text-align: center;
}

.chart_card_img {
  width: 100%;
  aspect-ratio: 456 / 304;
  background: #FBF9F9;
  box-shadow: 0 12px 40px rgba(110, 91, 75, 0.15);
  border-radius: 12px;
}

.chart_card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.chart_card_stat {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.1vw, 20px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #27272d;
  text-align: center;
}

/* ==========================================================================
   10_DIFFERENTIATION
   ========================================================================== */

.diff {
  position: relative;
  overflow: hidden;
  background: url(../images/diff-bg.png) center / cover no-repeat;
  padding: 60px clamp(20px, 3vw, 40px);
}


.diff_content {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin: 0 auto;
}


.diff_body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.diff_patents {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  width: 100%;
}

.diff_patent {
  width: 670px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: clamp(24px, 3vw, 50px) 26px;
  background: #fff;
  border: 1px solid #edc096;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(110, 91, 75, 0.15);
}

.diff_patent_num {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.5vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #000;
  text-align: center;
}

.diff_patent_desc {
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 20px);
  line-height: 1.4;
  color: #2a2526;
  text-align: center;
}

.diff_patent_img {
  width: 224px;
  max-width: 60%;
  aspect-ratio: 224 / 280;
  margin-top: 20px;
}

.diff_patent_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.diff_closing {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.diff_closing_reg {
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.5vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #2a2526;
  width: 100%;
  max-width: 700px;
}

.diff_closing_strong {
  font-family: 'Pretendard', sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 1.8vw, 30px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #7b2945;
  width: 100%;
  max-width: 700px;
}

/* ==========================================================================
   11_CONSUMER_MESSAGE
   ========================================================================== */

.consumer {
  position: relative;
  overflow: hidden;
  background: url(../images/consumer-bg.png) center / cover no-repeat;
  padding: 60px clamp(20px, 3vw, 40px);
}


.consumer_content {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin: 50px auto 0px;
}

.consumer_rows {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.consumer_row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.consumer_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 313px;
  max-width: 40vw;
  min-width: 140px;
}

.consumer_photo {
  width: 100%;
  aspect-ratio: 250.4 / 224;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 0.8px solid #e38a65;
  box-shadow: 0 14px 28px -10px rgba(0, 0, 0, 0.08);
}

.consumer_photo_tint { background: #fef5f2; }

.consumer_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.consumer_item p {
  font-weight: 700;
  font-size: clamp(16px, 1.3vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #181924;
  text-align: center;
}

.consumer_arrow {
  width: 60px;
  aspect-ratio: 90 / 50.072;
  flex-shrink: 0;
}

.consumer_arrow img {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   12_PRODUCT_HERO
   ========================================================================== */

.phero {
  position: relative;
  overflow: hidden;
  background: url(../images/phero-bg.png) center / cover no-repeat;
  padding: 60px clamp(20px, 3vw, 40px);
}


.phero_content {
  width: 100%;
  max-width: 1038px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin: 30px auto 0;
}

.phero_photo {
  width: 323px;
  max-width: 100%;
  aspect-ratio: 323 / 400;
  flex-shrink: 0;
}

.phero_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.phero_info {
  width: 656px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.phero_brand {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 2.4vw, 40px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #7b2945;
  white-space: nowrap;
}

.phero_info_group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.phero_desc {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.5vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #181924;
}

.phero_badge {
  display: flex;
  max-width: 100%;
  padding: 11px 25px;
  border-radius: 15px;
  background: #e04574;
}

.phero_badge p {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.2vw, 20px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #fff;
}

.phero_list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.phero_list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.35vw, 22px);
  line-height: 1.4;
  color: #2a2526;
}

.phero_dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  background: url(../images/product-hero-dot.svg) center / cover no-repeat;
}

/* ==========================================================================
   13_RECOMMEND
   ========================================================================== */

.reco {
  position: relative;
  overflow: hidden;
  background: url(../images/reco-bg.png) center / cover no-repeat;
  padding: 80px clamp(20px, 3vw, 40px);
}

.reco_content {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}


.reco_layer_deco { width: 170px; height: 14.66px; }
.reco_layer_deco img { width: 100%; height: 100%; }



.reco_title span { color: #c6154a; }

.reco_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.reco_check {
  position: relative;
  width: 824px;
  max-width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e4b7c5;
  border-radius: 10px;
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.05);
  padding: 12px 16px 12px 57px;
}

.reco_check_box {
  position: absolute;
  left: 21px;
  top: 24px;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 3px solid #c6154a;
  border-radius: 2px;
}

.reco_check_icon {
  position: absolute;
  left: 21px;
  top: 10px;
  width: 41px;
  height: 36px;
}

.reco_check p {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.5vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #2a2526;
}

/* ==========================================================================
   14_RECOMMEND_FORM
   ========================================================================== */

.apply {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F8EFE9 0%, #ead7d9 50%, #dbbec8 100%);
  padding: 80px clamp(20px, 3vw, 40px) 100px;
}


.apply_promo {
  position: relative;
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.apply_mascot {
  position: relative;
  width: 100%;
  max-width: 493px;
  aspect-ratio: 493 / 208;
}


.apply_promo_tit {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 1.8vw, 30px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #7b2945;
  text-align: center;
  width: 100%;
  word-break: keep-all;
}

.apply_promo_desc {
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #2a2526;
  text-align: center;
  width: 100%;
}

.apply_promo_desc strong {
  font-weight: 700;
  color: #000;
}

.apply_form {
  position: relative;
  width: 100%;
  max-width: 1121px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(20px, 3vw, 40px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(110, 91, 75, 0.15);
}

.apply_row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.apply_row_textarea { align-items: flex-start; }

.apply_label {
  width: 100px;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 16px;
  color: #2a2526;
}

.apply_input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid #d9cdd1;
  border-radius: 8px;
  background: #fff;
  font-weight: 400;
  font-size: 15px;
  color: #2a2526;
}

.apply_input::placeholder { color: #bdbdbd; font-size: 15px;}

.apply_textarea {
  height: 100px;
  resize: none;
  font-size: 15px;
}

.apply_gender {
  flex: 1;
  height: 50px;
  display: flex;
  border: 1px solid #d9cdd1;
  border-radius: 8px;
  overflow: hidden;
}

.apply_gender_opt {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  color: #9e9e9e;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
}

.apply_gender_opt input { display: none; }

.apply_gender_opt:has(input:checked) {
  background: #bfa37e;
  color: #fff;
  font-weight: 700;
}

.apply_phone {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.apply_phone_first {
  flex: none;
  width: 120px;
}

.apply_phone_dash {
  font-size: 18px;
  color: #9e9e9e;
}

.apply_submit {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 12px;
  background: #c6154a;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}

.apply_submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.apply_status {
  min-height: 0px;
  margin-top: -8px;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  color: #2a2526;
}

.apply_status:empty {
  margin-top: 0;
}

.apply_status_success {
  color: #1a8a4a;
}

.apply_status_error {
  color: #c6154a;
}

.apply_agree {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.apply_agree_check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 14px;
  color: #2a2526;
  cursor: pointer;
}

.apply_agree_check input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.apply_agree_box {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 4px;
  background: #fff;
  border: 2px solid #d9cdd1;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.apply_agree_box::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 46%;
  width: 10px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.apply_agree_check input:checked + .apply_agree_box {
  background: #bfa37e;
  border-color: #bfa37e;
}

.apply_agree_check input:checked + .apply_agree_box::after {
  opacity: 1;
}

.apply_agree_check input:focus-visible + .apply_agree_box {
  outline: 2px solid #c6154a;
  outline-offset: 2px;
}

.apply_agree_view {
  font-weight: 400;
  font-size: 14px;
  color: #9e9e9e;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
}

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

.foot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px clamp(20px, 3vw, 40px);
  background: #620b25;
}

.foot_content {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.foot_info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  align-items: flex-start;
  justify-content: center;
}

.foot_info p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
}

.foot_info p span {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.foot_policy {
  font-weight: 700;
}

.foot_copyright {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #e9c5d0;
}

.foot_copyright strong {
  font-weight: 700;
}

/* ==========================================================================
   FLOATING CTA
   ========================================================================== */

.float_cta {
  position: fixed;
  right: 40px;
  bottom: 60px;
  z-index: 999;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 999px;
  background: #c6154a;
  border: 3px solid #fff;
  box-shadow: 0 4px 4px rgba(132, 117, 118, 0.6);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.float_cta:hover {
  transform: scale(1.06);
}

.float_cta_icon {
  width: 54px;
  height: 54px;
}

.float_cta span {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.34px;
  color: #fff;
  text-align: center;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   Tablet / mobile stacking for sections that don't have a dedicated
   Figma mobile design yet (np2007 through footer).
   ========================================================================== */

.indi_mobile_list {
  display: none;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.indi_mobile_item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  background: #fff;
  border: 1px solid #f0dcd6;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(110, 91, 75, 0.08);
}

.indi_mobile_num {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ae5454;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.indi_mobile_item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.indi_mobile_item p {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: #5c3e35;
  text-align: center;
}

@media (max-width: 1024px) {
  .tech_grid { grid-template-columns: repeat(2, 1fr); }
  .chart_grid { grid-template-columns: repeat(2, 1fr); }
  .chart_card_center { grid-column: auto; }
}

@media (max-width: 700px) {
  .tech2_visual {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    aspect-ratio: auto;
    height: auto;
  }
  .tech2_img {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
  }
  .tech2_img_tea {
    max-width: 100%;
  }
  .tech2_badge {
    min-width: 100px;
  }
}

@media (max-width: 600px) {
  .indi_diagram { display: none; }
  .indi_mobile_list { display: grid; }

  .tech_grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .tech_step { min-height: 150px; padding: 16px 8px; }

  .chart_grid { grid-template-columns: 2fr; max-width: 420px; margin: 0 auto; row-gap: 40px; }
  .chart_card_center { grid-column: auto; }

  .func_cards { flex-direction: column; align-items: center; }
  .diff_patents { flex-direction: column; align-items: center; }

  .consumer_row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
  }
  .consumer_item {
    width: 100%;
    max-width: none;
    min-width: 0;
    gap: 8px;
  }
  .consumer_item p { font-size: 15px; word-break: keep-all; }
  .consumer_arrow { width: 22px; }
  .consumer_content { margin-top: 24px; }

  .skin_body { flex-direction: column; align-items: center; }

  .phero_content { justify-content: center; }
  .phero_info { align-items: center; text-align: center; }
  .phero_info_group { align-items: center; }
  .phero_badge { margin: 0 auto; }
  .phero_list { align-items: flex-start; text-align: left; }
  .phero_list li { align-items: flex-start; }
  .phero_dot { margin-top: 7px; }

  .apply { padding-top: 48px; padding-bottom: 40px; }
  .apply_promo { gap: 20px; }
  .apply_form { gap: 12px; padding: 25px 20px; margin-top: 24px; border-radius: 12px; }
  .apply_row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .apply_label { width: auto; font-size: 14px; }
  .apply_input { width: 100%; padding: 11px 14px; }
  .apply_textarea { height: 150px; }
  .apply_gender { height: 44px; }
  .apply_gender_opt { font-size: 15px; padding: 8px; }
  .apply_gender,
  .apply_phone { width: 100%; }
  .apply_phone_first { width: 90px; }
  .apply_submit { font-size: 16px; padding: 8px; height: 44px; }
  .apply_agree_check { font-size: 14px; }

  .reco_check_icon { width: 28px; height: 25px; top: 15px; }

  .modal_dialog { width: 92%; max-height: 85vh; border-radius: 14px; }
  .modal_header { padding: 16px 18px; gap: 10px; }
  .modal_title { font-size: 16px; line-height: 1.35; }
  .modal_close { width: 28px; height: 28px; font-size: 14px; }
  .modal_body { padding: 16px 18px 24px; }
  .modal_body p { font-size: 13px; line-height: 1.6; margin-bottom: 16px; }
  .modal_body h4 { font-size: 14px; }
}

.mo_wrap,
.mo_sticky_cta {
  display: none;
}

.mo_only {
  display: none;
}

@media (max-width: 600px) {
  .pc_only {
    display: none !important;
  }
  .mo_only {
    display: block;
  }
  .float_cta {
    display: none;
  }
  .mo_wrap {
    display: block;
  }
  .mo_sticky_cta {
    display: block;
  }
  body {
    padding-bottom: 75px;
  }
}

/* ==========================================================================
   MODAL
   ========================================================================== */

body.modal-lock {
  overflow: hidden;
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal_overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 25, 36, 0.6);
}

.modal_dialog {
  position: relative;
  width: 90%;
  max-width: 720px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.2s ease;
}

.modal.is-open .modal_dialog {
  transform: translateY(0) scale(1);
}

.modal_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.modal_title {
  font-weight: 700;
  font-size: 20px;
  color: #181924;
}

.modal_close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  border-radius: 50%;
  font-size: 16px;
  color: #9e9e9e;
  cursor: pointer;
}

.modal_close:hover {
  background: #f5f5f5;
  color: #2a2526;
}

.modal_body {
  padding: 24px 28px 32px;
  overflow-y: auto;
}

.modal_body p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: #2a2526;
  margin-bottom: 20px;
}

.modal_body h4 {
  font-weight: 700;
  font-size: 15px;
  color: #181924;
  margin-bottom: 8px;
}

/* ==========================================================================
   MOBILE (<=600px)
   ========================================================================== */

@media (max-width: 600px) {

  .mo_wrap {
    position: relative;
    width: 100%;
    background: #fff;
  }

  .mo_tit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .mo_layer_deco {
    width: 170px;
    height: 14.66px;
  }

  .mo_layer_deco img {
    width: 100%;
    height: 100%;
  }

  .mo_eyebrow {
    display: flex;
    align-items: flex-start;
    padding: 6px 14px;
    border-radius: 100px;
    background: #fff;
    border: 1px solid #e7d6d0;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
  }

  .mo_eyebrow p {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 13px;
    color: #a15a09;
    white-space: nowrap;
  }

  .mo_title {
    font-family: 'Paperlogy', sans-serif;
    font-weight: 800;
    font-size: 24px;
    line-height: 1.35;
    color: #000;
    text-align: center;
  }

  .mo_subtitle {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.4;
    color: #181924;
    text-align: center;
  }

  /* -- header ------------------------------------------------------------ */

  .mo_header {
    position: absolute;
    z-index: 20;
    left: 0;
    top: 0;
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
  }

  .mo_header_logo {
    display: block;
    width: 58px;
    height: 52px;
  }

  .mo_header_logo img {
    width: 100%;
    height: 100%;
  }

  .mo_header_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 102px;
    height: 40px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid #d2266b;
    box-shadow: 0 4px 2px #e5bed8;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.3px;
    color: #d2266b;
    white-space: nowrap;
  }

  /* -- hero ---------------------------------------------------------------- */

  .mo_hero {
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;
    background: url(../images/hero-bg.png);
  }


  .mo_hero_blob {
    position: absolute;
    left: -80px;
    bottom: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #ffaccd;
    opacity: 0.5;
    filter: blur(40px);
  }

  .mo_hero_top {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 94px 20px 0;
  }

  .mo_hero_brand {
    font-family: 'Paperlogy', sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 1.3;
    color: #e04573;
    text-align: center;
  }

  .mo_hero_eng {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 232px;
    max-width: 100%;
  }

  .mo_hero_eng_underline {
    display: block;
    width: 100%;
    height: 16.8px;
  }

  .mo_hero_eng_underline img {
    width: 100%;
    height: 100%;
  }

  .mo_hero_eng p {
    font-family: 'Ponomar', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.45;
    color: #a15a09;
    white-space: nowrap;
  }

  .mo_hero_photo {
    position: relative;
    height: 400px;
    overflow: hidden;
  }

  .mo_hero_photo_inner {
    position: relative;
    width: 329px;
    height: 400px;
    margin: 0 auto;
  }

  .mo_hero_photo_deer {
    position: absolute;
    left: -17px;
    top: 68px;
    width: 218px;
    height: 238px;
    object-fit: cover;
  }

  .mo_hero_photo_deer_blur {
    top: 70px;
    filter: blur(2.9px);
  }

  .mo_hero_photo_model {
    position: absolute;
    left: 95px;
    top: 5px;
    width: 214px;
    height: 321px;
    object-fit: cover;
  }

  .mo_hero_photo_deco1 {
    position: absolute;
    right: 0px;
    top: 190px;
    width: 300px;
    object-fit: cover;
  }

  .mo_hero_photo_deco2 {
    position: absolute;
    left: 0px;
    top: 199px;
    width: 96px;
    height: 132px;
    object-fit: cover;
    object-position: bottom;
    transform: rotate(-0.46deg);
  }

  .mo_hero_bottom {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 30px 20px 0;
  }

  .mo_hero_catch {
    font-family: 'Paperlogy', sans-serif;
    font-weight: 900;
    font-size: 30px;
    line-height: 1.4;
    letter-spacing: -0.3px;
    color: #2c191d;
    text-align: center;
  }

  .mo_hero_catch_accent {
    color: #77480d;
  }

  .mo_hero_desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.16px;
    color: #2a2526;
    word-break: keep-all;
    text-align: center;
  }

  .mo_hero_badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 12px;
    background: #e04574;
  }

  .mo_hero_badge p {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.16px;
    color: #fff;
    text-align: center;
    word-break: keep-all
  }

  /* -- problem -------------------------------------------------------------- */

  .mo_problem {
    position: relative;
    overflow: hidden;
    background: url(../images/bg-pattern.png)
  }

  .mo_problem_bg {
    position: absolute;
    inset: 0;
    opacity: 0.18;
  }

  .mo_problem_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mo_problem_content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17px;
    padding: 30px 20px 40px;
  }

  .mo_divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
  }

  .mo_divider_line {
    display: block;
    width: 60px;
    height: 1px;
  }

  .mo_divider_line img {
    width: 100%;
    height: 100%;
  }

  .mo_divider_dot {
    display: block;
    width: 6px;
    height: 6px;
  }

  .mo_divider_dot img {
    width: 100%;
    height: 100%;
  }

  .mo_problem_lead {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    color: #1c1c1c;
    text-align: center;
  }

  .mo_problem_card {
    width: 100%;
    padding: 24px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #ffaccd;
    box-shadow: 0 8px 12px rgba(110, 91, 75, 0.08);
  }

  .mo_problem_card p {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    color: #c6154a;
    text-align: center;
  }

  .mo_problem_closing {
    font-weight: 700;
    font-size: 15px;
    line-height: 1.4;
    color: #000;
    text-align: center;
  }

  /* -- new origin ------------------------------------------------------------ */

  .mo_origin {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0 0;
    background: linear-gradient(0deg, #FEFEFE 0%, #F9EEEF 100%);

  }

  .mo_origin .mo_title {
    padding: 12px 20px 24px;
    font-size: 28px;
    letter-spacing: -0.56px;
  }

  .mo_origin_cards {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    padding: 0 20px 0px;
  }

  .mo_origin_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 24px;
    border-radius: 20px;
    background: #fffffe;
    border: 1px solid #edc096;
  }

  .mo_origin_card_highlight {
    background: #fff;
    border-width: 1.5px;
  }

  .mo_origin_arrow {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: -28px 0;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ffaccd;
    box-shadow: 0 12px 30px rgba(110, 91, 75, 0.15);
  }

  .mo_origin_arrow img {
    width: 16px;
    height: auto;
    transform: rotate(-90deg);
  }

  .mo_origin_tag {
    display: flex;
    align-items: flex-start;
    padding: 6px 18px;
    border-radius: 50px;
  }

  .mo_origin_tag_outline {
    background: #fff;
    border: 1px solid #a9a9a9;
  }

  .mo_origin_tag_outline p {
    font-family: 'Jalnan Gothic', sans-serif;
    font-size: 20px;
    letter-spacing: -0.4px;
    color: #898a8f;
  }

  .mo_origin_tag_fill {
    background: #7b2945;
  }

  .mo_origin_tag_fill p {
    font-family: 'Jalnan Gothic', sans-serif;
    font-size: 24px;
    letter-spacing: -0.48px;
    color: #fff;
  }

  .mo_origin_img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 170px;
  }

  .mo_origin_img img {
    width: 106px;
    height: 118px;
    object-fit: contain;
    opacity: 0.85;
  }

  .mo_origin_img_lg {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
  }

  .mo_origin_img_lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
  }

  .mo_origin_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
  }

  .mo_origin_list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.16px;
    color: #1c1c1c;
    white-space: nowrap;
  }

  .mo_origin_list li img {
    width: 21px;
    height: 21px;
    flex-shrink: 0;
  }

  .mo_origin_card_highlight .mo_origin_list li {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.4px;
  }

  .mo_origin_card_highlight .mo_origin_list li strong {
    font-weight: 700;
  }

  .mo_origin_supporting {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    padding: 32px 24px;
    text-align: center;
  }

  .mo_origin_desc {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.16px;
    color: #505050;
  }

  .mo_origin_closing {
    font-family: 'Paperlogy', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -0.36px;
    color: #000;
  }

  .mo_origin_closing strong {
    color: #7b2945;
  }

  /* -- sticky cta bar ------------------------------------------------------ */

  .mo_sticky_cta {
    position: fixed;
    z-index: 1500;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 12px 16px 16px;
    background: #fff;
    border-top: 1px solid #e7d6d0;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.08);
  }

  .mo_sticky_cta_row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .mo_sticky_btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 100px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
  }

  .mo_sticky_btn_fill {
    background: #d2266b;
    color: #fff;
  }

  .mo_sticky_btn_outline {
    background: #fff;
    border: 1.5px solid #d2266b;
    color: #d2266b;
  }
  .phero_info {
    gap: 20px;
    text-align: center;
  }
  

}
