*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: balance;
}

:root {
  --blue: #0016D5;
  --blue-dark: #0010AA;
  --black: #111111;
  --white: #ffffff;
  --gray-light: #f5f5f7;
  --gray-mid: #888;
  --max-width: 1440px;
  --nav-height: 80px;
  --bg-color: #ffffff;
  --card-bg: #f7f7f8;
  --text-main: #111111;
  --text-sub: #505050;
  --text-info: #767676;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px; 
}

body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  background: #fff;
  color: var(--black);
  overflow-x: hidden;
  margin: 0;
  word-break: keep-all;
}

html, body {
  max-width: 100%;
  overflow-x: hidden; 
  position: relative;
  height: auto;
  min-height: 100%;
}

body.no-scroll {
  overflow: hidden;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.wheel-reveal {
  opacity: 0;
  transform: translateY(150px);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.wheel-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.pt-200 {
  padding-top: clamp(120px, 8vw, 200px);
}

.title_copy {
  font-size: clamp(28px, 3.8vw, 40px) !important;
}

.sub_copy {
  font-size: clamp(15px, 1.8vw, 18px) !important;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: var(--max-width);
  z-index: 100;
  height: var(--nav-height);
  background: #ffffffd9;
  backdrop-filter: blur(10px);
  border-radius: 50px;
  transition: transform 0.4s ease-in-out, background-color 0.3s, opacity 0.4s ease-in-out;
}

nav.nav-hidden {
  transform: translate(-50%, -150%);
  opacity: 0;
}

.nav-inner {
  width: 100%;
  height: 100%;
  padding: 0 20px 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 28px;
  color: var(--blue);
  letter-spacing: -0.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.logo span {
  color: var(--blue);
}

.logo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
  margin-left: 2px;
  margin-bottom: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 50px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--blue);
}

.btn-start {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-start:hover {
  background: #333;
  transform: translateY(-1px);
}

.btn-start-hero{
   display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  background: var(--white);
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  border: 1px solid #ddd;
    box-shadow: 0px 0px 7px #c5c5c5;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 24px 32px 32px;
  z-index: 99;
  flex-direction: column;
  gap: 20px;
  animation: slideDown 0.25s ease;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.mobile-menu .btn-start {
  margin-top: 8px;
  width: 100%;
  border-radius: 30px;
  color: var(--white);
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .nav-links {
    position: static;
    transform: none;
    margin: 0 auto;
    padding-left: 24px;
  }
  .nav-inner {
    padding: 0 32px;
  }
  
  .feature-num {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .feature-num::before,
  .feature-num::after {
    content: "";
    display: inline-block;
    width: 60px; 
    height: 1px; 
    background-color: #d1d1d1;
    margin: 0 16px;
  }
  .feature-num::after {
    margin-left: 8px; 
  }
}

@media (max-width: 768px) {
  nav {
    top: 0;
    width: 100%;
    max-width: none;
    border-radius: 0;
    left: 0;
    transform: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  }
  nav.nav-hidden {
    transform: translateY(-100%);
    opacity: 0;
  }
  .nav-links,
  .nav-inner>.btn-start {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-inner {
    padding: 0 24px;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    padding: 0 20px;
  }
}

.hero {
  width: 100%;
  height: 100vh;
  min-height: 700px;
  padding-top: calc(var(--nav-height) + 24px + 10vh);
  padding-bottom: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url(../images/hero_bg.svg);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  flex-shrink: 0;
}

.hero-pretitle {
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(10px);
}

.hero-pretitle strong {
  font-weight: 900;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  margin-top: 14px;
  margin-bottom: 0;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(10px);
      line-height: 1.6;
}

.hero-headline {
  font-weight: 900;
  line-height: 1.15;
  color: var(--black);
  letter-spacing: -0.03em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; 
  column-gap: 20px;
  margin: 6px 0 16px;
  overflow: visible;
}

.word-group {
  display: inline-flex; 
  align-items: center;
  white-space: nowrap;
}

.hero-headline .kw-low,
.hero-headline .kw-up {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  color: var(--blue);
  font-size: clamp(40px, 7.5vw, 80px);
  padding-right: 12px;
}

.hero-btn {
  margin-top: 32px;
  height: 54px;
  padding: 0 40px;
  font-size: 16px;
  opacity: 0;
  transform: translateY(10px);
  display: inline-flex;
}

.anim-ready .hero-btn.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hl-chunk {
  display: inline-block;
  overflow: visible;
  vertical-align: baseline;
}

.hl-inner {
  display: inline-block;
  opacity: 0;
  transition: none;
}

.hl-inner#hl2 {
  transform: scale(2.5);
  transform-origin: right center;
}

.hl-inner#hl4 {
  transform: scale(2.5);
  transform-origin: left center;
}

.anim-ready .hl-inner#hl2.visible,
.anim-ready .hl-inner#hl4.visible {
  opacity: 1;
  transform: scale(1) translateX(0);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

/* 카드 스타일링 적용 */
#hl1,
#hl3 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  width: 0; 
  height: clamp(46px, 5.5vw, 64px);
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(15px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.anim-ready #hl1.visible,
.anim-ready #hl3.visible {
  width: clamp(120px, 16vw, 200px);
  max-width: none;
  opacity: 1;
  transform: translateX(0);
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease 0.1s, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-ready .hero-pretitle.visible,
.anim-ready .hero-subtitle.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.roll-target {
  display: inline-block;
  /* 롤링 트랜지션 속도 개선 */
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

.roll-target.roll-out {
  transform: translateY(-100%);
  opacity: 0;
}

.roll-target.roll-ready {
  transform: translateY(100%);
  opacity: 0;
  transition: none;
}

.anim-ready .hl-inner#hl2.spread {
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scale(1) translateX(0px);
}

.anim-ready .hl-inner#hl4.spread {
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scale(1) translateX(0px);
}

.anim-ready .dashboard-wrapper {
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-ready .dashboard-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-inner,
  .dashboard-anchor {
    padding: 0 32px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: calc(var(--nav-height) + 80px);
    padding-bottom: 60px;
    background-position: center center;
  }
  .hero-btn {
    margin-top: 0;
    width: 200px;
  }
  .dashboard-wrapper {
    margin-top: 28px;
    padding-top: 0;
  }
  .hero-pretitle {
    margin-bottom: 20px;
  }
  .hero-headline {
    flex-direction: column;
    align-items: center;
  }
  .word-group {
    margin-bottom: 0; 
  }
  .hero-subtitle {
    margin-top: 24px;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .hero-inner,
  .dashboard-anchor {
    padding: 0 20px;
  }
  #hl1,
  #hl3 {
    font-size: clamp(18px, 5vw, 26px);
    height: clamp(40px, 10vw, 52px);
    margin-right: 0px;
    
  }
  .anim-ready #hl1.visible, 
  .anim-ready #hl3.visible {
    width: clamp(100px, 45vw, 130px); 
  }
  .hero-headline .kw-low,
  .hero-headline .kw-up {
    font-size: clamp(44px, 10vw, 64px);
  }
  .hero-pretitle {
    font-size: 17px;
    margin-bottom: 16px;
  }
  .hero-subtitle {
    font-size: 15px;
  }
}

/* 아래는 기존 CSS 속성 유지 (worry-section, feature-section, 등등) */

.worry-section {
  text-align: center;
  background-color: var(--bg-color);
}

.worry-header {
  margin-bottom: 20px;
}

.worry-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
}

.worry-header p {
  font-size: 18px;
  color: var(--text-info);
  margin: 0;
}

.worry-swiper-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.worry-swiper {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.worry-swiper .swiper-slide {
  width: 320px !important;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.35;
  transition: opacity 0.5s ease;
}

.worry-swiper .swiper-slide-active {
  width: 320px !important;
  opacity: 1;
  z-index: 10;
}

.worry-card {
  width: 280px;
  height: 200px;
  background: var(--card-bg);
  border-radius: 12px;
  padding: 30px 24px;
  box-sizing: border-box;
  position: relative;
  text-align: left;
  box-shadow: 1px 7px 10px rgba(0, 0, 0, 0.1);
  word-break: keep-all;
  transition: width 0.5s ease, height 0.5s ease, padding 0.5s ease, box-shadow 0.5s ease;
  overflow: hidden;
}

.worry-swiper .swiper-slide-active .worry-card {
  width: 320px;
  height: 250px;
  padding: 30px 24px;
  box-shadow: 2px 14px 20px rgba(0, 0, 0, 0.1);
}

.worry-card .quote {
  font-size: 16px;
  color: var(--text-info);
  margin-bottom: 12px;
  display: block;
  line-height: 1.4;
}

.worry-card .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-sub);
  margin: 0;
  transition: font-size 0.5s ease;
}

