@charset "utf-8";
/*
* File       : main.css
* Author     : gylee
*
* Dependency : css/main.css
*             
*
* SUMMARY:
* 1) Layout
* 2) MAIN VISUAL
* 3) MAIN PROJECT
* 4) MAIN BANNER
* 5) MAIN ABOUT DI
* 6) MAIN CONTACT
*/

/* **************************************** *
* Layout
* **************************************** */

.wrapper { width: 100%; max-width: 100%; overflow-x: hidden; }
/* ── TOP BANNER ── */
.top-banner {
  background: #5ab5e3;
  text-align: center;
  font-size: 13px;
  color: #fff;
  position: relative;
  height: 40px;
  line-height: 40px;
}
.section-container{
  max-width: 1200px; margin: 0 auto;
}
.top-banner span { background: #3a7fc1; border-radius: 4px; padding: 2px 8px; margin-right: 8px; font-size: 12px; }
.top-banner strong { font-weight: 700; }

/* ── NAV ── */
.nav-links a { text-decoration: none; color: #333; font-size: 15px; }
.nav-links a:hover { color: #5ab5e3; }
.nav-btns { display: flex; gap: 10px; }
.btn-outline {
  padding: 8px 22px; border: 1.5px solid #333; border-radius: 24px;
  background: transparent; font-size: 14px; cursor: pointer; color: #333;
}
.btn-dark {
  padding: 8px 22px; border: none; border-radius: 24px;
  background: #222; font-size: 14px; cursor: pointer; color: #fff;
}

/* ── SECTION 1: HERO ── */
#hero {
  min-height: calc(100vh - 130px);
  margin-top: 120px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  
  /* background:  url("../images/main-visual-bg-01.png") no-repeat left bottom; */
}

.hero-content { text-align: center; z-index: 2; position: relative; padding: 80px 0; }
.hero-content h1 {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400; color: #444; line-height: 1.2; margin-bottom: 8px;
 
}
.hero-content h1 strong { font-weight: 800; color: #333; }
.hero-content p { font-size: 18px; color: #222; margin: 20px 0 40px; line-height: 1.8; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-teal {
  padding: 16px 36px; border-radius: 50px;
  background: #5ab5e3; color: #fff; font-size: 16px;
  border: none; cursor: pointer; transition: background 0.2s;
}
.btn-teal:hover { background: #3a9fd4; }
.btn-teal-outline {
  padding: 16px 36px; border-radius: 50px;
  background: rgba(255,255,255,0.8); color: #5ab5e3; font-size: 16px;
  border: 1.5px solid #5ab5e3; cursor: pointer; transition: all 0.2s;
}
.btn-teal-outline:hover { background: #5ab5e3; color: #fff; }
.hero-video {
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}
#hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.2) 90%, rgba(255,255,255,0.5) 100%);
  z-index: 1;
}
/* ── SECTION 2: DARK BG ── */
#brand {
  min-height: 70vh;
  background: url("../images/brand-bg.png") no-repeat 90% top;
  overflow: hidden;
}
#brand .brand-container {
  width: 100%; min-height: inherit; position: relative; z-index: 2;
  background-color: rgba(0,0,0,0.7);
  background-image:
    radial-gradient(circle, rgba(0,0,0,0.1) 1px, transparent 1px),
    radial-gradient(circle, rgba(0,0,0,0.1) 1px, transparent 1px);
  background-size: 4px 4px, 4px 4px;
  background-position: 0 0, 2px 2px;
}
.brand-inner{max-width: 1200px; padding: 180px 0; z-index: 2; margin: 0 auto;}
.brand-inner h2 {
  font-size: clamp(24px, 4.5vw, 60px); color: #ddd; font-weight: 400; margin-bottom: 20px; line-height: 0.95;
  font-family: 'Nanum Myeongjo', Georgia, serif;
}
.brand-inner h2.effect {
  font-size: clamp(30px, 5.5vw, 72px); color: #fff; font-weight: 200; line-height: 1.2; width: 100%;
  margin: 20px 0; letter-spacing: -3px;
}
.brand-inner h2.effect em{
  font-weight: 400; letter-spacing: -1px;
}

.brand-inner p { color: #bbb; font-size: clamp(16px, 2.5vw, 30px); margin-bottom: 32px; line-height: 1.5; }
.brand-inner p strong { color: #fff; font-weight: 700; }
.brand-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-ghost {
  padding: 12px 24px; border: 1px solid rgba(255,255,255,0.8);
  border-radius: 25px; color: #fff; font-size: 14px; background: transparent; cursor: pointer;
  transition: border-color 0.2s;
}
.btn-ghost:hover { border-color: #fff; background: #fff; color: #292929}


/* ── SECTION 3: PROBLEM ── */
#problem { background: #f0f3f8; padding: 130px 80px;}

.section-label { font-family: 'Escoredream', sans-serif; font-weight: 500; color: #5ab5e3;
  font-size: clamp(13px, 1.8vw, 22px); letter-spacing: 1px; margin-bottom: 16px; }
.section-title { font-size: clamp(21px, 3vw, 36px); font-weight: 500; color: #222; line-height: 1.15; margin-bottom: 60px; }
.section-title em{font-weight: 700;}
.cards-row { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.problem-card {
  background: #fff; border-radius: 20px; padding: 32px 28px 0 28px;
  flex: 1; min-width: 260px; max-width: 380px; height: 485px;
  display: flex; flex-direction: column; align-items: flex-start;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08); 
}
.card-man img{position: absolute;bottom:0; left: 5%;}
.card-pair:first-child .card-man img{left: 10%;}
.problem-card.side-card { background: #e3e9f0; border: 1px solid #d4deea; cursor: pointer; }
.problem-card.card-over { align-items: center; text-align: center; background: #fff;  }

.problem-card.side-card.side-card-center { background: #c2d5c5; border: 1px solid #aec3b2; }
.problem-card.side-card.side-card-right{
  background: #d6dfe9; border-color: #beccdc; 
}
.card-logo-badge {
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 6px;
}
.card-man{width: 100%; }
.card-avatar {
  width: 80px; height: 80px; border-radius: 12px; background: #b5c9e0;
  display: flex; align-items: center; justify-content: center;
  margin: 60px 0 50px;
}
.card-quote { font-size: 18px; font-weight: 700; color: #333;  position: relative; left:0; top:50px;  font-family: 'Nanum Myeongjo', Georgia, serif; }
.side-card-center .card-quote{left: 60%; }
.side-card-center .card-quote::after { right: auto; left: 20px; }
.side-card-center .card-quote::before { right: auto; left: 12px; }
.side-card-right .card-quote{left: 3%; }
.side-card-right .card-quote::after { left: auto; right: 20px; }
.side-card-right .card-quote::before { left: auto; right: 12px; }
/* 말풍선 추가 */
@keyframes bubble-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.side-card .card-quote {
  background: rgba(255,255,255,0.5);
  border: 1px solid #fff;
  width: 120px; height: 120px;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  line-height: 1.3;
  font-size: 15px;
  top: 10px;
  animation: bubble-float 3s ease-in-out infinite;
}
.side-card-center .card-quote { animation-delay: 0.5s; }
.side-card-right .card-quote { animation-delay: 1s; }

.side-card .card-quote::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 20px;
  width: 16px; height: 16px;
  background: rgba(255,255,255,0.5);
  border: 1px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  
}
.side-card .card-quote::before {
  content: '';
  position: absolute;
  bottom: -14px;
  right: 12px;
  width: 9px; height: 9px;
  background: rgba(255,255,255,0.5);
  border: 1px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}


.card-over .card-title{font-size: clamp(15px, 2vw, 26px); padding-bottom: 20px;}
.card-body { font-size: clamp(13px, 1.4vw, 18px); color: #666; line-height: 1.3; }
.card-pair {
  flex: 1; min-width: 260px; max-width: 380px; height: 485px;
  perspective: 1200px;
}
.card-pair-inner {
  position: relative; width: 100%; height: 100%;
  transition: transform 1s ease; transform-style: preserve-3d;
}
.card-pair:hover .card-pair-inner { transform: rotateY(180deg); }
.card-pair .problem-card {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  max-width: none; min-width: 0;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
}
.card-pair .problem-card.card-over { display: flex; transform: rotateY(180deg); }
.card-pair:first-child .problem-card{ background: #e3e9f0 url(../images/man-off-01-2.png) no-repeat 80% bottom}
.card-pair:nth-child(2) .problem-card{ background: #c2d5c5 url(../images/man-off-02-2.png) no-repeat center bottom}
.card-pair:last-child .problem-card{ background: #d6dfe9 url(../images/man-off-03-3.png) no-repeat center bottom}
.card-pair:first-child .problem-card.card-over,
.card-pair:nth-child(2) .problem-card.card-over,
.card-pair:last-child .problem-card.card-over{ background: #fff}
/* ── SECTION 4: FEATURES ── */
#point { background: #fff; padding: 130px 80px; }


.feature-card {
  background: #f0f4fa; border-radius: 20px; padding: 36px 32px;
  display: flex; gap: 20px; align-items: flex-start; position: relative; overflow: hidden;
}
.feature-text h3 { font-size: 20px; font-weight: 800; color: #222; margin-bottom: 12px; }
.feature-text p { font-size: 14px; color: #666; line-height: 1.7; }
.feature-icon-wrap {
  position: absolute; right: 24px; bottom: 24px;
  width: 80px; height: 80px; opacity: 0.8;
}
.icon-calendar { font-size: 48px; }
  /* ===== Section: Overview ===== */

#point .point-container .point-grid {display:grid; grid-template-columns: repeat(2, 1fr); gap:20px;}
#point .point-container .grid.point_card:first-child {height:auto; gap:10px;}
#point .point-container .grid:first-child .point_card,
#point .point-container .grid:last-child .point_card{height:auto; }

#point .point-container .point-grid .grid {display:grid; gap:20px;}
#point .point-container .point-grid h3 {font-size: clamp(18px, 2.2vw, 26px); margin-bottom:10px; text-align:left; font-weight:600; line-height: 1.2;}
#point .point-container .point_card {display:flex; border: 1px solid #e0e1e4; border-radius:20px; background-color: #F5F6F8;}
#point .point-container .point_card .img_card {display:flex; align-items:flex-end; margin-right: 20px;}
#point .point-container .point_card .wrap_title {padding: 40px 0 40px 40px; width: 60%;}
#point .point-container .point_card .wrap_title p {font-size: clamp(14px, 1.5vw, 18px); color: #686868; margin-bottom:12px;}


/* 카드 이미지 */
#point .point-container .grid:first-child .point_card:first-child{
  background: #F5F6F8 url(../images/icon-contents-01.png) no-repeat 92% bottom;
}
#point .point-container .grid:first-child .point_card:last-child{
  background: #F5F6F8 url(../images/icon-contents-04.png) no-repeat 92% bottom;
}
#point .point-container .grid:last-child .point_card:first-child {
  background: #F5F6F8 url(../images/icon-contents-02.png) no-repeat 95% bottom;
}
#point .point-container .grid:last-child .point_card:nth-child(2){
  background: #F5F6F8 url(../images/icon-contents-03.png) no-repeat 95% bottom;
}
#point .point-container .grid:last-child .point_card:last-child{
  background: #F5F6F8 url(../images/icon-contents-05.png) no-repeat 95% bottom;
}

  /* ── SECTION 5: PROGRAMS ── */
#programs { background: #f8f9fc; padding: 130px 80px; }
.programs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 60px;
}
.program-card {
  background: #f5f6f8; border-radius: 16px; padding: 28px 24px; border: 1px solid #e0e1e4;
  position: relative; min-height: 250px; overflow: hidden;
}
.program-card.featured {
  background: #84acdb; color: #fff;   grid-column: 1;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.program-num {
  position: absolute; top: -25px; right: 10px;
  font-size: clamp(70px, 8vw, 110px); font-weight: 800; color: #e7eaef; line-height: 1;
  font-family: 'Montserrat', sans-serif; z-index:1;
}
.program-card h3 { font-size: clamp(18px, 2vw, 23px); font-weight: 600; color: #47484b; margin-bottom: 10px; z-index: 3; position: relative; line-height: 1.2;}
.program-card.featured h3 { font-size: clamp(24px, 3vw, 36px);  color: #fff; line-height: 1.2; }
.program-card p { font-size: clamp(14px, 1.3vw, 16px); color: #888; line-height: 1.3; z-index:2; width: 80%; word-break: keep-all; position: relative;}

/* 프로그램 아이콘 */
.program-card:nth-child(2){background: #f5f6f8 url(../images/icon-program-01.png) no-repeat 95% bottom;}
.program-card:nth-child(3){background: #f5f6f8 url(../images/icon-program-02.png) no-repeat 95% bottom;}
.program-card:nth-child(4){background: #f5f6f8 url(../images/icon-program-03.png) no-repeat 95% bottom;}
.program-card:nth-child(5){background: #f5f6f8 url(../images/icon-program-04.png) no-repeat 95% bottom;}
.program-card:nth-child(6){background: #f5f6f8 url(../images/icon-program-05.png) no-repeat 95% bottom;}
.program-card:nth-child(7){background: #f5f6f8 url(../images/icon-program-06.png) no-repeat 95% bottom;}
.program-card:last-child{background: #f5f6f8 url(../images/icon-program-07.png) no-repeat 95% bottom;}


/* ── SECTION 6: STATS ── */
#vision { background: #e8edf6; padding: 130px 80px; }

.stats-top-row { display: flex; align-items: flex-start; }
.vision-wrap{display: flex; width: 100%; text-align: right; }
.stats-vision {
  text-align: right; margin-bottom: 40px;
}
.stats-vision .vision-label {
  font-size: 13px; font-weight: 700; letter-spacing: 2px; color: #888;
}
.stats-vision p { font-size: 16px; color: #555; margin-top: 8px; }
.stats-vision p strong { font-weight: 700; }
.stats-vision .mission-label {
  font-size: 13px; font-weight: 700; letter-spacing: 2px; color: #888; margin-top: 24px;
}
.hashtags-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-top: 1px solid #ccc; margin: 40px 0 20px;
}
.hashtag-col { padding: 32px 20px; border-right: 1px solid #ccc; }
.hashtag-col:last-child { border-right: none; }
.hashtag-word { font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: #111; margin-bottom: 12px; }
.hashtag-desc { font-size: 13px; color: #777; line-height: 1.6; }
.stats-numbers {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-top: 1px solid #ccc;
}
.stat-col { padding: 32px 20px; border-right: 1px solid #ccc; }
.stat-col:last-child { border-right: none; }
.stat-icon { font-size: 28px; margin-bottom: 12px; opacity: 0.5; }
.stat-num {
    font-weight: 900;  line-height: 1;
}
.stat-label { font-size: 14px; color: #888; margin-top: 8px; }
.ceo-badge {
  writing-mode: vertical-rl; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; color: #fff; background: #333;
  padding: 12px 6px; display: inline-block; margin-right: 32px;
  flex-shrink: 0;
}

.stats-main { flex: 1; }
.counter { display: inline-block; }

.vision-box .column_mark{position:absolute; top:0px; left:0; background-color:#000; font-family:'Montserrat', sans-serif; font-size:0.75em; font-weight:400; color:#fff; writing-mode:tb-rl; -webkit-writing-mode:tb-rl; -moz-writing-mode:tb-rl; -ms-writing-mode:tb-rl; -o-writing-mode:tb-rl; padding:10px;}

.vision-box{ width:25%; border-right: 1px solid #ccc;height:calc(100% - 178px); min-height: 700px;}
.vision-box:first-child{border-left: 1px solid #ccc;}
.vision-box .count {position: relative; margin-top: 60px;}
.vision-box .count .icon {position: relative; display:inline-block;width: 100%;}
.vision-box .count .icon img{width:36px;}
.vision-box .count div.counter{
  font-family:'Montserrat', sans-serif; font-size: clamp(24px, 6vw, 80px); font-weight:700; line-height:1em; letter-spacing:-0.05em;
  padding: 30px 0 15px 0;
}
.vision-box .count p { font-family: 'Montserrat', sans-serif; font-weight: 500;font-size: 16px;}
.vision-box .count:after {
    content: '';
    width: 9px;
    height: 9px;
    background: url(../images/about_point_bg.png) no-repeat center;
    position:  absolute;
    top: -15px;
    right: -5px;
}

.vision-box .mission{letter-spacing:-0.05em; margin-top: 260px;}
.vision-box .mission h1.about_m_tit{margin-bottom:35px;}
.vision-box .mission p.tag{font-size: clamp(24px, 6vw, 78px); font-weight:100; line-height:1em; position:relative;}
.vision-box .mission p.tag:after{content:''; width:9px; height:9px; background:url(../images/about_point_bg.png) no-repeat center; position:absolute; top:-15px; right:-5px;}
.vision-box .mission p.txt{ font-weight:400; line-height:1.2em; margin-top:20px;}
.vision-box .mission p.txt span{display:block;}
.vision-box .vision{position:absolute; width:400%; top:50px; right:0; word-break:keep-all; text-align:right;}
.vision-box .vision:after{content:''; width:9px; height:9px; background:url(../images/about_point_bg.png) no-repeat center; position:absolute; top:-15px; right:-5px;}
.vision-box .vision p{font-size:1.75em; line-height:1.2em; font-weight:500; margin-bottom: 50px;}
.vision-box h1.about_m_tit{font-family:'Montserrat', sans-serif; font-size:2.625em; font-weight:700; line-height:1em; margin-bottom:15px;}
.vision-box .mission h1.about_m_tit{margin-bottom:35px;}

/* ── SECTION 7: TESTIMONIALS 현장의 목소리 ── */
#voice {
  background: #99b8c2 url("../images/visual-teacher.png") no-repeat 90% bottom;
  min-height: 70vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 130px 100px;
}
.testimonials-inner { z-index: 2; position: relative; width: 1200px; }
.testimonials-inner .section-label { color: #c8e4ef; }
.testimonials-inner .section-title { color: #fff; margin-bottom: 40px; }
.quote-block { margin-bottom: 40px; font-family: 'Nanum Myeongjo', Georgia, serif; }
.quote-text {  color: #fff;font-family: 'Nanum Myeongjo', Georgia, serif;  font-size: clamp(18px, 3.5vw, 48px); 
display:flex; flex-direction: column;}
.quote-text .txt-01{left: 30%; position: relative;}
.quote-text .txt-02{left: 22%; position: relative; font-size: clamp(25px, 4.5vw, 60px);  font-weight: bold;}
.quote-text .txt-02 em{color: #56677e;}
.quote-text .txt-02.txt-03{left: 18%}
.quote-text .txt-04{left: 10%; position: relative; font-size: clamp(18px, 2.8vw, 36px);}
.quote-text .txt-05{left: 0%; position: relative; font-size: clamp(25px, 3.8vw, 50px); color: #56677e; font-weight: bold;}
.quote-text .txt-06{left: 3%; position: relative; font-size: clamp(18px, 2.8vw, 36px);}
.quote-source { font-size: 15px; color: rgba(255,255,255,0.7); margin-top: 12px; position: relative;left: 35%; }
.quote-source.source2{left:20%;}
.quote-badge {
  display: inline-block; background: rgba(255,255,255,0.2);
  border-radius: 25px; padding: 5px 20px; font-size: 15px; color: #2f4159; margin-top: 8px;
  border: 1px solid #fff;  font-family: "Noto Sans KR", sans-serif; position: relative; 
  left: 40%; 
}
.quote-badge.badge2{ left:27%;}

/* ── SECTION 8: PARTNERS ── */
#partners { background: #2d3241; padding: 100px 80px 120px 80px; }
#partners h2 {
  text-align: center; color: #fff; font-size: clamp(20px, 2.3vw, 28px); font-weight: 800;
  letter-spacing: 4px; margin-bottom: 8px;
}
.partners-divider { width: 40px; height: 3px; background: #fff; margin: 0 auto 48px; }
.partners-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 3px;
}
.partner-logo {
  background: #fff; padding: 24px 20px;
  display: flex; align-items: center; justify-content: center;
  min-height: 125px;
  overflow: hidden;
}
.partner-logo img {
  display: block; max-width: 100%; max-height: 100%; margin: 0 auto;
}
.partner-logo span {
  font-size: 14px; font-weight: 700; color: #333; text-align: center;
}

/* counter animation */
@keyframes countUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animated { animation: countUp 0.6s ease forwards; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
/* ── WRAPPER ── */

/* ===== Tablet ===== */
@media screen and (max-width: 1200px) {
  #problem , #point, #vision, #voice, #programs{padding: 80px 80px;}
  
  #brand {min-height: 60vh; background-size: contain;}
  .brand-container{padding: 30px 80px;}
  .brand-inner {padding: 80px 0;z-index: 2;}

  .card-pair { height: 420px;}
  .problem-card {padding: 22px 18px 0 18px;}
  .card-logo-badge {padding: 0;}

  .card-over .card-title {top: auto;}
  .side-card-center .card-quote { left: 40%;}
  .card-pair:first-child .problem-card,
  .card-pair:nth-child(2) .problem-card,
  .card-pair:last-child .problem-card{ background-size: 80%; max-width: auto;}
 
  #point .point-container .point_card .wrap_title {padding: 30px 0 20px 30px; width: 55%;}
  #point .point-container .grid .point_card {border-radius: 15px;}
 
  /* 카드 이미지 */
  #point .point-container .grid:first-child .point_card:first-child,
  #point .point-container .grid:first-child .point_card:last-child,
  #point .point-container .grid:last-child .point_card:first-child,
  #point .point-container .grid:last-child .point_card:nth-child(2),
  #point .point-container .grid:last-child .point_card:last-child{ background-size: 40%;}

  .vision-box {min-height: 600px;}
  .vision-box .count {margin-top: 50px;}
  .program-card {min-height: 240px;}
   #voice {background-size: 55%;min-height: 60vh; background-position: right bottom;}
  .quote-text .txt-01{left: 30%; }
  .quote-text .txt-02{left: 30%; }
  .quote-text .txt-02.txt-03{left: 23%}
  .quote-text .txt-04{left: 10%; }
  .quote-text .txt-05{left: 0%; }
  .quote-text .txt-06{left: 3%; }
  .quote-source { left: 19%; }
  .quote-source.source2{left:12%;}
  .quote-badge {left: 24%; }
  .quote-badge.badge2 {left: 20%;}
}
@media (max-width: 1024px) {

  #point .point-container .point_card .wrap_title {width: 70%;}
  .card-pair { height: 400px;}
  .card-avatar {margin: 40px 0 30px;}
  .side-card .card-quote{left: 0; top: 10px;}
  .side-card-center .card-quote{left: 40%; top: 10px;}
  .side-card-right .card-quote{left: 45%; top: 10px;}
  .program-card:nth-child(2),
  .program-card:nth-child(3),
  .program-card:nth-child(4),
  .program-card:nth-child(5),
  .program-card:nth-child(6),
  .program-card:nth-child(7),
  .program-card:last-child{background-size: 50%;}
  #voice {background-size: 50%;min-height: 50vh; }
  .quote-text .txt-04{left: 5%; }
  .quote-text .txt-05{left: 0%; }
  .quote-text .txt-06{left: 3%; }
  .quote-source { left: 15%; }
  .quote-source.source2{left:10%;}
  .quote-badge {left: 15%; }
  .quote-badge.badge2 {left: 15%;}
  .quote-block {margin-bottom: 20px;}
}

/* ===== Mobile ===== */
@media (max-width: 820px) {
  #hero {min-height: calc(100vh - 200px); padding: 50px 30px;}
  .hero-content { padding: 160px 0;}
  #brand{min-height: auto;}
  .brand-inner { padding: 50px 0;}
  .header-wrap .nav-btns {justify-content: center; right: auto; left: 50%;}
  
  .cards-row {flex-direction: column; align-items: center;}
  .card-pair {flex: 0 0 auto; width: 100%; max-width: 100%; height: 250px; }
  .side-card .card-quote,
  .side-card-center .card-quote,
  .side-card-right .card-quote{ left:10%; top:10px;  text-align: left; }
  .card-pair:hover .card-pair-inner { transform: none; }
  .card-pair.is-flipped .card-pair-inner { transform: rotateY(180deg); }
  .side-card .card-quote { transition: opacity 0.6s ease 0.4s, visibility 0s linear 0.4s; }
  .card-pair.is-flipped .side-card .card-quote { opacity: 0; visibility: hidden; transition: opacity 0s, visibility 0s; }
  .side-card .card-quote::after,
  .side-card-center .card-quote::after,
  .side-card-right .card-quote::after { right: 20px; left: auto; }
  .side-card .card-quote::before,
  .side-card-center .card-quote::before,
  .side-card-right .card-quote::before { right: 12px; left: auto; }
  .card-pair .problem-card.card-over { display: flex; flex-direction: row;align-items: center; justify-content: center; }
  .problem-card {padding: 20px 18px 0 18px;}
  .card-avatar { margin: 30px 60px 30px 30px;}
  .card-pair:first-child .problem-card,
  .card-pair:nth-child(2) .problem-card{ background-size: 50%; background-position: right bottom}
  .card-pair:last-child .problem-card{ background-size: 50%; background-position: 90% bottom}

  .card-man { width: 40%;}

  .programs-grid {grid-template-columns: repeat(2, 1fr);}
  .program-card {min-height: 200px;}

  #point .point-container .point-grid {gap:16px;}
  #point .point-container .point-grid .grid {grid-template-columns: 1fr; gap:16px;}
  #point .point-container .point-grid h3 {margin-bottom:8px;}
  #point .point-container .point_card .wrap_title {padding:24px 0 24px 24px; width: 65%;}
  #point .point-container .grid:last-child .point_card:nth-child(1) .wrap_title,
  #point .point-container .grid:last-child .point_card:nth-child(2) .wrap_title {padding:24px 16px 24px 24px;}
  #point .point-container .point_card .wrap_title p {margin-bottom:8px;}
  #point .point-container .grid:first-child .point_card:first-child {height:auto;}
  #point .point-container .grid:first-child .point_card:last-child, 
  #point .point-container .grid:last-child .point_card{height:auto }
  /* 카드 이미지 */
  #point .point-container .grid:first-child .point_card:first-child,
  #point .point-container .grid:first-child .point_card:last-child,
  #point .point-container .grid:last-child .point_card:first-child,
  #point .point-container .grid:last-child .point_card:nth-child(2),
  #point .point-container .grid:last-child .point_card:last-child{ 
    background-size: 30%;}
  .vision-box {min-height: 500px;}
  #voice {background-size: 40%;min-height: 45vh; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); gap: 3px;}
  .partner-logo {min-height: 80px;overflow: hidden;}
}
/* ===== Mobile ===== */
@media (max-width: 540px) {
  .header-wrap .nav-btns {justify-content: center; right: auto; left: 38%;}
  .section-label {margin-bottom: 8px;}
  .section-title {margin-bottom:30px;}
  .btn-outline {padding: 5px 5px; border: 1px solid #333}
  .btn-teal {padding: 8px 20px;}
  .btn-teal-outline {padding:  8px 20px;}
  .hero-content h1 {font-size: clamp(28px, 6vw, 80px);}
  .hero-content p { margin: 20px 0 20px; line-height: 1.3;}
  #problem , #point, #vision, #voice, #programs,     .brand-container, #partners{padding: 50px 30px;}
  #hero {  min-height: auto; }
  .hero-content{padding: 80px 30px;}
  #brand {min-height: auto;background-position: right bottom; }
  
  .brand-inner{padding: 0;}
  .brand-inner p { margin-bottom: 15px; line-height: 1.2; }
  .btn-ghost {padding: 8px 12px;font-size: 12px; }
  .card-section{width:100%; overflow: hidden;}
  .card-pair {height: 200px; }
  .card-over .card-title {text-align: center; left: auto; right: auto; }
  .card-logo-badge  img{width: 60%;}
  .card-avatar { margin: 30px ; width: 50px; height: 50px; }
  .card-body{width: 100%; padding-left: 5%;}
  .side-card .card-quote { width: 100px; height: 100px; font-size: 13px; }
  .problem-card.card-over {padding: 0px 18px 0 18px;}
  #point .point-container .point-grid {display:grid; grid-template-columns: repeat(1, 1fr); gap:16px;}
  #point .point-container .point-grid .grid {grid-template-columns: repeat(1, 1fr);gap:16px;}
  .program-card {padding: 20px; min-height: 170px;}
  .program-num {top: -12px;}
  .program-icon img{width: 30%;}
  .vision-box .vision{width: 100%;}
  .vision-box .vision p {font-size: 1em; width: 80%; position: relative; left: 20%; text-align: right; margin-bottom:25px;}
  .vision-box .mission p.txt{width: 90%; left: 10%; position: relative;min-height: 60px; }
  .vision-box .mission {margin-top:220px;}
  .vision-box .count {margin-top: 30px;}
  .vision-box .mission p.tag:after {top: -10px;}
  .vision-box .mission p.txt span{font-size: 11px; letter-spacing: -2px;}
  .quote-text .txt-01,
  .quote-text .txt-02,
  .quote-text .txt-03,
  .quote-text .txt-04,
  .quote-text .txt-05,
  .quote-text .txt-06,
  .quote-text .txt-02.txt-03,
  .quote-source,
  .quote-source.source2,
  .quote-badge,
  .quote-badge.badge2 {left: 0%; }
}

/* ===== Mobile Landscape ===== */
@media (max-height: 500px) and (orientation: landscape) {
  #hero { min-height: auto; padding-top: 120px; padding-bottom: 100px; margin-top: 120px;  }
  .hero-content h1 { padding-top: 0; }
}
  