﻿:root {
  --mint: #08d5a8;
  --hero-blue: #08a7d5;
  --orange: #ffb347;
  --yellow: #fff176;
  --white: #ffffff;
  --page: #121417;
  --max: 600px;
  --section-gutter: clamp(20px, 5.83vw, 35px);
  --hero-section-height: clamp(560px, 50.62vw, 820px);
  --hero-content-width: clamp(356px, 82.33vw, 494px);
  --image-gap: clamp(56px, 6.17vw, 100px);
  --hero-rule-gap: clamp(12px, 1.54vw, 25px);
  --hero-image-gap: clamp(10px, 1.23vw, 20px);
  --hero-button-gap: clamp(8px, 1.23vw, 20px);
  --hero-button-overlap: clamp(-34px, -2.1vw, -18px);
  --hero-bottom-pad: clamp(44px, 7.5vw, 72px);
  --section-20-top-gap: clamp(42px, 11.67vw, 70px);
  --section-20-first-gap: clamp(34px, 9.33vw, 56px);
  --section-20-item-gap: clamp(10px, 2.83vw, 17px);
  --section-30-pad-21: clamp(36px, 9.88vw, 59px);
  --section-30-pad-22: clamp(68px, 18.52vw, 111px);
  --section-30-pad-23: clamp(104px, 28.4vw, 170px);
  --section-30-pad-24: clamp(68px, 18.52vw, 111px);
  --section-30-pad-25: clamp(40px, 11.12vw, 67px);
  --fixed-header-height: clamp(88px, 9vw, 116px);
}

@media (min-width: 600px) {
  :root {
    --hero-rule-gap: 25px;
    --hero-image-gap: 20px;
    --hero-button-gap: 20px;
    --hero-button-overlap: -34px;
    --hero-bottom-pad: 72px;
    --section-20-top-gap: 70px;
    --section-20-first-gap: 56px;
    --section-20-item-gap: 17px;
    --section-30-pad-21: 59px;
    --section-30-pad-22: 111px;
    --section-30-pad-23: 170px;
    --section-30-pad-24: 111px;
    --section-30-pad-25: 67px;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f4f4f4;
  color: var(--white);
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--fixed-header-height);
  /* ížˆì–´ë¡œì™€ ë‹¤ìŒ ë‹¨ë½ì€ 'ê²¹ì¹¨'ì´ í¬ì¸íŠ¸ë¼ ì„¹ì…˜ ì‚¬ì´ ê°„ê²©ì€ ë‘ì§€ ì•ŠìŠµë‹ˆë‹¤ */
  gap: 0;
  /* padding: 18px 0 40px; */
}

.hero-fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--fixed-header-height);
  display: flex;
  align-items: stretch;
  z-index: 1200;
  background: var(--hero-blue);
}

.hero-fixed-header__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 12px var(--section-gutter) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-container{
  background: var(--hero-blue);
  width: 100%;
  min-height: var(--hero-section-height);
  height: auto;
  padding-top: var(--hero-rule-gap);
  padding-bottom: var(--hero-bottom-pad);
  overflow: visible;
}

.hero {
  position: relative;
  width: min(100%, var(--max));
  background: var(--hero-blue);
  /* border-radius: 18px; */
  /* 12.pngê°€ ë‹¤ìŒ í° ë‹¨ë½ìœ¼ë¡œ ì‚´ì§ ë‚´ë ¤ê°€ë©° ê²¹ì¹˜ê²Œ í•˜ë ¤ë©´ overflow:hiddenì´ë©´ ìž˜ë¦½ë‹ˆë‹¤ */
  overflow: visible;
  /* box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35); */
  margin: 0px auto;
}

.hero__ref {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.10;
  filter: saturate(1.05) contrast(1.05);
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 4;
  width: min(100%, var(--hero-content-width));
  margin: 0 auto;
  padding: 0 var(--section-gutter);
}

.hero__slice {
  margin: 0;
}

.hero__slice + .hero__slice {
  margin-top: var(--hero-image-gap);
}

.hero__slice img {
  margin: 0 auto;
}

.hero__buttons {
  display: grid;
  justify-items: center;
  gap: var(--hero-button-gap);
  margin-top: 0;
}