.worry-swiper .swiper-slide-active .worry-card .title {
  font-size: clamp(20px, 4vw, 24px);
}

.image-box {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 180px;
  height: 180px;
  border-radius: 0 0 12px 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
}

.image-circle {
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  z-index: 1;
}

.card-1 .image-circle {
  background-color: #FFB93D;
}

.card-2 .image-circle {
  background-color: #41BEA6;
}

.card-3 .image-circle {
  background-color: #0016D5;
}

.character-img {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
}

.character-img img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .worry-swiper .swiper-slide {
    width: 492px !important;
  }
  .worry-swiper .swiper-slide-active {
    width: 492px !important;
  }
  .worry-card {
    width: 456px;
    height: 250px;
  }
  .worry-swiper .swiper-slide-active .worry-card {
    width: 492px;
    height: 306px;
  }
  .image-box {
    width: 240px;
    height: 240px;
  }
  .image-circle {
    width: 230px;
    height: 230px;
    right: -15px;
    bottom: -35px;
  }
  .character-img {
    width: 125%;
  }
}

@media (max-width: 768px) {
  .worry-header {
    margin-bottom: 24px;
  }
  .worry-swiper {
    padding-top: 8px;
    padding-bottom: 40px;
  }
  .worry-swiper .swiper-slide {
    width: 270px !important;
    height: 300px;
  }
  .worry-swiper .swiper-slide-active {
    width: 290px !important;
  }
  .worry-card {
    width: 270px;
    height: 220px;
  }
  .worry-swiper .swiper-slide-active .worry-card {
    width: 290px;
    height: 240px;
    padding: 24px 20px;
  }
  .worry-header h2 {
    font-size: 24px;
  }
  .worry-header p {
    font-size: 15px;
  }
  .worry-card .quote {
    font-size: 14px;
  }
  .worry-card .title {
    font-size: 18px;
  }
  .image-box {
    width: 130px;
    height: 130px;
  }
  .image-circle {
    width: 130px;
    height: 130px;
    right: -10px;
    bottom: -20px;
  }
}

