/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 17.5px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Pretendard', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul,
li {
  list-style: none;
}

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

/* ===== Header ===== */
.header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  transition: background-color 0.3s ease;
}

.header-wrap.scrolled {
  background-color: #3b82c4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.header-wrap.scrolled .header {
  padding-top: 16px;
  padding-bottom: 16px;
}

.header {
  width: 100%;
  max-width: 1368px;
  margin: 0 auto;
  padding: 48px 60px;
  transition: padding 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 40px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__nav a {
  color: #fff;
  font-size: 17.5px;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}

.header__nav a:hover {
  opacity: 0.8;
}

.header__nav .nav-home {
  display: flex;
  align-items: center;
}

.header__nav .nav-home img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Mobile hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: #2a6faa;
  z-index: 160;
  padding: 80px 30px 30px;
  transition: right 0.3s;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  display: block;
  color: #fff;
  font-size: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 500;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  width: 100%;
  height: 900px;
  background: #3b82c4;
  overflow: hidden;
  padding-bottom: 60px;
}

.hero__slider {
  position: relative;
  width: 100%;
  height: 900px;
  overflow: hidden;
  z-index: 1;
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.hero__slide.active {
  transform: translateX(0);
  pointer-events: auto;
}

.hero__slide.slide-out-left {
  transform: translateX(-100%);
}

.hero__slide.slide-in-left {
  transform: translateX(-100%);
  transition: none;
}

.hero__slide.slide-out-right {
  transform: translateX(100%);
}

.hero__slide.slide-in-right {
  transform: translateX(100%);
  transition: none;
}

.hero__content {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
  padding: 0px 60px 0;
  gap: 40px;
}

/* Left: Illustration */
.hero__illustration {
  position: relative;
  flex: 0 0 45%;
  max-width: 520px;
  transform: translateY(50px);
  z-index: 4;
}

.hero__balloon {
  width: 100%;
  max-width: 460px;
  position: relative;
  z-index: 1;
}

.hero__sun {
  position: absolute;
  top: -5%;
  right: 2%;
  width: 45%;
  z-index: 5;
  animation: sunFloat 2s ease-in-out infinite;
}

@keyframes sunFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

/* Right: Text */
.hero__text {
  flex: 1;
  color: #fff;
  padding-top: 20px;
  padding-left: 40px;
}

.hero__title {
  font-size: 33.5px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.hero__desc {
  font-size: 19.5px;
  line-height: 1.7;
  letter-spacing: -0.05em;
  opacity: 0.92;
  margin-bottom: 28px;
  font-weight: 400;
}

.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__stat {
  font-size: 18.5px;
  font-weight: 400;
}

.hero__stat strong {
  font-size: 37.5px;
  font-weight: 800;
  margin: 0 4px;
}

/* Bottom illustration */
.hero__bottom-wrap {
  position: absolute;
  bottom: 146px;
  left: 0;
  right: 0;
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 60px;
  box-sizing: border-box;
  pointer-events: none;
  z-index: 1;
}

.hero__bottom {
  display: block;
  margin-left: calc(45% - 20px);
  width: 55%;
  max-width: 700px;
}

/* Slider arrows */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.hero__arrow:hover {
  opacity: 1;
}

.hero__arrow img {
  width: 24px;
  height: auto;
}

.hero__arrow--left {
  left: calc(50% - 700px);
}

.hero__arrow--right {
  right: calc(50% - 700px);
}

/* Slider dots */
.hero__dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.hero__dot.active {
  background: #fff;
}

/* === Hero Slide 2 === */
.hero__slide--02 {
  position: absolute;
  inset: 0;
}

.hero02-content {
  position: absolute;
  inset: 0;
}

.hero02-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 60px;
  box-sizing: border-box;
  color: #fff;
  z-index: 5;
}

.hero02-text .hero__title {
  margin-bottom: 16px;
}

.hero02-text .hero__desc {
  max-width: 560px;
}

.hero02-text .hero__stats {
  margin-top: 20px;
}

.hero02-illust {
  position: absolute;
  right: calc(50% - 470px);
  bottom: 146px;
  width: 360px;
  z-index: 2;
  pointer-events: none;
}

.hero02-balloon {
  display: block;
  width: 100%;
}

.hero02-person {
  position: absolute;
  top: 0%;
  left: 75%;
  transform: translateX(-50%);
  width: 55%;
  z-index: 5;
  animation: personFloat 2s ease-in-out infinite;
}

@keyframes personFloat {

  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(0deg);
  }

  50% {
    transform: translateX(-50%) translateY(-18px) rotate(-3deg);
  }
}

