@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-4Regular.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-5Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-7Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

:root {
    --pcWidthSide: calc(100% - 1400px);
    
    --colorBlue : #0091db; 
    --colorYellow : #ffc448;
    --colorNavy : #002069;
}



* { box-sizing: border-box; margin: 0; padding: 0;   }
html, body { height: 100%; margin: 0; }
body { font-family: 'Paperozi', 'Noto Sans KR', sans-serif; font-weight: 300; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; color: #333; font-size: 16px; }
strong { font-weight: 700; }
ul { list-style: none; padding: 0;  }
a, a:hover, a:active { color: #333; text-decoration: none; }

.viewport {
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}




.topBanner { position: fixed; top: 0; left: 0; right: 0; height: 42px; background: #0091db; color: #fff; z-index: 9999; }
.topBanner .wrapper { max-width: 1400px; height: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 20px; padding: 0 16px; box-sizing: border-box; }
.topBanner .title { margin: 0; font-size: 14px; font-weight: 400; white-space: nowrap; opacity: .95; }

.topBanner .Btns { display: flex; align-items: center; gap: 10px; }
.topBanner .Btn { display: inline-flex; align-items: center; justify-content: center; padding: 5px 14px; border-radius: 999px; font-size: 12px; font-weight: 500; text-decoration: none; transition: all .18s ease; }
.topBanner .Btn01 { background: rgba(255,255,255,0.16); color: #e8f8ff; border: 1px solid rgba(255,255,255,0.4); }
.topBanner .Btn01:hover { background: rgba(255,255,255,0.28); transform: translateY(-1px); }
.topBanner .Btn02 { background: #fff; color: #0091db; border: 1px solid #fff; }
.topBanner .Btn02:hover { background: #eaf9ff; transform: translateY(-1px); }




.section {
  min-height: 100vh;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section h1 {
  margin: 0;
  font: 600 24px/1.2, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

.section .content { width: 100%; max-width: 1400px; }


/* 플로팅 버튼 */
.floatingBtns { position: fixed; right: 35px; bottom: 24px; display: flex; flex-direction: column; gap: 12px; z-index: 1000; }
.floatingBtns button, .floatingBtns a { cursor: pointer; }

.siteLinks { position: relative; }
.siteLinks .mainBtn { width: 52px; height: 52px; border-radius: 50%; border: none; background: #0091db; color: #fff; font-size: 20px; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(0,0,0,0.2); transition: background .25s ease, transform .25s ease; }
.siteLinks .mainBtn:hover { background: #00b3ff; transform: translateY(-2px); }

.siteLinks .linkList { list-style: none; position: absolute; bottom: 60px; right: 0; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .3s ease, transform .3s ease; }
.siteLinks.active .linkList { opacity: 1; pointer-events: auto; transform: translateY(0); }
.siteLinks .linkList li a { display: block; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,0.9); color: #005fa3; font-weight: 500; font-size: 0.85em; box-shadow: 0 3px 10px rgba(0,0,0,0.15); transition: background .25s ease, transform .2s ease; white-space: nowrap; text-align: center; } 
.siteLinks .linkList li a:hover { background: #e6f7ff; transform: translateY(-2px); }

.kakaoBtn { width: 52px; height: 52px; border-radius: 50%; background: #fae100; border: none; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(0,0,0,0.2); transition: transform .25s ease; }
.kakaoBtn:hover { transform: translateY(-2px); }
.kakaoBtn img { width: 100%; height: 100%; }




.scrollBtn{ position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: rgba(255,255,255,0.9); color: #0b3d62; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 6px 18px rgba(0,0,0,0.12); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); cursor: pointer; transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; animation: hintFloat 1.8s ease-in-out infinite; z-index: 9999; }
.scrollBtn:hover { box-shadow: 0 10px 26px rgba(0,0,0,0.16); transform: translateX(-50%) translateY(-2px); }
.scrollBtn.hidden { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(6px); }
.scrollBtn.is-up { background: rgba(11,102,255,0.95); color: #fff; }
.scrollBtn.is-up svg { transform: rotate(180deg); transition: transform .2s ease; }
@keyframes hintFloat { 0% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } 100% { transform: translateX(-50%) translateY(0); } }



/* section01 */
.section01 { position: relative; overflow: hidden; }
.section01 .bgVideo { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
/*.section01 .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 20% 0%, rgba(0,145,219,0.35), transparent 55%), radial-gradient(circle at 90% 80%, rgba(0,145,219,0.25), transparent 60%), rgba(3,7,18,0.55); z-index: 1; }*/
.section01 .content { position: relative; z-index: 2; color: #fff; text-align: center; max-width: 1200px; margin: 0 auto; padding: 80px 24px 120px; box-sizing: border-box; }
.section01 .content > p { font-size: 1.25em; margin: 0 0 1.5rem; opacity: 0.9; }
.section01 .content h1 { margin: 0 auto 1.5rem; width: 80%; max-width: 420px; }
.section01 .content > span { display: block; text-align: center; font-size: 1.5em; margin: 0 auto; font-weight: 600; }


.section01 .linkBox { display: flex; justify-content: center; align-items: stretch; gap: 32px; margin: 80px auto 0; max-width: 960px; }
.section01 .linkBox > div { flex: 1 1 0; max-width: 420px; background: rgba(248,250,252,0.98); border-radius: 28px; padding: 32px 24px 28px; box-shadow: 0 16px 40px rgba(15,23,42,0.45); box-sizing: border-box; transform: translateY(0); transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.section01 .linkBox > div:hover { transform: translateY(-6px); box-shadow: 0 22px 60px rgba(15,23,42,0.65); background: rgba(255,255,255,0.98); }

.section01 .linkBox h2 { margin: 0 auto 24px; width: 80%; max-width: 230px; }
.section01 .linkBox h2 img { display: block; width: 100%; height: auto; }


.section01 .appLink { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.section01 .appLink li { margin: 0; }
.section01 .appLink li a { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 18px; width: 100%; border-radius: 999px; border: 1px solid rgba(0,145,219,0.45); background: rgba(255,255,255,0.96); color: #005fa3; text-decoration: none; font-size: 0.9em; line-height: 1; font-weight: 600; box-shadow: 0 4px 14px rgba(15,23,42,0.12); transition: background .2s ease, color .2s ease, transform .15s ease, box-shadow .2s ease; }
.section01 .appLink li a:hover { background: linear-gradient(135deg,#00a2ff,#5fd4ff); color: #ffffff; box-shadow: 0 10px 26px rgba(0,145,219,0.55); transform: translateY(-2px); }
.section01 .appLink li a i { font-size: 1.1em; margin-top: -2px; }
.section01 .appLink li a span { opacity: 0.9; font-size: 0.95em; }

.section01 .linkBox .pTest .appLink li:first-child a::before { content:'결제전용'; display: inline; background: rgba(0,145,219,0.17); padding: 4px 7px; border-radius: 100px; font-size: 0.85em; color: #0077c8; font-weight: 500; } 
.section01 .linkBox .pTest .appLink li:first-child a:hover::before { content:'결제전용'; display: inline; background: rgba(255, 255, 255, 0.8);  } 





/* section02 */
.section02 { position: relative; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 16px; width: 100%; overflow: hidden; }
.section02 h2 { max-width: 1400px; margin: 0 auto 40px; padding: 0 24px; font-size: 1.6em; line-height: 1.35; text-align: center; font-weight: 500; }
.section02 h2 strong { color: var(--colorBlue); }
.section02 .specCard { --cardW: clamp(260px, 28vw, 380px); --cardH: clamp(320px, 40vw, 480px); --gap: 24px; width: 100vw; margin: 0; display: flex; gap: var(--gap); overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 50px 0 30px; scrollbar-width: none; }
.section02 .specCard::-webkit-scrollbar { display: none; }
.section02 .specCard > div { flex: 0 0 var(--cardW); height: var(--cardH); border-radius: 20px; background: #f5f7fb; position: relative; scroll-snap-align: center; display: grid; grid-template-rows: auto 1fr auto; align-items: end; padding: 16px; transition: transform .4s ease, box-shadow .4s ease; transform-origin: center bottom; transform: scale(.86); box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.section02 .specCard > div:first-child { margin-left: calc(-0.5 * var(--cardW)); }
.section02 .specCard > div:last-child { margin-right: calc(-0.5 * var(--cardW)); }
.section02 .specCard > div figure { display: flex; align-items: center; justify-content: center; height: 370px; width: 100%; overflow: hidden; }
.section02 .specCard > div figure img { object-fit: contain; width: 100%; height: 100%; max-height: 200px; display: block; }
.section02 .specCard > div span { position: absolute; left: 16px; top: 16px; font-weight: 700; font-size: 14px; background: rgba(0,0,0,.7); color: #fff; border-radius: 999px; padding: 6px 10px; }
.section02 .specCard > div h3 { margin: 50px 0 0; font-size: 1.3em; }
.section02 .specCard > div ul { list-style: none; margin: 10px 0 0; padding: 10px 0 0; display: grid; gap: 6px; opacity: 0; max-height: 0; overflow: hidden; transition: opacity .35s ease, max-height .35s ease; }
.section02 .specCard > div ul li { font-size: 0.95em; font-weight: 500; color: #fff; background: linear-gradient(135deg,#00a2ff,#5fd4ff); color: #ffffff; box-shadow: 5px 0px 5px rgba(0,145,219,0.55); transform: translateY(-2px); border-radius: 999px; padding: 6px 10px; width: fit-content; }
.section02 .specCard > div .warning { margin: 8px 0 0; font-size: 12px; color: #64748b; opacity: 0; max-height: 0; overflow: hidden; transition: opacity .35s ease, max-height .35s ease; }
.section02 .specCard > div.is-active { transform: scale(1.06); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.section02 .specCard > div.is-active figure { height: 300px;align-items: top; }
.section02 .specCard > div.is-active ul { opacity: 1; max-height: 200px; }
.section02 .specCard > div.is-active .warning { opacity: 1; max-height: 60px; }
.section02 .specNav { position: absolute; left: 0; right: 0; bottom: 85px; display: grid; grid-template-columns: 48px 1fr 48px; align-items: center; gap: 8px; padding: 0 24px; z-index: 5; }
.section02 .specPrev, .section02 .specNext { width: 40px; height: 40px; border-radius: 50%; border: none; background: #fff; font-size: 0px; line-height: 1; display: grid; place-items: center; cursor: pointer; }
.section02 .specDots { display: flex; justify-content: center; gap: 8px; }
.section02 .specDots button { width: 8px; height: 8px; border-radius: 999px; border: 0; background: #cbd5e1; cursor: pointer; }
.section02 .specDots button.is-on { background: #0ea5e9; width: 22px; border-radius: 999px; transition: width .2s; }



/* section03 */
.section03 { position: relative; width: 100%; min-height: 100vh; box-sizing: border-box; padding: 80px 40px; display: flex; flex-direction: row-reverse; align-items: center; gap: 40px; background: linear-gradient(135deg, #e9f7ff 0%, #c9ebff 40%, #f5fbff 100%); overflow: hidden; }

.section03 .content { height: calc(100vh - 160px); flex: 0 0 34%; max-width: 500px; position: relative; border-radius: 28px; overflow: hidden; box-shadow: 0 18px 40px rgba(0,145,219,0.35); display: flex; align-items: flex-end; padding: 28px 26px; color: #ffffff; background: #0091db; background-image: url(../img/section3bgImg2.jpg); background-repeat:  no-repeat; background-size: cover; background-position: bottom left -200px; }

.section03 .content::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 10% 0%, rgba(255,255,255,0.55), transparent 55%), radial-gradient(circle at 90% 100%, rgba(0,0,0,0.3), transparent 60%); mix-blend-mode: soft-light; pointer-events: none; }

.section03 h2 { position: relative; margin: 0; text-align: left; line-height: 1.4; font-weight: 500; color: #ffffff; text-shadow: 0 1px 4px rgba(0,0,0,0.25); }
.section03 h2 strong { display: block; font-size: 1.5em; margin-top: 6px; }

.section03 ul.review { flex: 1 1 0; display: block; list-style: none; padding: 40px 0; overflow: hidden; }
.section03 ul.review .review-track { display: flex; gap: 20px; align-items: stretch; will-change: transform; }

.section03 ul.review li { flex: 0 0 clamp(260px, 28vw, 360px); backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%); background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7)); border-radius: 22px; padding: 20px 20px 22px; box-shadow: 0 5px 13px rgba(15,23,42,0.18); border: 1px solid rgba(255,255,255,0.9); transition: transform .22s ease, box-shadow .22s ease, background .22s ease; box-sizing: border-box; }

.section03 ul.review li:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,145,219,0.35); background: linear-gradient(145deg, rgba(255,255,255,1), rgba(240,249,255,0.95)); }

.section03 ul.review h3 { margin: 0 0 8px; font-size: 1.05em; color: #005fa3; font-weight: 600; }
.section03 .reviewName { display: inline-block; font-size: 0.8em; opacity: 0.96; background: rgba(0,145,219,0.08); padding: 4px 10px; border-radius: 999px; border: 1px solid rgba(0,145,219,0.35); margin-bottom: 10px; color: #0077c8; }
.section03 ul.review p { margin: 0; font-size: 0.9em; line-height: 1.6; color: #004c73; word-break: keep-all; }
.section03 ul.review::-webkit-scrollbar { display: none; }





/* section04 */
.section04 { display: flex; align-items: center; justify-content: center; height: 100vh; box-sizing: border-box; background: linear-gradient(135deg,#fff7d6 0%,#e6f6ff 40%,#cde8ff 100%); }
.section04 .wrapper { width: 100%; max-width: 1400px; margin: 0 auto; text-align: center; color: #00416b; display: flex; flex-direction: column; align-items: center; gap: 36px; }
.section04 .title h2 { margin: 0 0 16px; font-size: 2.6em; line-height: 1.35; font-weight: 400; }
.section04 .title h2 sub { display: block; font-size: .6em; letter-spacing: 0.12em; }
.section04 .title h2 span { font-weight: 700; color: var(--colorBlue); }
.section04 .title p { margin: 0; font-size: 1.1em; line-height: 1.6; }

.section04 .metrics { width: 100%; max-width: 1200px; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin: 0 auto 20px; }
.section04 .metrics article { flex: 1 1 220px; min-width: 0; padding: 18px 20px; border-radius: 18px; background: rgba(255,255,255,.9); box-shadow: 0 10px 26px rgba(0,0,0,.06); text-align: left; box-sizing: border-box; }
.section04 .metrics article > span { display: block; font-size: 0.9em; margin: 0 0 8px; opacity: .8; }
.section04 .metrics article h3 { margin: 0; font-size: 1.9em; line-height: 1.2; color: #003a66; }
.section04 .metrics article h3 span { display: inline; font-size: 1.2em; font-weight: 700; }
.section04 .metrics article h3 sub { font-size: .7em; margin-left: 4px; vertical-align: baseline; }
.section04 .metrics article p { margin: 10px 0 0; font-size: 0.85em; line-height: 1.5; opacity: 0.9; word-break: keep-all; }


.section04 .btns { width: 100%; max-width: 1200px;display: flex; flex-direction: row; gap: 30px; box-sizing: border-box; }
.section04 .btns > div { flex: 1 1 0; display: flex; flex-direction: column; gap: 10px; }
.section04 .btnTitle { margin: 0; padding: 6px 10px; border-radius: 10px; background: rgba(0,145,219,.08); color: #00538f; font-weight: 500; font-size: .95em; text-align: left; }
.section04 .btnTitle strong { font-weight: 700; color: var(--colorBlue); }
.section04 .appLink { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.section04 .appLink li { flex: 1 1 auto; }
.section04 .appLink a { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 14px; border-radius: 999px; background: #fff; border: 1px solid rgba(0,145,219,.35); color: #00578e; font-weight: 500; font-size: .9em; text-decoration: none; box-shadow: 0 4px 10px rgba(0,0,0,.04); transition: all .2s ease; white-space: nowrap; }
.section04 .appLink a span { font-size: 0.8em; opacity: 0.9; }
.section04 .appLink a:hover { background: linear-gradient(135deg,#00a2ff,#5fd4ff); color: #fff; border-color: transparent; box-shadow: 0 8px 20px rgba(0,145,219,.35); transform: translateY(-2px); }

.section04 .joinUs { width: 100%; max-width: 1200px; padding: 40px 40px; border-radius: 18px; background: rgba(255,255,255,.9); box-shadow: 0 10px 26px rgba(0,0,0,.06); display: flex; gap: 10px; box-sizing: border-box; align-items: center; justify-content: space-between; margin-top: 40px; }
.section04 .joinUs .title { text-align: left; }
.section04 .joinUs h2 { margin: 0; font-size: 2.1em; font-weight: 500; line-height: 1.35; color: #003b66; }
.section04 .joinUs p { margin: 0; font-size: 1.2em; line-height: 1.7; color: #4c6072; margin-top: 10px; }
.section04 .joinUs a { display: inline-flex; align-items: center; justify-content: center; padding: 14px 26px; border-radius: 999px; background: #0091db; color: #fff; font-size: 1.1em; font-weight: 500; text-decoration: none; box-shadow: 0 6px 16px rgba(0,145,219,0.25); transition: all .25s ease; width: fit-content; }
.section04 .joinUs a:hover { background: #007ac0; box-shadow: 0 10px 24px rgba(0,145,219,0.35); transform: translateY(-2px); }





/* footer */
#footer { background: #111827; color: #e5e7eb; padding: 32px 0 40px; font-size: 14px; }
#footer .wrapper { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 220px 1.5fr 1.2fr; column-gap: 40px; align-items: flex-start; box-sizing: border-box; }

#footer .btmLogo { margin: 0; }
#footer .btmLogo img { max-width: 180px; height: auto; display: block; }

#footer address { margin: 0; font-style: normal; color: #d1d5db; line-height: 1.7; font-size: 0.95em;  }
#footer address dl { margin: 0 0 4px; display: flex; gap: 8px; }
#footer address dt { min-width: 120px; color: #9ca3af; }
#footer address dd { margin: 0; color: #e5e7eb; }

#footer .box3 { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
#footer .btmNav { display: flex; gap: 16px; justify-content: flex-end; }
#footer .btmNav a { color: #d1d5db; text-decoration: none; font-size: 1em; padding-bottom: 2px; border-bottom: 1px solid transparent; transition: color .2s ease, border-color .2s ease; }
#footer .btmNav a:hover { color: #ffffff; border-color: rgba(255,255,255,0.4); }

#footer .snsBox { list-style: none; margin: 0; padding: 0; display: flex; gap: 10px; }
#footer .snsBox li { margin: 0; }
#footer .snsBox a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 999px; background: rgba(31,41,55,0.9); box-shadow: 0 4px 10px rgba(0,0,0,0.5); transition: background .2s ease, transform .2s ease, box-shadow .2s ease; overflow: hidden; }
#footer .snsBox a:hover { background: #2563eb; transform: translateY(-2px); box-shadow: 0 8px 18px rgba(37,99,235,0.45); }
#footer .snsBox img { object-fit: cover; width: 100%; display: block; }
#footer .snsBox li:nth-child(2) a { background: #ff0000; }




@media (max-width: 1200px) {
  .section02 h2 { padding: 0 16px; font-size: 1.45em; }
  .section03 { padding: 60px 24px; gap: 24px; }
  .section03 .content { flex: 0 0 38%; }
  .section04 .wrapper { padding: 0 16px; }
  .section04 .joinUs { padding: 32px 24px; }
}

@media (max-width: 1024px) {
  .section02 .specCard { --cardW: clamp(260px, 60vw, 340px); padding-top: 36px; }
  .section02 .specNav { bottom: 64px; }

  .section03 { flex-direction: column; padding: 60px 20px 80px; align-items: stretch; }
  .section03 .content { height: 260px; max-width: 100%; flex: 0 0 auto; border-radius: 24px; padding: 24px 22px; }
  .section03 ul.review { width: 100%; padding: 28px 0 8px; }

  .section04 { height: auto; padding: 70px 0 80px; }
  .section04 .wrapper { gap: 28px; }
  .section04 .title h2 { font-size: 2.2em; }
  .section04 .metrics { gap: 14px; }
  .section04 .metrics article { padding: 16px 16px; }
  .section04 .btns { flex-direction: column; gap: 16px; }
  .section04 .btns > div { width: 100%; }
  .section04 .joinUs { margin-top: 28px; }
}


@media (max-width: 900px) { 
	.section01 .linkBox > div { max-width: 100%; }
	.section01 .linkBox {  flex-direction: column; max-width: 520px; margin-top: 56px; grid-template-columns: 1fr; } 
	
	.section02 h2 { font-size: 20px; }
	.section02 .specCard { --gap: 16px; }
	
	section04 { padding: 50px 16px; height: auto; } .section04 .wrapper { gap: 28px; } .section04 .title h2 { font-size: 2.1em; } .section04 .btns { flex-direction: column; padding: 18px 18px; }
	
	#footer .wrapper { grid-template-columns: 1fr; row-gap: 24px; text-align: left; }
	#footer .btmLogo { text-align: left; }
	#footer .box3 { align-items: flex-start; }
	#footer .btmNav { justify-content: flex-start; flex-wrap: wrap; }
}


@media (max-width: 768px) {
  .section02 { padding: 40px 0 60px; }
  .section02 h2 { font-size: 1.2em; padding: 0; margin-bottom: 24px; }
  .section02 .specCard { --cardW: 80vw; --cardH: auto;; padding: 24px 0 40px; }
  .section02 .specCard > div { transform: scale(.94); }
  .section02 .specCard > div.is-active { transform: scale(1); }
  .section02 .specNav { position: static; margin-top: 12px; grid-template-columns: 40px 1fr 40px; }

  .section03 { padding: 40px 16px 70px; }
  .section03 .content { height: auto; min-height: 120px; padding: 22px 18px; background: #0091db;   }
  .section03 h2 { font-size: 1.1em; }
  .section03 h2 strong { font-size: 1.3em; }
  .section03 ul.review { padding: 24px 0 0; gap: 14px; }
  .section03 ul.review li { flex: 0 0 82vw; padding: 18px 16px 20px; }

  .section04 { padding: 60px 0 70px; }
  .section04 .wrapper { gap: 24px; }
  .section04 .title h2 { font-size: 1.9em; }
  .section04 .title p { font-size: 1em; padding: 0 12px; }
  .section04 .metrics { flex-direction: column; max-width: 100%; padding: 0; }
  .section04 .metrics article { text-align: center; flex: 1 1 auto; }
  .section04 .btns { padding: 0; gap: 30px; }
  .section04 .btnTitle { text-align: center; }
  .section04 .appLink { justify-content: center; }
  .section04 .appLink li { flex: 0 0 100%; }
  .section04 .appLink a { font-size: 0.9em; }

  .section04 .joinUs { flex-direction: column; align-items: center; gap: 16px; margin-top: 32px; padding: 26px 20px; text-align: center; }
  .section04 .joinUs h2 { font-size: 1.6em; }
  .section04 .joinUs p { font-size: 1em; }
  .section04 .joinUs a { width: 100%; justify-content: center; font-size: 1em; }
}

@media (max-width: 480px) {
  .section02 h2 { font-size: 1.05em; }
  .section03 ul.review li { flex: 0 0 88vw; }
  .section04 .title h2 { font-size: 1.6em; }
  .section04 .joinUs h2 { font-size: 1.4em; }
}



@media (prefers-reduced-motion: reduce) {
  .viewport { scroll-behavior: auto; }
}