.hero__button {
  display: block;
  width: min(100%, 460px);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.hero__button--overlap {
  margin-top: var(--hero-button-overlap);
}

.hero__button img {
  width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.16));
  transition: filter 0.18s ease;
}

.hero__button:hover {
  transform: translateY(-4px) scale(1.025);
}

.hero__button:hover img {
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.22));
}

.hero__button:active {
  transform: translateY(1px) scale(0.985);
}

.hero__button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.86);
  outline-offset: 5px;
  border-radius: 999px;
}

.is-no-form-page .hero-container {
  min-height: 0;
  padding-bottom: 0;
}

.is-no-form-page .hero__slice:last-child img {
  margin-bottom: 0;
}

.hero__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero__logo {
  width: min(200px, 52vw);
  /* logo.pngê°€ í° ë¡œê³  + ê²€ì • ë°°ê²½ì¸ ê²½ìš°: ê²€ì •ì„ ë°°ê²½ê³¼ ìžì—°ìŠ¤ëŸ½ê²Œ ì„žì´ê²Œ ì²˜ë¦¬ */
  mix-blend-mode: lighten;
  filter: contrast(1.05);
}

.hero__nav {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 14px);
  font-size: clamp(0.85rem, 1.5vw, 1.15rem);
  font-weight: 600;
  white-space: nowrap;
  opacity: 0.95;
}

.hero__nav-sep {
  opacity: 0.75;
}

.hero__rule {
  height: 2px;
  margin: 14px 0 0;
  background: rgba(255, 255, 255, 0.65);
}

.hero__headline {
  display: grid;
  justify-items: center;
  gap: 0;
}

.hero__headline-img {
  width: min(92%, 860px);
  margin: clamp(14px, 2.6vw, 26px) 0 clamp(10px, 2.2vw, 18px);
}

.hero__subline-img {
  width: min(92%, 860px);
  margin: clamp(10px, 2.2vw, 18px) 0 clamp(14px, 2.6vw, 26px);
}

.hero__ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(12px, 2.4vw, 22px);
}

.hero__cta img {
  width: min(44vw, 360px);
}

.hero__stage {
  position: relative;
  margin-top: 10px;
  min-height: min(72vh, 760px);
}

.hero__character {
  position: relative;
  z-index: 6;
  width: min(92%, 860px);
  margin: 0 auto;
  /* ë‹¤ìŒ ë‹¨ë½(í° ë°°ê²½)ìœ¼ë¡œ í•˜ë‹¨ ë°•ìŠ¤ê°€ ë°˜ì¯¤ ê±¸ì¹˜ê²Œ: ì•„ëž˜ë¡œ ë‹¹ê¹€ */
  /* margin-top: clamp(10px, 2.4vw, 22px); */
  margin-bottom: clamp(-100px, -14vw, -110px);
}

img.hero__character {}

.next[id] {
  scroll-margin-top: calc(var(--fixed-header-height) + 8px);
}

#section-127 {
  scroll-margin-top: calc(var(--fixed-header-height) + 18px);
}

.next {
  /* position: relative; */
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  /* 12.png í•˜ë‹¨ ë°•ìŠ¤ê°€ ë°˜ì¯¤ ê±¸ì¹˜ë„ë¡: ì„¹ì…˜ ìžì²´ë¥¼ ì‚´ì§ ìœ„ë¡œ ë‹¹ê¹€ */
  /* margin-top: clamp(-120px, -10vw, -80px); */
  background: #ffffff;
  /* box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22); */
  padding: 0;
}

.next--soft {
  background: #f6f6f6;
}

.next--mint {
  background: #08d5a8;
}

.next--127 {
  background: #ffffff;
}

.next--128 {
  background: #000000;
}

.next__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--section-gutter);
}

.next + .next {
  /* margin-top: 250px; */
  /* padding-top: clamp(20px, 2.2vw, 32px); */
}

.dark-container + .next {
  /* margin-top: 250px; */
}

.next__slice {
  margin: 0;
}
.next__slice img{margin:0px auto; margin-bottom:var(--image-gap);}