.feature-section {
  background-color: #fff;
  overflow-x: hidden;
}

.feature-container {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: clamp(32px, 8vw, 100px);
}

.feature-main-header {
  text-align: center;
  margin-bottom: 100px;
}

.feature-main-header h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
}

.feature-main-header p {
  color: #666;
  font-size: 18px;
}

.feature-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 120px;
  gap: 0;
  width: 100%;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1;
}

.feature-num {
  display: block;
  color: #999;
  letter-spacing: 8px;
  margin-bottom: 20px;
  font-size: 13px;
}

.feature-content h3 {
  line-height: 1.6;
  margin-bottom: 25px;
  font-weight: 800;
  font-size: clamp(22px, 4vw, 28px);
  letter-spacing: -1.2%;
}

.feature-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.feature-check-list {
  list-style: none;
}

.feature-check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.feature-check-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: #0016d5;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.ft-img-left {
  padding-right: 30px;
}

.ft-img-right {
  padding-left: 30px;
}

.feature-image-box {
  flex: 1;
  border-radius: 20px;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 20px;
}

.feature-placeholder-img img {
  max-width: 100%;
  height: auto;
  display: block;
}

.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-active {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1200px) {
  .feature-row{padding: 0 20px;}
  .feature-image-box{margin: 0;}
}
@media (max-width: 1024px) {
  .feature-num {
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 4px;
  }
  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .feature-content {
    max-width: 100%;
  }
  .feature-image-box {
    width: 100%;
    min-height: 210px;
  }
  .feature-check-list {
    display: inline-block; /* 리스트 전체 덩어리를 하나로 묶음 */
    text-align: left;      /* 텍스트와 아이콘은 왼쪽으로 가지런히 정렬 */
  }
  
  .feature-check-list li {
    justify-content: flex-start; /* 개별 아이템 가운데 정렬 해제 */
  }
  .reveal-left,
  .reveal-right {
    padding: 0 20px;
  }
  .ft-img-left {
    padding: 0px;
  }
  .ft-img-right {
    padding: 0px;
  }
}

@media (max-width: 768px) {
  .feature-row,
  .feature-row.reverse {
    gap: 0px;
  }
  
  .feature-placeholder-img{margin-top: 12px;}
}

.carousel-section {
  background-color: #F0F0F0;
  overflow: hidden;
  height: 700px;
  display: flex;
  flex-direction: column;
}

.carousel-header {
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 10;
}

.carousel-header h2 {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 12px 0;
  color: #111;
  padding-top: clamp(32px, 8vw, 60px);
  line-height: 1.4;
}

.carousel-header h1 {
  font-size: 48px;
  font-weight: 900;
  margin: 0 0 15px 0;
  letter-spacing: -1.5px;
  color: #0016D5;
}

.carousel-header p {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  color: #505050;
}