.hero02-bottom {
  position: absolute;
  bottom: 146px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  z-index: 3;
  pointer-events: none;
}

.hero02-bottom img {
  display: block;
  width: 100%;
}

/* === Hero Slide 3 === */
.hero__slide--03 {
  position: absolute;
  inset: 0;
}

.hero03-content {
  position: absolute;
  inset: 0;
}

.hero03-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-55%);
  width: 560px;
  color: #fff;
  z-index: 5;
}

.hero03-text .hero__title {
  margin-bottom: 20px;
}

.hero03-text .hero__desc {
  max-width: 560px;
}

.hero03-text .hero__stats {
  margin-top: 28px;
}

.hero__stats--row {
  flex-direction: row;
  gap: 50px;
}

.hero__stats--row .hero__stat {
  font-size: 17.5px;
  line-height: 1.6;
}

.hero03-illust {
  position: absolute;
  left: calc(50% - 560px);
  bottom: 146px;
  width: 420px;
  z-index: 2;
  pointer-events: none;
}

.hero03-balloon {
  display: block;
  width: 100%;
}

.hero03-leaf {
  position: absolute;
  top: -5%;
  left: 0%;
  width: 55%;
  z-index: 5;
  animation: leafFloat 2s ease-in-out infinite;
}

@keyframes leafFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

.hero03-bottom {
  position: absolute;
  bottom: 146px;
  right: calc(50% - 600px);
  width: 909px;
  z-index: 3;
  pointer-events: none;
}

.hero03-bottom img {
  display: block;
  width: 100%;
}

/* ===== 함께 나눈 이야기 Section ===== */
.story2025-section {
  background: #ffffff;
  overflow: hidden;
  padding: 83px 0;
}

.story2025-layout {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  gap: 50px;
  box-sizing: border-box;
}

.story2025-left {
  flex: 0 0 240px;
  position: relative;
  z-index: 2;
  text-align: left;
}

.story2025-title {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 29.5px;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
  margin-bottom: 20px;
}

.story2025-left p {
  font-size: 17.5px;
  line-height: 1.8;
  color: #000;
  letter-spacing: -0.9px;
  margin-bottom: 28px;
}

.story2025-nav {
  display: flex;
  gap: 10px;
}

.story2025-nav button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}

.story2025-nav button img {
  display: block;
}

@media (hover: hover) {
  .story2025-nav button:hover {
    opacity: 0.7;
  }
}

.story2025-nav button:active {
  opacity: 0.7;
}

.story2025-carousel {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  position: relative;
  margin-right: -150px;
  padding-top: 10px;
}

.story2025-swiper {
  overflow: visible !important;
  padding-top: 10px;
  margin-top: -10px;
  padding-bottom: 34px;
}

.story2025-swiper .swiper-slide {
  width: 395px !important;
  height: auto !important;
}

/* 카드 스타일 */
.story-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.story-card {
  width: 395px;
  height: 490px;
  background: #fff;
  border-radius: 42px;
  box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.story-card:hover {
  transform: translateY(-3px);
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.14);
}

.story-card-body {
  flex: 1;
  background: url(../img/main/story/person_card_bg.png) no-repeat center top / cover;
  padding: 34px 30px 26px;
  position: relative;
  color: #231815;
  text-align: left;
  z-index: 1;
}

.story-tag {
  display: inline-block;
  background: #005891;
  color: #fff;
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.8;
  padding: 2px 17px;
  border-radius: 26px;
  margin-bottom: 32px;
}

.story-card-body h3 {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #231815;
  margin-bottom: 25px;
}