.next--section-20 {
  padding-top: var(--section-20-top-gap);
  padding-bottom: 90px;
}

.next--section-20 .next__slice img {
  margin-bottom: var(--section-20-item-gap);
}

.next--section-20 .next__slice--section-20-11 img {
  margin-bottom: var(--section-20-first-gap);
}

.next--section-30 {
  background: #f4f4f4;
  padding-top: 75px;
  margin-bottom: 30px;
}

.next--section-30 .next__inner {
  padding-left: 0;
  padding-right: 0;
}

.next--section-30 .next__slice--section-30-21 {
  padding: 0 var(--section-30-pad-21);
}

.next--section-30 .next__slice--section-30-21 img {
  margin-bottom: 45px;
}

.next--section-30 .next__slice--section-30-22 img,
.next--section-30 .next__slice--section-30-23 img,
.next--section-30 .next__slice--section-30-24 img,
.next--section-30 .next__slice--section-30-25 img {
  margin-bottom: 45px;
}

.next--section-30 .next__slice--section-30-22 {
  padding: 0 var(--section-30-pad-22);
}

.next--section-30 .next__slice--section-30-23 {
  padding: 0 var(--section-30-pad-23);
}

.next--section-30 .next__slice--section-30-24 {
  padding: 0 var(--section-30-pad-24);
}

.next--section-30 .next__slice--section-30-25 {
  padding: 0 var(--section-30-pad-25);
}

.next--section-30 .next__slice--section-30-23 img {
  max-width: 253px;
}

.next--section-40 {
  background: #ffffff;
  padding-top: clamp(36px, 11.67vw, 70px);
  padding-bottom: clamp(48px, 13.33vw, 80px);
}

.next--section-40 .next__inner {
  display: grid;
  gap: 0;
}

.next--section-40 .next__slice img {
  margin-bottom: 0;
}

.next--section-40 .next__slice:nth-child(1) img {
  width: min(100%, clamp(206px, 60.35vw, 362px));
  margin-bottom: clamp(24px, 7vw, 42px);
}

.next--section-40 .next__slice:nth-child(2) img {
  width: min(100%, clamp(190px, 55.56vw, 334px));
  margin-bottom: clamp(24px, 7.5vw, 45px);
}

.section-40-row,
.section-40-grid,
.section-40-pair {
  margin: 0;
}

.section-40-row--33 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: clamp(6px, 1.67vw, 10px);
  margin: 0 auto clamp(28px, 7.5vw, 45px);
  width: min(100%, 440px);
}

.section-40-row--33 .section-40-separator {
  display: none;
}

.section-40-card {
  margin: 0;
}

.section-40-card img {
  width: 100%;
  margin: 0;
}

.section-40-grid--34 {
  display: grid;
  gap: clamp(10px, 2.67vw, 16px);
  width: min(100%, 500px);
  margin: 0 auto clamp(48px, 13.33vw, 80px);
}

.section-40-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 2.67vw, 16px);
}

.next--section-40 .next__slice--section-40-35 img {
  width: min(100%, clamp(270px, 78.95vw, 474px));
  margin-bottom: 50px;
}

.next--section-40 .next__slice--section-40-36 img {
  width: min(100%, clamp(236px, 68.33vw, 410px));
}

.next--section-50 {
  background: #f4f4f4;
  padding-top: clamp(54px, 12.5vw, 75px);
  padding-bottom: clamp(58px, 13.33vw, 80px);
}

.next--section-50 .next__slice img {
  margin-bottom: clamp(44px, 10.83vw, 65px);
}

.next--section-50 .next__slice--section-50-51 img {
  width: min(100%, 430px);
  margin-bottom: clamp(42px, 10vw, 60px);
}

.next--section-50 .next__slice--section-50-52 img {
  width: min(100%, 390px);
  margin-bottom: clamp(48px, 11.67vw, 70px);
}

.next--section-50 .next__slice--section-50-53 img {
  width: min(100%, 560px);
}

.next--section-50 .next__slice--section-50-54 img {
  width: min(100%, 535px);
}

.next--section-50 .next__slice--section-50-55 img {
  width: min(100%, 540px);
}

.next--section-50 .next__slice--section-50-56 img {
  width: min(100%, 560px);
  margin-bottom: 0;
}