.wheel-container {
  position: relative;
  width: 100%;
  height: 480px;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  cursor: grab;
}
.wheel-container:active {
cursor: grabbing; 
}
.wheel {
  position: relative;
  width: 260px;
  height: 340px;
  margin-top: 30px;
  transform-origin: center 1050px;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
  transform-origin: inherit;
  transition: opacity 0.6s ease, background-color 0.6s ease, color 0.6s ease;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.img-area {
  width: 130px;
  height: 130px;
  margin-bottom: 20px;
  background-color: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.img-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.card h3 {
  font-size: 22px;
  color: #1a1a1a;
  margin: 0 0 4px 0;
  font-weight: 800;
  letter-spacing: -0.5px;
  transition: color 0.6s ease;
  word-break: keep-all;
}

.card h4 {
  font-size: 15px;
  color: #555555;
  margin: 0 0 8px 0;
  font-weight: 600;
  transition: color 0.6s ease;
  letter-spacing: -0.3px;
}

.card p {
font-size: 15px;
color: #777;
margin: 0;
line-height: 1.4;
word-break: keep-all;
transition: color 0.6s ease;
padding-top: 6px;
font-weight: 300;
}

.card.active {
  background-color: #0016D5;
}

.card.active h3,
.card.active h4,
.card.active p {
  color: #FFF;
}

.card.active .img-area {
  background-color: transparent;
}

@media (max-width: 768px) {
 .carousel-section {
    height: auto;
  }
  .carousel-header {
    margin-top: 40px;
  }
  .carousel-header h2 {
    font-size: 22px;
  }
  .carousel-header h1 {
    font-size: 38px;
  }
  .carousel-header p {
    font-size: 16px;
  }
  .wheel-container {
   height: 350px;
    margin-top: 30px;
  }
  .wheel {
    width: 220px;
    height: 260px;
    margin-top: 20px;
    transform-origin: center 700px ;
  }
  .img-area {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
  .card h3 {
    font-size: 18px;
  }
  .card h4 {
    font-size: 13px;
  }
  .card p {
    font-size: 13px;
  }
}

.contact-section {
 padding: 120px 0;
  background-color: #ffffff;
}

.contact-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-inner {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.contact-title {
  flex: 0 0 300px;
}

.contact-title h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 5px;
  letter-spacing: -0.5px;
}

.contact-logo-text {
  font-size: 72px;
  font-weight: 900;
  color: #001cf0;
  font-style: italic;
  letter-spacing: -2px;
  line-height: 1;
}

.contact-form-area {
  flex: 1;
  max-width: 800px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 16px;
  font-size: 14px;
  color: #333;
  outline: none;
  font-family: inherit;
  transition: border-color 0.3s, background-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
  background-color: #fff;
  border: 1px solid var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 22, 213, 0.1);
}

.form-group textarea {
  resize: none;
  height: 140px;
}

.form-agreement {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.form-agreement input[type="checkbox"] {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  accent-color: #111;
}

.form-agreement label {
  font-size: 14px;
  color: #666;
  cursor: pointer;
}

.submit-btn {
  width: 100%;
  background-color: #151515;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #333;
}

@media (max-width: 900px) {
  .contact-inner {
    flex-direction: column;
  }
  .contact-title {
    flex: none;
  }
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
  .contact-title h2 {
    text-align: center;
  }
  .contact-logo-text {
    text-align: center;
  }
}

.footer-section {
  background-color: #151515;
  color: #fff;
  padding: 60px 0 80px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -1px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 600;
  color: #ddd;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.company-info li {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #aaa;
  gap: 10px;
}

.company-info svg {
  width: 14px;
  height: 14px;
  fill: #777;
  flex-shrink: 0;
}

.copyright {
  font-size: 11px;
  color: #666;
}

@media (max-width: 900px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
/* ── 언어 전환 (html[lang] 속성 기반) ───────────────────────── */
html[lang="ko"] [lang="en"] { display: none; }
html[lang="en"] [lang="ko"] { display: none; }

/* 네브바 언어 선택 */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: 20px;
}

.nav-lang-sep {
  color: #ccc;
  font-size: 12px;
  pointer-events: none;
  line-height: 1;
}

.nav-lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: 700;
  color: #bbb;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.8px;
  transition: color 0.2s;
  line-height: 1.4;
}

.nav-lang-btn.active {
  color: var(--black);
}

.nav-lang-btn:hover:not(.active) {
  color: var(--black);
}

/* 푸터 언어 선택 */
.footer-lang {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 4px;
}

.footer-lang-sep {
  color: #333;
  font-size: 12px;
  line-height: 1;
  pointer-events: none;
}

.footer-lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: 700;
  color: #444;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.8px;
  transition: color 0.2s;
  line-height: 1.4;
}

.footer-lang-btn.active {
  color: #fff;
}

.footer-lang-btn:hover:not(.active) {
  color: #aaa;
}