.story-card-body p {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.8;
  color: #231815;
}

.story-card-photo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: -68px;
  padding-bottom: 24px;
  padding-right: 42px;
  position: relative;
  z-index: 2;
}

.story-card-chip {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  padding: 4px 18px;
  border-radius: 30px;
  position: absolute;
  left: 30px;
  bottom: 24px;
}

.story-card-chip.orange {
  background: #f39700;
}

.story-card-chip.green {
  background: #009f3a;
}

.story-card-chip.sky {
  background: #00b9ef;
}

.story-card-photo img {
  width: 133px;
  height: 133px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 1024px) {
  .story2025-layout {
    gap: 30px;
    padding: 60px 20px;
  }

  .story2025-left {
    flex: 0 0 200px;
  }

  .header {
    padding: 20px 30px;
  }

  .header__nav {
    gap: 24px;
  }

  .header__nav a {
    font-size: 15px;
  }

  .hero__content {
    padding: 100px 40px 0;
    gap: 30px;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__desc {
    font-size: 15px;
  }

  .hero__stat strong {
    font-size: 30px;
  }

  .hero__bottom-wrap {
    padding: 0 30px;
  }

  .hero__bottom {
    width: 60%;
    margin-left: calc(45% + 20px);
  }

  .hero02-text {
    padding: 0 40px;
  }

  .hero02-illust {
    right: 20px;
    width: 340px;
  }

  .hero03-text {
    left: auto;
    right: 40px;
    width: 440px;
  }

  .hero03-illust {
    left: 20px;
    width: 320px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .story2025-layout {
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 20px;
    gap: 20px;
  }

  .story2025-left {
    flex: none;
    width: 100%;
    display: contents;
  }

  .story2025-left .story2025-title {
    font-size: 22px;
    margin-bottom: 12px;
    order: 1;
  }

  .story2025-left>p {
    font-size: 14px;
    margin-bottom: 16px;
    order: 2;
  }

  .story2025-left>p br {
    display: none;
  }

  .story2025-nav {
    order: 4;
    justify-content: center;
    width: 100%;
  }

  .story2025-nav button img {
    height: 36px;
    width: auto;
  }

  .story2025-carousel {
    width: 100%;
    order: 3;
  }

  .story2025-swiper .swiper-slide {
    width: 280px !important;
  }

  .story-card {
    width: 280px;
    height: auto;
    min-height: 380px;
    border-radius: 28px;
  }

  .story-card-body {
    padding: 24px 20px 30px;
    min-height: 310px;
    box-sizing: border-box;
  }

  .story-tag {
    font-size: 13px;
    padding: 2px 12px;
    margin-bottom: 10px;
  }

  .story-card-body h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .story-card-body h3 {
    line-height: 1.5;
  }

  .story-card-body p {
    font-size: 13px;
  }

  .story-card-photo {
    margin-top: -45px;
    padding-right: 24px;
    padding-bottom: 16px;
  }

  .story-card-photo img {
    width: 100px;
    height: 100px;
  }

  .header {
    padding: 16px 20px;
  }

  .header-wrap {
    position: sticky;
    left: 0;
    background: #3b82c4;
  }

  .header-wrap.scrolled {
    background-color: #3b82c4;
  }

  .header__logo img {
    height: 42px;
  }

  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  section[id] {
    scroll-margin-top: 200px;
  }

  .mobile-nav-overlay,
  .mobile-nav {
    display: block;
  }


  .hero__slider {
    height: auto;
  }

  .hero__slide {
    position: absolute;
    display: flex;
    align-items: flex-start;
    pointer-events: none;
  }

  .hero {
    height: auto;
    overflow: hidden;
  }

  .hero__desc br {
    display: none;
  }

  .hero__content {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    padding: 45px 30px 20px;
    text-align: left;
    gap: 12px;
  }

  .hero__text {
    display: contents;
  }

  /* stats를 illustration과 같은 행에 겹치게 배치 */
  .hero__stats {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 5;
    padding: 0;
    gap: 24px;
    align-self: center;
  }

  .hero__stat:first-child {
    margin-left: 100%;
  }

  .hero__stat:last-child {
    margin-left: 35%;
  }

  .hero__illustration {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: end;
    max-width: 300px;
    width: 85%;
    transform: translateX(-20px);
  }

  .hero__title {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 26px;
    margin-bottom: 0;
    margin-left: 15%;
  }

  .hero__desc {
    grid-column: 1 / -1;
    grid-row: 3;
    font-size: 14px;
    margin-bottom: 0;
    margin-left: 15%;
    max-width: 75%;
  }

  .hero__stat br {
    display: none;
  }

  /* stat 2줄 표시: 라벨 + 숫자 */
  .hero__stat-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 2px;
  }

  .hero__stat {
    font-size: 15px;
    line-height: 1.3;
    white-space: nowrap;
  }

  .hero__stat strong {
    font-size: 26px;
    margin-left: 0;
  }

  .hero__bottom-wrap {
    display: none;
  }

  .hero__arrow {
    padding: 12px;
  }

  .hero__arrow img {
    width: 16px;
  }

  .hero__arrow--left {
    left: 8px;
  }

  .hero__arrow--right {
    right: 8px;
  }

  .hero__dots {
    bottom: 140px;
  }

  /* Slide 2 mobile: grid layout like slide 1 */
  .hero02-content {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    width: 100%;
    padding: 45px 30px 20px;
    gap: 12px;
    box-sizing: border-box;
  }

  .hero02-text {
    position: static;
    display: contents;
    transform: none;
    width: auto;
    max-width: none;
    padding: 0;
    text-align: left;
  }

  .hero02-text .hero__stats {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 5;
    padding: 0;
    margin-top: 0;
    align-self: center;
  }

  .hero02-text .hero__stat {
    margin-left: 50%;
  }

  .hero02-text .hero__title {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-left: 15%;
  }

  .hero02-text .hero__desc {
    grid-column: 1 / -1;
    grid-row: 3;
    max-width: 75%;
    margin-left: 15%;
  }

  .hero02-illust {
    position: relative;
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: end;
    right: auto;
    bottom: auto;
    transform: none;
    max-width: 260px;
    width: 75%;
  }

  .hero02-person {
    width: 52%;
  }

  .hero02-bottom {
    display: none;
  }

  /* Slide 3 mobile: grid layout like slide 1 */
  .hero03-content {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    width: 100%;
    padding: 45px 30px 20px;
    gap: 12px;
    box-sizing: border-box;
  }

  .hero03-text {
    position: static;
    display: contents;
    transform: none;
    width: auto;
    padding: 0;
    text-align: left;
  }

  .hero03-text .hero__stats {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 5;
    padding: 0;
    margin-top: 0;
    align-self: center;
    gap: 6px;
  }

  .hero03-text .hero__stats.hero__stats--row {
    flex-direction: column;
    gap: 12px;
  }

  .hero03-text .hero__stat:first-child {
    margin-left: 50%;
  }

  .hero03-text .hero__stat:last-child {
    margin-left: 70%;
  }

  .hero03-text .hero__title {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-left: 15%;
  }

  .hero03-text .hero__desc {
    grid-column: 1 / -1;
    grid-row: 3;
    max-width: 75%;
    margin-left: 15%;
  }

  .hero03-illust {
    position: relative;
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: end;
    left: auto;
    bottom: auto;
    transform: none;
    max-width: 300px;
    width: 85%;
  }

  .hero03-bottom {
    display: none;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero {
    overflow: hidden;
  }

  .hero__content {
    padding: 40px 16px 20px;
  }

  .hero__illustration {
    max-width: 220px;
    width: 70%;
  }

  .hero__stat:first-child {
    margin-left: 30%;
  }

  .hero__stat:last-child {
    margin-left: 10%;
  }

  .hero__title {
    font-size: 22px;
    margin-left: 15%;
  }

  .hero__desc {
    font-size: 13px;
    margin-left: 15%;
    max-width: 65%;
  }

  .hero__stat strong {
    font-size: 22px;
  }

  .hero02-content {
    padding: 40px 16px 20px;
  }

  .hero02-illust {
    max-width: 190px;
    width: 60%;
  }

  .hero02-text .hero__stat {
    margin-left: 20%;
  }

  .hero02-text .hero__title {
    margin-left: 15%;
  }

  .hero02-text .hero__desc {
    margin-left: 15%;
    max-width: 65%;
  }

  .hero03-content {
    padding: 40px 16px 20px;
  }

  .hero03-text .hero__stats.hero__stats--row {
    gap: 18px;
  }

  .hero03-illust {
    max-width: 220px;
    width: 70%;
  }

  .hero03-text .hero__stat:first-child {
    margin-left: 5%;
  }

  .hero03-text .hero__stat:last-child {
    margin-left: 25%;
  }

  .hero03-text .hero__title {
    margin-left: 15%;
  }

  .hero03-text .hero__desc {
    margin-left: 15%;
    max-width: 65%;
  }

  .story2025-swiper .swiper-slide {
    width: 240px !important;
  }

  .story-card {
    width: 240px;
    min-height: 340px;
    border-radius: 22px;
  }
}

/* ===== 사업 현황 Section ===== */
.business-section {
  background: #EDF4FA;
}

.business-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 150px;
  box-sizing: border-box;
}

.business-title-box {
  text-align: center;
  margin-bottom: 50px;
  padding-top: 133px;
}

.business-title-box h2 {
  font-size: 33.5px;
  font-weight: 500;
  margin-bottom: 16px;
}

.business-title-box p {
  font-size: 19.5px;
  color: #333;
  letter-spacing: -0.45px;
}

.business-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.business-card-wrap {
  flex: 1;
  max-width: 400px;
  text-decoration: none;
  color: inherit;
}

.business-card-box {
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  position: relative;
  aspect-ratio: 1 / 1;
  box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.business-card-box:hover {
  transform: translateY(-3px);
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.14);
}

.business-card-box h3 {
  font-size: 23.5px;
  font-weight: 500;
  color: #005891;
  text-align: center;
  margin: 0;
  position: relative;
  z-index: 2;
}

.card-illust {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.card-illust img {
  width: 100%;
  height: auto;
  display: block;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 43, 43, 0.76);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
  border-radius: 50px;
  box-sizing: border-box;
}

.business-card-box:hover .card-overlay {
  opacity: 1;
}

.card-overlay p {
  font-size: 19.5px;
  font-weight: 400;
  color: #fff;
  line-height: 1.7;
  text-align: center;
  word-break: keep-all;
}

/* 사업 현황 Tablet */
@media (max-width: 1024px) {
  .business-card-box {
    border-radius: 30px;
    padding-top: 30px;
  }

  .business-card-box h3 {
    font-size: 18px;
  }

  .card-overlay {
    border-radius: 30px;
    padding: 30px 24px;
  }

  .card-overlay p {
    font-size: 15px;
  }
}

/* 사업 현황 Mobile */
@media (max-width: 768px) {
  .business-inner {
    padding: 60px 20px;
  }

  .business-title-box {
    margin-bottom: 24px;
  }

  .business-title-box h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .business-title-box p {
    font-size: 14px;
  }

  .business-cards {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .business-card-wrap {
    max-width: 100%;
    width: 100%;
  }

  .business-card-box {
    border-radius: 28px;
    padding-top: 24px;
    aspect-ratio: auto;
    height: 280px;
  }

  .business-card-box h3 {
    font-size: 18px;
  }

  .card-illust {
    width: 280px;
    left: 50%;
    transform: translateX(-50%);
  }

  .card-overlay {
    border-radius: 28px;
    padding: 24px 20px;
  }

  .card-overlay p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* 사업 현황 Small Mobile */
@media (max-width: 480px) {
  .business-card-wrap {
    max-width: 100%;
  }
}

/* ===== 재정현황 Section ===== */
.financial-section {
  background: #EDF4FA;
  padding: 0 20px 80px;
}

.financial-card {
  max-width: 1200px;
  margin: 0 auto;
  background: #005891;
  border-radius: 40px;
  padding: 60px 60px 50px;
  color: #fff;
  box-sizing: border-box;
}

.financial-title {
  text-align: center;
  font-size: 29.5px;
  font-weight: 500;
  margin-bottom: 24px;
}

.financial-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.financial-btn {
  display: inline-block;
  padding: 10px 28px;
  border: 1.5px solid #fff;
  border-radius: 30px;
  background: #fff;
  color: #333;
  font-size: 17.5px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.financial-btn:hover {
  background: transparent;
  color: #fff;
}

.financial-grid {
  display: flex;
  gap: 0;
}

.financial-col {
  flex: 1;
  padding: 0 30px;
}

.financial-col:first-child {
  border-right: 1px solid #fff;
}

.financial-col-header {
  margin-bottom: 0;
  padding-bottom: 24px;
  border-bottom: 1px solid #fff;
}

.financial-label {
  display: block;
  font-size: 17.5px;
  font-weight: 400;
  margin-bottom: 8px;
  text-align: left;
}

.financial-amount {
  display: block;
  text-align: right;
}

.financial-number {
  font-family: 'Work Sans', sans-serif;
  font-size: 35.5px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.financial-unit {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 19.5px;
  font-weight: 500;
  margin-left: 2px;
}

.financial-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.financial-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 60px 0 53px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
}

.financial-item:last-child {
  border-bottom: none;
}

.financial-item-icon {
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.financial-item-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.financial-item-info {
  flex: 1;
  text-align: right;
}

.financial-item-label {
  display: block;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 19.5px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0;
}

.financial-item-amount {
  letter-spacing: -0.02em;
}

.financial-item-number {
  font-family: 'Work Sans', sans-serif;
  font-size: 35.5px;
  font-weight: 400;
}

.financial-item-unit {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 19.5px;
  font-weight: 500;
  margin-left: 2px;
}

.financial-footnote {
  margin-top: 24px;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 19.5px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.05em;
  color: #fff;
}

/* 재정현황 Tablet */
@media (max-width: 1024px) {
  .financial-card {
    padding: 40px 30px;
    border-radius: 30px;
  }

  .financial-title {
    font-size: 24px;
  }

  .financial-number {
    font-size: 26px;
  }

  .financial-item-number {
    font-size: 26px;
  }

  .financial-unit,
  .financial-item-unit {
    font-size: 16px;
  }

  .financial-col {
    padding: 0 20px;
  }
}

/* 재정현황 Mobile */
@media (max-width: 768px) {
  .financial-section {
    padding: 0 16px 40px;
    margin-top: 60px;
  }

  .financial-card {
    padding: 32px 20px;
    border-radius: 24px;
  }

  .financial-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .financial-buttons {
    margin-bottom: 28px;
    gap: 10px;
  }

  .financial-btn {
    padding: 8px 18px;
    font-size: 14px;
  }

  .financial-grid {
    flex-direction: column;
    gap: 32px;
  }

  .financial-col {
    padding: 0;
  }

  .financial-col:first-child {
    border-right: none;
    border-bottom: 1px solid #fff;
    padding-bottom: 32px;
  }

  .financial-col-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .financial-number {
    font-size: 24px;
  }

  .financial-item-number {
    font-size: 24px;
  }

  .financial-unit,
  .financial-item-unit {
    font-size: 15px;
  }

  .financial-item-icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
  }

  .financial-item-icon img {
    width: 56px;
    height: 56px;
  }

  .financial-footnote {
    font-size: 12px;
    margin-top: 20px;
  }
}

/* ===== 1% 소식 Section ===== */
.news-section {
  background: #f7f8fa;
  padding: 109px 0 156px;
  overflow: hidden;
}

.news-layout {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 50px;
  box-sizing: border-box;
}

.news-left {
  flex: 0 0 260px;
  position: relative;
  z-index: 2;
  text-align: left;
}

.news-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.news-title {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 29.5px;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
}

.news-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.news-link:hover {
  opacity: 0.6;
}

.news-left p {
  font-size: 17.5px;
  line-height: 1.8;
  color: #000;
  letter-spacing: -0.9px;
  margin-bottom: 28px;
}

.news-nav {
  display: flex;
  gap: 10px;
}

.news-nav button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}

.news-nav button img {
  display: block;
}

@media (hover: hover) {
  .news-nav button:hover {
    opacity: 0.7;
  }
}

.news-nav button:active {
  opacity: 0.7;
}

.news-carousel {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  position: relative;
  margin-right: -150px;
  padding-top: 54px;
}

.news-swiper {
  overflow: visible !important;
  padding-bottom: 10px;
}

.news-swiper .swiper-slide {
  width: 260px !important;
  height: 129px !important;
}

.news-card {
  display: flex;
  flex-direction: column;
  width: 260px;
  height: 129px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
  text-decoration: none;
  box-sizing: border-box;
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.14);
}

.swiper-slide:nth-child(odd) .news-card {
  background: #C7E6F5;
}

.swiper-slide:nth-child(even) .news-card {
  background: #fff;
}

.news-card-text {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  letter-spacing: -0.3px;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-date {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
  line-height: 1.8;
}

/* 1% 소식 Tablet */
@media (max-width: 1024px) {
  .news-layout {
    gap: 30px;
  }

  .news-left {
    flex: 0 0 200px;
  }

  .news-swiper .swiper-slide {
    width: 320px !important;
  }

  .news-swiper .swiper-slide {
    width: 260px !important;
    height: 130px !important;
  }

  .news-card {
    width: 260px;
    height: 130px;
  }
}

/* 1% 소식 Mobile */
@media (max-width: 768px) {
  .news-section {
    padding: 40px 0;
  }

  .news-layout {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
    gap: 20px;
  }

  .news-left {
    flex: none;
    width: 100%;
  }

  .news-title {
    font-size: 22px;
  }

  .news-left p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .news-left p br {
    display: none;
  }

  .news-nav button img {
    height: 36px;
    width: auto;
  }

  .news-carousel {
    width: 100%;
    padding-top: 0;
  }

  .news-swiper .swiper-slide {
    width: 240px !important;
    height: 125px !important;
  }

  .news-card {
    width: 240px;
    height: 125px;
    padding: 14px 16px;
  }

  .news-card-text {
    font-size: 14px;
  }

  .news-card-date {
    font-size: 12px;
  }
}

/* 1% 소식 Small Mobile */
@media (max-width: 480px) {
  .news-swiper .swiper-slide {
    width: 220px !important;
    height: 120px !important;
  }

  .news-card {
    width: 220px;
    height: 120px;
  }
}

/* ===== Footer ===== */
.footer {
  background: #D4D4D4;
  padding: 100px 0 140px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.footer-logo {
  display: block;
  margin-bottom: 20px;
}

.footer-logo>img {
  height: 45px;
  width: auto;
}

.footer-info {
  margin-bottom: 16px;
}

.footer-info p {
  font-size: 16.5px;
  line-height: 1.8;
  color: #005891;
  letter-spacing: -0.45px;
}

.footer-copyright {
  font-size: 16.5px;
  line-height: 1.8;
  color: #005891;
  letter-spacing: -0.45px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  margin-top: 65px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-link:hover {
  opacity: 0.7;
}

.footer-link span {
  font-size: 16.5px;
  font-weight: 600;
  color: #005891;
  letter-spacing: -0.45px;
}

.footer-link img {
  width: 25px;
  height: 25px;
}

/* Footer Tablet */
@media (max-width: 1024px) {
  .footer-inner {
    padding: 0 30px;
  }
}

/* Footer Mobile */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 50px;
  }

  .footer-inner {
    padding: 0 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-right {
    margin-top: 0;
    align-items: flex-start;
  }

  .footer-logo>img {
    height: 38px;
  }

  .footer-info p,
  .footer-copyright,
  .footer-link span {
    font-size: 13px;
  }
}

/* Footer Small Mobile */
@media (max-width: 480px) {
  .footer-logo>img {
    height: 32px;
  }

  .footer-info p,
  .footer-copyright,
  .footer-link span {
    font-size: 12px;
  }
}