.next--section-60 {
  background: #ffffff;
  border-radius: clamp(34px, 10vw, 60px) clamp(34px, 10vw, 60px) 0 0;
  box-shadow: 0px -5px 25px #DDD;
  margin-top: 0;
  padding-top: clamp(48px, 11.67vw, 70px);
  padding-bottom: clamp(54px, 13.33vw, 80px);
  overflow: hidden;
}

.next--section-60 .next__inner {
  display: grid;
  gap: 0;
}

.next--section-60 .next__slice img {
  margin-bottom: clamp(24px, 6.67vw, 40px);
}

.next--section-60 .next__slice--section-60-61 img {
  width: min(100%, 450px);
  margin-bottom: clamp(26px, 6.67vw, 40px);
}

.next--section-60 .next__slice--section-60-62 img {
  width: min(100%, 520px);
  margin-bottom: clamp(28px, 7.5vw, 45px);
}

.next--section-60 .next__slice--section-60-63 img {
  width: min(100%, 560px);
  margin-bottom: clamp(34px, 8.33vw, 50px);
}

.next--section-60 .next__slice--section-60-64 img,
.next--section-60 .next__slice--section-60-66 img {
  width: min(100%, 520px);
  margin-bottom: clamp(28px, 7.5vw, 45px);
}

.section-60-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 2.67vw, 16px);
  width: min(100%, 520px);
  margin: 0 auto clamp(34px, 8.33vw, 50px);
}

.section-60-card {
  margin: 0;
}

.section-60-card img {
  width: 100%;
  margin: 0;
}

.next--section-60 .next__slice--section-60-66 img {
  margin-bottom: 0;
}

.next--section-70 {
  position: relative;
  min-height: clamp(320px, 85.67vw, 514px);
  background-color: #08a7d5;
  background-image: url("img2/70-bg.png");
  background-position: center center;
  background-size: cover;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.next--section-70::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 167, 213, 0.72);
  pointer-events: none;
}

.next--section-70 .next__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding-top: clamp(40px, 10vw, 60px);
  padding-bottom: clamp(44px, 11.67vw, 70px);
}

.next__slice--section-70-title img {
  width: min(100%, 500px);
  margin-bottom: clamp(52px, 13.33vw, 80px);
}

.next__slice--section-70-button {
  width: min(100%, 500px);
}

.next__slice--section-70-button a {
  display: block;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.next__slice--section-70-button img {
  width: 100%;
  margin-bottom: 0;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.18));
}

.next__slice--section-70-button a:hover {
  transform: translateY(-4px) scale(1.02);
  filter: brightness(1.03);
}

.next__slice--section-70-button a:active {
  transform: translateY(1px) scale(0.985);
}

.is-no-form-page .next--section-70 {
  min-height: auto;
}

.is-no-form-page .next--section-70 .next__inner {
  padding-top: clamp(40px, 10vw, 60px);
  padding-bottom: clamp(40px, 10vw, 60px);
}

.is-no-form-page .next__slice--section-70-title img {
  margin-bottom: 0;
}

.next--section-8 {
  background: #fff;
  padding-top: clamp(54px, 13.33vw, 80px);
  padding-bottom: clamp(58px, 13.33vw, 80px);
}

.next--section-8 .next__inner {
  display: grid;
  justify-items: center;
}

.next--section-8 .next__slice img {
  margin-bottom: clamp(38px, 9.17vw, 55px);
}

.next__slice--section-8-81 img {
  width: min(100%, 430px);
  margin-bottom: clamp(42px, 10vw, 60px);
}

.next__slice--section-8-82 img {
  width: min(100%, 500px);
}

.next__slice--section-8-83 img {
  width: min(100%, 400px);
}

.next__slice--section-8-84 img {
  width: min(100%, 420px);
}

.next__slice--section-8-85 img {
  width: min(100%, 540px);
}

.next__slice--section-8-86 img {
  width: min(100%, 560px);
}

.next__slice--section-8-87 img {
  width: min(100%, 540px);
  margin-bottom: 0;
}

.next--section-9 {
  background: #fff;
  padding-top: 0;
  padding-bottom: clamp(58px, 13.33vw, 80px);
}

.next--section-9 .next__inner {
  display: grid;
  justify-items: center;
}

.next--section-9 .next__slice img {
  width: min(100%, 600px);
  margin-bottom: clamp(38px, 9.17vw, 55px);
}

.next--section-9 .next__slice:last-child img {
  margin-bottom: 0;
}

.next--section-10 {
  background: #fff;
  padding-top: 0;
  padding-bottom: clamp(58px, 13.33vw, 80px);
}

.next--section-10 .next__inner {
  display: grid;
  justify-items: center;
  padding-left: 75px;
  padding-right: 75px;
}

.next--section-10 .next__slice img {
  width: 100%;
  margin-bottom: clamp(38px, 9.17vw, 55px);
}

.next--section-10 .next__slice:last-child img {
  margin-bottom: 0;
}

.next--section-11 {
  background: #08a7d5;
  padding-top: clamp(48px, 11.67vw, 70px);
  padding-bottom: clamp(48px, 11.67vw, 70px);
}

.next--section-11 .next__inner {
  display: grid;
  justify-items: center;
  padding-left: 75px;
  padding-right: 75px;
}

.next--section-11 .next__slice {
  width: 100%;
}

.next--section-11 .next__slice a {
  display: block;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.next--section-11 .next__slice img {
  width: 100%;
  margin-bottom: 18px;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.18));
}

.next--section-11 .next__slice:last-child img {
  margin-bottom: 0;
}

.next--section-11 .next__slice a:hover {
  transform: translateY(-4px) scale(1.02);
  filter: brightness(1.03);
}

.next--section-11 .next__slice a:active {
  transform: translateY(1px) scale(0.985);
}

.next--section-12 {
  background: #e9e9e9;
  padding-top: clamp(40px, 10vw, 60px);
  padding-bottom: clamp(40px, 10vw, 60px);
}

.next--section-12 .next__inner {
  padding-left: 30px;
  padding-right: 30px;
}

.consult-form {
  width: 100%;
  margin: 0 auto;
  padding: clamp(24px, 6.67vw, 40px) clamp(20px, 5.33vw, 32px) clamp(28px, 7.33vw, 44px);
  background: #fff;
  border: 1px solid #d7d7d7;
  border-radius: 12px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.consult-form__notice {
  width: 100%;
  margin: 0 auto 14px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(8, 167, 213, 0.1);
  color: #078fbd;
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
}

.consult-form__notice--error {
  background: rgba(220, 60, 60, 0.1);
  color: #c43737;
}

.consult-form__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #444;
  font-size: clamp(1.42rem, 5.4vw, 1.92rem);
  font-weight: 900;
  letter-spacing: 0;
}

.consult-form__mark {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #08a7d5;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
}

.consult-form__rule {
  height: 1px;
  margin: 18px 0 20px;
  background: #eeeeee;
}

.consult-form__grid {
  display: grid;
  gap: 14px;
}

.consult-form__grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.consult-form__field {
  display: block;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.consult-form__label {
  display: block;
  margin: 0 0 8px;
  color: #989898;
  font-size: clamp(1rem, 3.4vw, 1.2rem);
  font-weight: 900;
  letter-spacing: 0;
}

.consult-form input[type="text"],
.consult-form input[type="tel"],
.consult-form textarea {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  background: #fff;
  color: #333;
  font: inherit;
  font-size: 1rem;
  outline: 0;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.consult-form input[type="text"],
.consult-form input[type="tel"] {
  height: 36px;
  padding: 0 10px;
}

.consult-form textarea {
  min-height: clamp(138px, 31.67vw, 190px);
  padding: 10px;
  resize: vertical;
}

.consult-form input:focus,
.consult-form textarea:focus {
  border-color: #08a7d5;
  box-shadow: 0 0 0 3px rgba(8, 167, 213, 0.14);
}

.consult-form__field--choice {
  margin-bottom: 18px;
}

.consult-form__choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.consult-form__choice {
  display: block;
  margin: 0;
}

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

.consult-form__choice span {
  display: grid;
  place-items: center;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  background: #fff;
  color: #aaa;
  font-size: clamp(0.82rem, 2.65vw, 0.98rem);
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  transition: border-color 0.16s ease, color 0.16s ease, background-color 0.16s ease;
}

.consult-form__choice input:checked + span {
  border-color: #08a7d5;
  background: rgba(8, 167, 213, 0.08);
  color: #078fbd;
  font-weight: 800;
}

.consult-form__choice input:focus-visible + span {
  outline: 3px solid rgba(8, 167, 213, 0.25);
  outline-offset: 2px;
}

.consult-form__actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(30px, 7.5vw, 45px);
}

.consult-form__submit {
  display: inline-grid;
  place-items: center;
  min-width: min(100%, 245px);
  min-height: 54px;
  padding: 0 34px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #d5d5d5 0%, #bcbcbc 100%);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.45), 0 3px 0 #a6a6a6;
  color: #5a5a5a;
  font: inherit;
  font-size: clamp(1.08rem, 3.8vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 0.16s ease, filter 0.16s ease, box-shadow 0.16s ease;
}

.consult-form__submit:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.consult-form__submit:active {
  box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 1px 0 #a6a6a6;
  transform: translateY(1px);
}

.consult-form__submit:focus-visible {
  outline: 4px solid rgba(8, 167, 213, 0.28);
  outline-offset: 4px;
}

@media (min-width: 520px) {
  .section-40-row--33 {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  }

  .section-40-row--33 .section-40-separator {
    display: block;
    width: 1px;
    height: clamp(126px, 35vw, 210px);
    margin: 0 auto;
    object-fit: fill;
  }
}

.next--120 .next__slice img {
  margin-bottom: var(--image-gap);
}

.next__slice--127-main img {
  margin-bottom: var(--image-gap);
}

.next__slice--127:not(.next__slice--127-main) img {
  margin-bottom: var(--image-gap);
}

.next__slice--128-main img,
.next__slice--128 img {
  margin-bottom: var(--image-gap);
}

.next__grid {
  display: grid;
}

.next__grid--128 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0 auto 10px;
  width: min(100%, 900px);
}

.next__grid-item {
  margin: 0;
}

.next__grid-item img {
  width: 100%;
  height: auto;
  margin: 0;
}

.next__slice--128-fade img {
  margin-top: var(--image-gap);
  margin-bottom: var(--image-gap);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 90%, transparent 100%);
}

.next__slice--left img {
  margin-left: 0;
  margin-right: auto;
}

.next__slice--121-122 img {
  margin-left: clamp(12px, 2.2vw, 24px);
  margin-right: auto;
  margin-bottom: var(--image-gap);
}

.next__slice--flush-bottom img {
  margin-bottom: 0;
}

.next__slice--mb-20 img {
  margin-bottom: var(--image-gap);
}

.next__slice--tight-bottom img {
  margin-bottom: var(--image-gap);
}

.next__slice--mint {
  background: #08d5a8;
  padding: var(--image-gap) 0;
}

.next__slice--overlap img {
  margin-bottom: -270px;
  position: relative;
  z-index: 2;
}

.next--overlap-source {
  position: relative;
  z-index: 3;
  overflow: visible;
}

.next--mint-bridge {
  position: relative;
  z-index: 1;
  padding-top: 140px;
}

.next__slice + .next__slice {
  margin-top: -1px;
}

.next__stack {
  position: relative;
}

.next__stack-item {
  position: absolute;
  top: 50%;
  width: clamp(130px, 28%, 360px);
  margin: 0;
  z-index: 2;
  --button-offset-x: 0%;
  --button-hover-y: 0px;
  --button-scale: 1;
  transform: translate(var(--button-offset-x), calc(-50% + var(--button-hover-y))) scale(var(--button-scale));
  transition: transform 0.18s ease, filter 0.18s ease;
}

.next__stack-item--left {
  left: 46%;
  --button-offset-x: -108%;
}

.next__stack-item--right {
  left: 54%;
  --button-offset-x: 8%;
}

.next__stack-item img {
  margin: 0;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.24));
  transition: filter 0.18s ease;
}

.next__stack-item:hover {
  --button-hover-y: -4px;
  --button-scale: 1.035;
}

.next__stack-item:hover img {
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.32));
}

.next__stack-item:active {
  --button-hover-y: 1px;
  --button-scale: 0.985;
}

.next__stack-item:active img {
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.22));
}

.next__stack-item:focus-visible,
.next__button-link:focus-visible {
  outline: 4px solid rgba(255, 179, 71, 0.82);
  outline-offset: 6px;
  border-radius: 12px;
}

.next__button-link {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  cursor: pointer;
}

.next__button-link img {
  transition: transform 0.18s ease, filter 0.18s ease;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.22));
}

.next__button-link:hover img {
  transform: translateY(-5px) scale(1.02);
  filter: drop-shadow(0 26px 36px rgba(0, 0, 0, 0.3));
}

.next__button-link:active img {
  transform: translateY(1px) scale(0.985);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.2));
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.78);
  padding: 24px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__img {
  max-width: min(96vw, 1200px);
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #222;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

body.is-lightbox-open {
  overflow: hidden;
}

.faq {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--section-gutter);
}

.faq__item {
  border: 2px solid #e6e6e6;
  border-radius: 10px;
  background: #f6f6f6;
  overflow: hidden;
}

.faq__item + .faq__item {
  margin-top: 14px;
}

.faq__head {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 16px;
  background: transparent;
  border: 0;
  color: #9a9a9a;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.faq__num {
  font-weight: 800;
  color: #9a9a9a;
}

.faq__title {
  font-weight: 800;
  color: #9a9a9a;
}

.faq__icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.faq__body {
  padding: 50px 16px;
  background: #ffffff;
  color: #111;
}

.faq__body p {
  margin: 0 0 12px;
  line-height: 1.6;
}

.faq__body p:last-child {
  margin-bottom: 0;
}

.faq__image {
  margin: 0;
}

.faq__image img {
  margin: 0 auto 14px;
}

.faq__image img.js-zoomable {
  cursor: zoom-in;
}

.faq__image:last-child img {
  margin-bottom: 0;
}

.faq__item.is-open {
  border-color: #08d5a8;
  background: #eafff8;
}

.faq__item.is-open .faq__num,
.faq__item.is-open .faq__title {
  color: #08d5a8;
}

.image-slider {
  width: 100%;
  margin: 0 auto;
}

.slider-section {
  width: 100%;
  background: #ffffff;
  padding: 24px 0 100px;
}

.slider-section__inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--section-gutter);
}

.image-slider__viewport {
  overflow: hidden;
  border-radius: 12px;
}

.image-slider__track {
  display: flex;
  gap: 12px;
  transition: transform 280ms ease;
  will-change: transform;
}

.image-slider__slide {
  flex: 0 0 78%;
  margin: 0;
}

.image-slider__slide img {
  width: 100%;
  height: 100%;
  margin: 0;
  display: block;
  object-fit: contain;
  background: #ffffff;
}

.image-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.image-slider__btn {
  width: 34px;
  height: 34px;
  border: 1px solid #cfcfcf;
  border-radius: 999px;
  background: #fff;
  color: #555;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.image-slider__dots {
  display: flex;
  gap: 8px;
}

.image-slider__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: #cfcfcf;
  padding: 0;
  cursor: pointer;
}

.image-slider__dot.is-active {
  background: #08d5a8;
}

@media (min-width: 1024px) {
  .image-slider__viewport {
    overflow: hidden;
  }

  .image-slider__slide {
    flex: 0 0 62%;
  }

  .image-slider__slide img {
    height: 700px;
  }
}

.dark-container {
  position: relative;
  width: 100%;
  background-color: #ccecf6;
  background-image: none;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  color: var(--white);
  padding: 70px 0;
}

.dark {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  overflow: visible;
}

.dark__inner {
  padding: 0 var(--section-gutter);
}

.dark__slice {
  margin: 0;
}

.dark__slice img {
  margin: 0 auto 15px;
  max-width: 100%;
  height: auto;
  display: block;
}

.dark__slice:last-child img {
  margin-bottom: 15px;
}

.dark__slice + .dark__slice {
  margin-top: -1px;
}

/* Before/after auto slideshow (91, 92) */
.next__slice.ba-slideshow img {
  margin: 0;
}

.ba-slideshow {
  margin: 0;
}

.ba-slideshow,
.ba-slideshow__viewport,
.ba-slideshow__track,
.ba-slideshow img {
  -webkit-user-drag: none;
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
}

.ba-slideshow__inner {
  position: relative;
  margin: 0px auto;
  margin-bottom: var(--image-gap);
  max-width: 100%;
}

.ba-slideshow__sizer {
  display: block;
  width: 100%;
  height: auto;
  visibility: hidden;
}

.ba-slideshow__layers {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ba-slideshow__viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  user-select: none;
  -webkit-user-drag: none;
  /* Cell widths & translate use cqw so slide % is of this strip (91/92 slideshow). */
  container-type: inline-size;
  container-name: ba-slideshow;
  --ba-slide-pct: 82;
  --ba-gap: 12px;
  /* pan-y steals horizontal pans on touch; none keeps drag aligned with pointer */
  touch-action: none;
  cursor: grab;
}

.ba-slideshow.is-dragging .ba-slideshow__viewport {
  touch-action: none;
  cursor: grabbing;
}

.ba-slideshow__track {
  display: flex;
  gap: var(--ba-gap);
  width: max-content;
  height: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 0.55s ease-in-out;
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
}

/* After: peek of before left; shifted by step (same as without gap minus gap correction). */
.ba-slideshow.is-after .ba-slideshow__track {
  transform: translate3d(calc((100 - 2 * var(--ba-slide-pct)) * 1cqw - var(--ba-gap)), 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .ba-slideshow__track {
    transition: none;
  }
}

.ba-slideshow.is-dragging .ba-slideshow__track {
  transition: none;
}

.ba-slideshow__cell {
  position: relative;
  flex: 0 0 calc(var(--ba-slide-pct) * 1cqw);
  align-self: flex-start;
}

.ba-slideshow__cell img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}

.ba-slideshow__badge {
  position: absolute;
  z-index: 1;
  bottom: 10px;
  right: 10px;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  pointer-events: none;
}

.ba-slideshow__badge--before,
.ba-slideshow__badge--after {
  color: #000;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 1300;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: #08a7d5;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.92);
  transition: opacity 0.22s ease, transform 0.22s ease, background-color 0.18s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top:hover {
  background: #078fbd;
}

.scroll-top:focus-visible {
  outline: 4px solid rgba(255, 179, 71, 0.75);
  outline-offset: 4px;
}

.scroll-top__arrow,
.scroll-top__label {
  display: block;
  line-height: 1;
}

.scroll-top__arrow {
  margin-top: -4px;
  font-size: 2.15rem;
  font-weight: 900;
}

.scroll-top__label {
  margin-top: -6px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top {
    transition: none;
  }
}

@media (max-width: 420px) {
  .next--section-12 .next__inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .consult-form__grid--two,
  .consult-form__choices {
    gap: 10px;
  }

  .consult-form__choice span {
    padding: 0 8px;
    min-height: 42px;
    line-height: 1.25;
    white-space: normal;
  }

  .scroll-top {
    right: 16px;
    bottom: 18px;
    width: 62px;
    height: 62px;
  }

  .scroll-top__arrow {
    font-size: 1.85rem;
  }

  .scroll-top__label {
    font-size: 0.7rem;
  }

  .hero__ctas {
    gap: 10px;
  }

  .hero__headline-img {
    margin: clamp(12px, 3.2vw, 18px) 0 clamp(8px, 2.6vw, 14px);
  }

  .hero__subline-img {
    margin: clamp(8px, 2.6vw, 14px) 0 clamp(12px, 3.2vw, 18px);
  }

  .hero__cta img {
    width: calc(50% - 5px);
  }

  .hero__stage {
    min-height: 640px;
  }

  .hero__character {
    margin-top: clamp(8px, 3.2vw, 16px);
    margin-bottom: clamp(-150px, -18vw, -95px);
  }

  .hero-container + .next {
    margin-top: 0;
  }

  .hero__nav {
    gap: 8px;
    font-size: clamp(0.78rem, 2.2vw, 0.92rem);
  }
}
