/* =============================================
   GFFSC - 경기미래펜싱사회적협동조합
   Redesign v2 — KPC-inspired Clean & Modern
   ============================================= */

/* ── Variables ──────────────────────────────── */
:root {
  --navy:       #0d2140;
  --navy-mid:   #1a3560;
  --navy-light: #1e4080;
  --gold:       #b8922a;
  --gold-light: #d4a843;
  --gold-pale:  #f5e9cc;
  --white:      #ffffff;
  --off-white:  #f8f8f6;
  --gray-50:    #f5f5f3;
  --gray-100:   #efefed;
  --gray-200:   #ddddd9;
  --gray-300:   #c8c8c2;
  --gray-400:   #9d9d96;
  --gray-500:   #6b6b64;
  --gray-700:   #3a3a35;
  --text:       #1a1a18;
  --text-mid:   #3a3a35;
  --text-light: #6b6b64;
  --border:     #e8e8e4;
  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow-xs:  0 1px 4px rgba(0,0,0,.06);
  --shadow-sm:  0 2px 10px rgba(0,0,0,.07);
  --shadow-md:  0 4px 24px rgba(0,0,0,.09);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.12);
  --ease:       cubic-bezier(.4,0,.2,1);
}

/* ── Reset ──────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;scroll-behavior:smooth}
body{
  font-family:'Noto Sans KR','Montserrat',-apple-system,sans-serif;
  color:var(--text);background:var(--white);
  line-height:1.7;overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}
input,select,textarea{font-family:inherit}

/* ── Util ───────────────────────────────────── */
.container{max-width:1200px;margin:0 auto;padding:0 40px}
.section{padding:100px 0}
.section-sm{padding:60px 0}
.text-center{text-align:center}

/* ── Section Header ─────────────────────────── */
.sec-label{
  display:block;
  font-family:'Montserrat',sans-serif;
  font-size:.68rem;font-weight:700;
  letter-spacing:.22em;text-transform:uppercase;
  color:var(--gold);margin-bottom:1rem;
}
.sec-title{
  font-size:clamp(1.9rem,2.8vw,2.6rem);
  font-weight:800;color:var(--navy);
  line-height:1.25;letter-spacing:-.02em;
}
.sec-title span{color:var(--gold)}
.sec-desc{
  margin-top:.9rem;font-size:1rem;
  color:var(--text-light);line-height:1.85;max-width:560px;
}
.sec-header{margin-bottom:56px}
.sec-header.center{text-align:center}
.sec-header.center .sec-desc{margin:0.9rem auto 0}

/* ── Buttons ────────────────────────────────── */
.btn{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.75rem 1.75rem;border-radius:var(--radius-sm);
  font-weight:700;font-size:.88rem;
  letter-spacing:.02em;transition:all .25s var(--ease);
  border:1.5px solid transparent;white-space:nowrap;
  cursor:pointer;
}
.btn-primary{background:var(--navy);color:#fff;border-color:var(--navy)}
.btn-primary:hover{background:var(--navy-light);transform:translateY(-2px);box-shadow:var(--shadow-md)}
.btn-gold{background:var(--gold);color:#fff;border-color:var(--gold)}
.btn-gold:hover{background:var(--gold-light);transform:translateY(-2px)}
.btn-outline{background:transparent;color:var(--navy);border-color:var(--navy)}
.btn-outline:hover{background:var(--navy);color:#fff}
.btn-outline-white{background:transparent;color:#fff;border-color:rgba(255,255,255,.6)}
.btn-outline-white:hover{background:rgba(255,255,255,.12);border-color:#fff}
.btn-outline-gold{background:transparent;color:var(--gold);border-color:var(--gold)}
.btn-outline-gold:hover{background:var(--gold);color:#fff}
.btn-lg{padding:.9rem 2.2rem;font-size:.95rem}
.btn-sm{padding:.5rem 1.2rem;font-size:.8rem}
.btn-icon{padding:.75rem 1.3rem}

/* ── Navbar ─────────────────────────────────── */
.navbar{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  height:72px;display:flex;align-items:center;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  transition:box-shadow .3s var(--ease);
}
.navbar.scrolled{box-shadow:0 2px 20px rgba(0,0,0,.08)}
.nav-inner{
  max-width:1200px;margin:0 auto;padding:0 40px;
  width:100%;display:flex;align-items:center;justify-content:space-between;
}
.nav-logo{display:flex;align-items:center}
.nav-logo-img{
  height:44px;width:auto;object-fit:contain;
  /* 흰 배경 로고이므로 네이비 배경에 맞게 처리 */
}
.nav-menu{display:flex;align-items:center;gap:.2rem}
.nav-link{
  font-size:.85rem;font-weight:600;color:var(--text-mid);
  padding:.5rem .9rem;border-radius:var(--radius-sm);
  transition:color .2s,background .2s;letter-spacing:.01em;
}
.nav-link:hover,.nav-link.active{color:var(--navy)}
.nav-link.active{
  position:relative;
}
.nav-link.active::after{
  content:'';position:absolute;bottom:-2px;left:.9rem;right:.9rem;
  height:2px;background:var(--gold);border-radius:2px;
}
.nav-actions{display:flex;align-items:center;gap:.6rem;margin-left:1.2rem}
.nav-join{
  background:var(--navy);color:#fff;
  font-size:.8rem;font-weight:700;
  padding:.5rem 1.25rem;border-radius:var(--radius-sm);
  transition:all .2s;
}
.nav-join:hover{background:var(--navy-light)}
.nav-toggle{
  display:none;flex-direction:column;gap:5px;
  padding:6px;border-radius:4px;
}
.nav-toggle span{
  display:block;width:22px;height:1.5px;
  background:var(--text);border-radius:2px;transition:all .3s;
}
.nav-toggle.active span:nth-child(1){transform:rotate(45deg) translate(4.5px,4.5px)}
.nav-toggle.active span:nth-child(2){opacity:0}
.nav-toggle.active span:nth-child(3){transform:rotate(-45deg) translate(4.5px,-4.5px)}

/* ── Hero ───────────────────────────────────── */
.hero{
  min-height:100vh;display:flex;align-items:center;
  position:relative;overflow:hidden;
  background:var(--navy);
  padding-top:72px;
}
.hero-bg{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(26,64,128,.55) 0%, transparent 70%),
    linear-gradient(135deg, var(--navy) 0%, #0a1a32 100%);
}
.hero-grid-pattern{
  position:absolute;inset:0;opacity:.045;
  background-image:
    linear-gradient(rgba(255,255,255,.6) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.6) 1px,transparent 1px);
  background-size:60px 60px;
}
.hero-accent{
  position:absolute;right:0;top:0;bottom:0;
  width:45%;
  background:linear-gradient(135deg,transparent 0%,rgba(184,146,42,.07) 100%);
  clip-path:polygon(15% 0,100% 0,100% 100%,0% 100%);
}
.hero-inner{
  position:relative;z-index:2;
  max-width:1200px;margin:0 auto;padding:80px 40px;
  display:grid;grid-template-columns:1fr 1fr;
  gap:4rem;align-items:center;width:100%;
}
.hero-left{}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:.6rem;
  margin-bottom:1.6rem;
}
.hero-eyebrow-line{width:32px;height:1.5px;background:var(--gold)}
.hero-eyebrow-text{
  font-family:'Montserrat',sans-serif;
  font-size:.72rem;font-weight:700;letter-spacing:.2em;
  text-transform:uppercase;color:var(--gold-light);
}
.hero-title{
  font-size:clamp(2rem,4vw,3.4rem);
  font-weight:900;line-height:1.18;
  color:#fff;letter-spacing:-.025em;margin-bottom:1.4rem;
}
.hero-title em{
  display:block;font-style:normal;
  color:transparent;
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  -webkit-background-clip:text;background-clip:text;
}
.hero-subtitle{
  font-size:1.05rem;color:rgba(255,255,255,.68);
  line-height:1.85;margin-bottom:2.4rem;max-width:480px;
}
.hero-cta{display:flex;gap:.8rem;flex-wrap:wrap}
.hero-stats{
  display:flex;gap:0;
  margin-top:3.5rem;
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:2.5rem;
}
.hero-stat{
  flex:1;padding-right:2rem;
  border-right:1px solid rgba(255,255,255,.1);
  margin-right:2rem;
}
.hero-stat:last-child{border-right:none;margin-right:0}
.hs-num{
  font-family:'Montserrat',sans-serif;
  font-size:2rem;font-weight:900;color:var(--gold-light);
  line-height:1;margin-bottom:.35rem;
  display:flex;align-items:baseline;gap:.2rem;
}
.hs-unit{font-size:.9rem;font-weight:700}
.hs-label{font-size:.78rem;color:rgba(255,255,255,.5);line-height:1.4}
.hero-right{display:flex;justify-content:center;align-items:center}
.hero-card-stack{position:relative;width:100%;max-width:380px}
.hero-main-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius-lg);
  padding:2.5rem;
  backdrop-filter:blur(16px);
}
.hero-card-label{
  font-family:'Montserrat',sans-serif;
  font-size:.65rem;font-weight:700;letter-spacing:.2em;
  color:var(--gold);text-transform:uppercase;margin-bottom:1.4rem;
}
.hero-pillar-list{display:flex;flex-direction:column;gap:1rem}
.hero-pillar-item{
  display:flex;align-items:center;gap:1rem;
  padding:.9rem 1.2rem;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  transition:all .25s;
}
.hero-pillar-item:hover{background:rgba(255,255,255,.1);border-color:rgba(184,146,42,.4)}
.hpi-icon{
  width:40px;height:40px;border-radius:8px;flex-shrink:0;
  background:rgba(184,146,42,.18);
  display:flex;align-items:center;justify-content:center;
}
.hpi-icon i{font-size:1rem;color:var(--gold-light)}
.hpi-text{flex:1}
.hpi-title{font-size:.88rem;font-weight:700;color:#fff;margin-bottom:.15rem}
.hpi-desc{font-size:.75rem;color:rgba(255,255,255,.5);line-height:1.4}
.hero-badge-chip{
  display:inline-flex;align-items:center;gap:.5rem;
  margin-top:1.5rem;padding:.6rem 1rem;
  background:rgba(184,146,42,.15);
  border:1px solid rgba(184,146,42,.3);
  border-radius:100px;
  font-size:.75rem;font-weight:600;color:var(--gold-light);
}
.hero-badge-chip i{font-size:.8rem}
.scroll-cue{
  position:absolute;bottom:2.5rem;left:50%;transform:translateX(-50%);
  z-index:2;display:flex;flex-direction:column;align-items:center;gap:.5rem;
  font-family:'Montserrat',sans-serif;
  font-size:.6rem;letter-spacing:.18em;color:rgba(255,255,255,.3);
}
.scroll-line{
  width:1px;height:36px;
  background:linear-gradient(to bottom,rgba(255,255,255,.35),transparent);
  animation:scrollLine 2.2s infinite;
}
@keyframes scrollLine{
  0%{transform:scaleY(0);transform-origin:top}
  50%{transform:scaleY(1);transform-origin:top}
  51%{transform:scaleY(1);transform-origin:bottom}
  100%{transform:scaleY(0);transform-origin:bottom}
}

/* ── Mission Strip ──────────────────────────── */
.mission-strip{
  background:var(--off-white);border-bottom:1px solid var(--border);
  padding:.9rem 0;
}
.mission-inner{
  max-width:1200px;margin:0 auto;padding:0 40px;
  display:flex;align-items:center;justify-content:center;gap:2.5rem;flex-wrap:wrap;
}
.mission-item{
  display:flex;align-items:center;gap:.6rem;
  font-size:.82rem;font-weight:600;color:var(--text-mid);
}
.mission-item i{color:var(--gold);font-size:.9rem}
.mission-sep{color:var(--gray-300);font-size:1rem}

/* ── Pillars ────────────────────────────────── */
.pillars{background:var(--white)}
.pillars-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.5px;
  background:var(--border);border:1px solid var(--border);
  border-radius:var(--radius-lg);overflow:hidden;
}
.pillar-item{
  background:var(--white);padding:2.6rem 2.4rem;
  position:relative;overflow:hidden;
  transition:background .25s,box-shadow .25s;
  cursor:default;
}
.pillar-item:hover{background:var(--navy);z-index:1}
.pillar-item:hover .pi-num{color:rgba(255,255,255,.08)}
.pillar-item:hover .pi-title{color:#fff}
.pillar-item:hover .pi-text{color:rgba(255,255,255,.65)}
.pillar-item:hover .pi-icon{background:rgba(184,146,42,.2);border-color:rgba(184,146,42,.4)}
.pillar-item:hover .pi-icon i{color:var(--gold-light)}
.pillar-item:hover .pi-list li{color:rgba(255,255,255,.7)}
.pillar-item:hover .pi-list li::before{color:var(--gold)}
.pillar-item:hover .pi-link{color:var(--gold-light)}
.pillar-item:hover .pi-link-line{background:var(--gold-light)}
.pi-num{
  font-family:'Montserrat',sans-serif;
  font-size:4rem;font-weight:900;
  color:var(--gray-100);line-height:1;
  position:absolute;top:1.5rem;right:1.8rem;
  transition:color .25s;
  user-select:none;pointer-events:none;
}
.pi-icon{
  width:52px;height:52px;border-radius:10px;
  background:var(--off-white);border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1.4rem;transition:all .25s;
}
.pi-icon i{font-size:1.3rem;color:var(--navy);transition:color .25s}
.pi-title{
  font-size:1.1rem;font-weight:800;color:var(--navy);
  margin-bottom:.7rem;transition:color .25s;
}
.pi-text{font-size:.88rem;color:var(--text-light);line-height:1.7;margin-bottom:1.3rem;transition:color .25s}
.pi-list{display:flex;flex-direction:column;gap:.4rem;margin-bottom:1.6rem}
.pi-list li{
  font-size:.82rem;color:var(--text-light);
  padding-left:1rem;position:relative;line-height:1.5;transition:color .25s;
}
.pi-list li::before{
  content:'→';position:absolute;left:0;
  color:var(--gold);font-size:.75rem;transition:color .25s;
}
.pi-link{
  display:inline-flex;align-items:center;gap:.4rem;
  font-size:.8rem;font-weight:700;color:var(--navy);
  text-transform:uppercase;letter-spacing:.08em;
  transition:color .25s;
}
.pi-link-line{
  width:20px;height:1.5px;background:var(--navy);
  transition:width .25s,background .25s;
}
.pillar-item:hover .pi-link-line{width:28px}

/* ── Synergy ────────────────────────────────── */
.synergy{background:var(--off-white);border-top:1px solid var(--border)}
.synergy-layout{
  display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;
}
.synergy-visual{position:relative}
.syn-card{
  background:var(--white);border:1px solid var(--border);
  border-radius:var(--radius-lg);padding:2rem 2.2rem;
  box-shadow:var(--shadow-sm);
  transition:all .25s;
}
.syn-card:hover{box-shadow:var(--shadow-md);transform:translateY(-3px)}
.syn-card-header{
  display:flex;align-items:center;gap:.8rem;
  margin-bottom:1.2rem;padding-bottom:1.2rem;
  border-bottom:1px solid var(--border);
}
.syn-icon{
  width:40px;height:40px;border-radius:8px;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.syn-icon.navy{background:var(--navy)}
.syn-icon.gold{background:linear-gradient(135deg,var(--gold),var(--gold-light))}
.syn-icon i{font-size:1rem;color:#fff}
.syn-card-title{font-size:.95rem;font-weight:800;color:var(--navy)}
.syn-card-sub{font-size:.75rem;color:var(--text-light);margin-top:.1rem}
.syn-tags{display:flex;gap:.4rem;flex-wrap:wrap;margin-bottom:1rem}
.syn-tag{
  font-size:.7rem;font-weight:600;padding:.2rem .7rem;
  border-radius:100px;border:1px solid var(--border);
  color:var(--text-light);background:var(--gray-50);
}
.syn-list li{
  font-size:.82rem;color:var(--text-light);
  padding:.28rem 0;padding-left:1rem;
  position:relative;border-bottom:1px solid var(--gray-50);
}
.syn-list li:last-child{border-bottom:none}
.syn-list li::before{content:'·';position:absolute;left:0;color:var(--gold);font-size:1.1rem;line-height:1}
.syn-bridge{
  text-align:center;margin:1.2rem 0;
  display:flex;flex-direction:column;align-items:center;gap:.4rem;
}
.syn-bridge-line{width:2px;height:20px;background:var(--border)}
.syn-bridge-badge{
  background:var(--navy);color:var(--gold-light);
  font-family:'Montserrat',sans-serif;
  font-size:.65rem;font-weight:700;letter-spacing:.12em;
  padding:.35rem .9rem;border-radius:100px;
}
.synergy-text .sec-label{display:block}
.synergy-results{
  margin-top:2.2rem;display:grid;grid-template-columns:1fr 1fr;gap:.8rem;
}
.sr-item{
  display:flex;align-items:center;gap:.7rem;
  padding:.9rem 1rem;background:var(--white);
  border:1px solid var(--border);border-radius:var(--radius);
  font-size:.82rem;font-weight:600;color:var(--text-mid);
  transition:all .2s;
}
.sr-item:hover{border-color:var(--navy);color:var(--navy)}
.sr-item i{color:var(--gold);font-size:.9rem;flex-shrink:0}

/* ── About/Values ───────────────────────────── */
.values-section{background:var(--white)}
.values-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.val-card{
  padding:2rem 1.6rem;border:1px solid var(--border);
  border-radius:var(--radius);transition:all .25s;
  position:relative;overflow:hidden;
}
.val-card::before{
  content:'';position:absolute;top:0;left:0;right:0;
  height:3px;background:var(--border);transition:background .25s;
}
.val-card:hover{box-shadow:var(--shadow-md);transform:translateY(-4px)}
.val-card:hover::before{background:linear-gradient(90deg,var(--navy),var(--gold))}
.val-icon{
  width:48px;height:48px;border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1.2rem;background:var(--off-white);
}
.val-icon.ni{background:var(--navy)}
.val-icon.gi{background:linear-gradient(135deg,var(--gold),var(--gold-light))}
.val-icon i{font-size:1.2rem;color:var(--white)}
.val-title{font-size:.95rem;font-weight:800;color:var(--navy);margin-bottom:.6rem}
.val-text{font-size:.83rem;color:var(--text-light);line-height:1.7}

/* ── Numbers ────────────────────────────────── */
.numbers-section{
  background:var(--navy);padding:70px 0;
}
.nums-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0}
.num-item{
  text-align:center;padding:2.5rem 1.5rem;
  border-right:1px solid rgba(255,255,255,.1);
  position:relative;
}
.num-item:last-child{border-right:none}
.num-icon{
  width:48px;height:48px;border-radius:10px;
  background:rgba(184,146,42,.15);border:1px solid rgba(184,146,42,.25);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 1rem;
}
.num-icon i{font-size:1.2rem;color:var(--gold-light)}
.num-val{
  display:flex;align-items:baseline;justify-content:center;gap:.2rem;
  margin-bottom:.4rem;
}
.counter{
  font-family:'Montserrat',sans-serif;
  font-size:2.4rem;font-weight:900;color:var(--gold-light);
}
.num-unit{font-size:.9rem;font-weight:700;color:var(--gold-light)}
.num-label{font-size:.78rem;color:rgba(255,255,255,.5);line-height:1.5}

/* ── Leadership ─────────────────────────────── */
.leadership-section{background:var(--off-white);border-top:1px solid var(--border)}
.leadership-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin-bottom:3rem}
.leader-card{
  background:var(--white);border:1px solid var(--border);
  border-radius:var(--radius-lg);padding:2rem;
  display:flex;gap:1.5rem;align-items:flex-start;
  transition:all .25s;
}
.leader-card:hover{box-shadow:var(--shadow-md);transform:translateY(-3px)}
.lc-photo{
  width:96px;height:112px;border-radius:var(--radius);
  object-fit:cover;border:2px solid var(--border);flex-shrink:0;
}
.lc-photo-ph{
  width:96px;height:112px;border-radius:var(--radius);
  background:var(--gray-100);display:flex;align-items:center;
  justify-content:center;flex-shrink:0;border:2px solid var(--border);
  color:var(--gray-300);font-size:2rem;
}
.lc-role{
  display:inline-block;
  font-size:.68rem;font-weight:700;letter-spacing:.1em;
  text-transform:uppercase;color:var(--gold);
  background:var(--gold-pale);padding:.2rem .7rem;
  border-radius:100px;margin-bottom:.5rem;
}
.lc-name{font-size:1.2rem;font-weight:800;color:var(--navy);margin-bottom:.6rem}
.lc-desc{font-size:.84rem;color:var(--text-light);line-height:1.7}
.advisors-box{
  background:var(--white);border:1px solid var(--border);
  border-radius:var(--radius-lg);padding:2.5rem;
}
.advisors-label{
  font-family:'Montserrat',sans-serif;
  font-size:.68rem;font-weight:700;letter-spacing:.2em;
  text-transform:uppercase;color:var(--text-light);
  margin-bottom:1.8rem;text-align:center;
}
.advisors-grid{
  display:grid;grid-template-columns:repeat(6,1fr);gap:1rem;
}
.advisor-item{text-align:center}
.adv-photo{
  width:72px;height:72px;border-radius:50%;object-fit:cover;
  border:2px solid var(--border);margin:0 auto .6rem;
  transition:all .25s;
}
.advisor-item:hover .adv-photo{border-color:var(--navy)}
.adv-ph{
  width:72px;height:72px;border-radius:50%;
  background:var(--gray-100);display:flex;align-items:center;justify-content:center;
  margin:0 auto .6rem;color:var(--gray-300);font-size:1.5rem;
}
.adv-name{display:block;font-size:.8rem;font-weight:700;color:var(--navy)}
.adv-org{display:block;font-size:.7rem;color:var(--text-light);margin-top:.15rem}

/* ── CTA Banner ─────────────────────────────── */
.cta-section{
  background:var(--navy);
  padding:80px 0;
  position:relative;overflow:hidden;
}
.cta-pattern{
  position:absolute;inset:0;opacity:.04;
  background-image:
    linear-gradient(rgba(255,255,255,.8) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.8) 1px,transparent 1px);
  background-size:40px 40px;
}
.cta-inner{
  position:relative;z-index:1;
  max-width:700px;margin:0 auto;text-align:center;padding:0 40px;
}
.cta-inner h2{
  font-size:clamp(1.6rem,2.5vw,2.2rem);font-weight:900;
  color:#fff;line-height:1.3;margin-bottom:.8rem;
}
.cta-inner p{font-size:.95rem;color:rgba(255,255,255,.65);margin-bottom:2.2rem;line-height:1.7}
.cta-btns{display:flex;gap:.8rem;justify-content:center;flex-wrap:wrap}

/* ── Page Hero (inner) ──────────────────────── */
.page-hero{
  padding:120px 0 60px;
  background:var(--navy);position:relative;overflow:hidden;
}
.page-hero::after{
  content:'';position:absolute;
  inset:0;
  background:radial-gradient(ellipse 60% 80% at 80% 50%,rgba(184,146,42,.08),transparent);
  pointer-events:none;
}
.page-hero-grid{
  position:absolute;inset:0;opacity:.035;
  background-image:
    linear-gradient(rgba(255,255,255,.8) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.8) 1px,transparent 1px);
  background-size:50px 50px;
}
.page-hero-inner{
  position:relative;z-index:1;
  max-width:1200px;margin:0 auto;padding:0 40px;
}
.breadcrumb{
  display:flex;align-items:center;gap:.4rem;
  font-size:.78rem;color:rgba(255,255,255,.4);margin-bottom:1.2rem;
}
.breadcrumb a{color:rgba(255,255,255,.5);transition:color .2s}
.breadcrumb a:hover{color:var(--gold-light)}
.breadcrumb span{color:var(--gold-light)}
.breadcrumb i{font-size:.6rem}
.page-hero h1{
  font-size:clamp(2rem,3.5vw,2.8rem);font-weight:900;
  color:#fff;margin-bottom:.35rem;letter-spacing:-.02em;
}
.page-hero-en{
  font-family:'Montserrat',sans-serif;
  font-size:.78rem;font-weight:600;letter-spacing:.18em;
  text-transform:uppercase;color:rgba(255,255,255,.35);
}

/* ── About Page ─────────────────────────────── */
.greeting-section{background:var(--white)}
.greeting-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem}
.greeting-card{
  border:1px solid var(--border);border-radius:var(--radius-lg);
  overflow:hidden;transition:box-shadow .25s;
}
.greeting-card:hover{box-shadow:var(--shadow-md)}
.gc-photo-area{
  height:240px;overflow:hidden;background:var(--navy);
  display:flex;align-items:center;justify-content:center;
}
.gc-photo-area img{width:100%;height:100%;object-fit:cover;object-position:center top;filter:grayscale(10%)}
.gc-photo-ph{color:rgba(255,255,255,.2);font-size:4rem}
.gc-body{padding:1.8rem 2rem}
.gc-role{
  display:inline-block;font-size:.68rem;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--gold);background:var(--gold-pale);
  padding:.2rem .7rem;border-radius:100px;margin-bottom:.5rem;
}
.gc-name{font-size:1.3rem;font-weight:800;color:var(--navy);margin-bottom:1.2rem}
.gc-quote{
  padding:1.2rem 1.4rem;background:var(--off-white);
  border-left:3px solid var(--gold);border-radius:0 var(--radius) var(--radius) 0;
  margin-bottom:1.2rem;
}
.gc-quote p{font-size:.85rem;color:var(--text-light);line-height:1.8;margin-bottom:.6rem}
.gc-quote p:last-child{margin-bottom:0}
.gc-sign{font-size:.85rem;font-weight:700;color:var(--navy)}
.mission-box-section{background:var(--off-white);border-top:1px solid var(--border)}
.mission-box{
  background:var(--navy);border-radius:var(--radius-lg);
  padding:3.5rem;text-align:center;
}
.mb-icon{
  width:64px;height:64px;border-radius:50%;
  background:rgba(184,146,42,.2);border:1.5px solid rgba(184,146,42,.4);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 1.4rem;
}
.mb-icon i{font-size:1.6rem;color:var(--gold-light)}
.mb-label{
  font-family:'Montserrat',sans-serif;
  font-size:.65rem;font-weight:700;letter-spacing:.2em;
  color:var(--gold);text-transform:uppercase;margin-bottom:1rem;display:block;
}
.mb-text{
  font-size:1.05rem;color:rgba(255,255,255,.8);
  line-height:1.85;font-style:italic;max-width:680px;margin:0 auto;
}

/* Org Chart */
.org-section{background:var(--white)}
.org-wrap{
  border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:3rem;
}
.org-row{display:flex;justify-content:center;gap:1.2rem;flex-wrap:wrap}
.org-connector{width:1.5px;height:28px;background:var(--gray-200);margin:.6rem auto}
.org-box{
  display:flex;flex-direction:column;align-items:center;gap:.25rem;
  padding:.9rem 1.6rem;border-radius:var(--radius);
  text-align:center;min-width:120px;
}
.org-box i{font-size:1rem;margin-bottom:.2rem}
.org-box strong{font-size:.85rem;font-weight:700}
.org-box small{font-size:.72rem;opacity:.7}
.ob-top{background:var(--navy);color:#fff}
.ob-main{background:linear-gradient(135deg,var(--gold),var(--gold-light));color:var(--navy)}
.ob-side{background:var(--off-white);border:1px solid var(--border);color:var(--text-mid)}
.ob-dept{background:var(--navy);color:#fff;min-width:100px;padding:.75rem 1rem}
.ob-dept i{color:var(--gold-light)}
.org-subs-section{
  margin-top:2rem;padding:1.5rem;
  background:var(--off-white);border-radius:var(--radius);
  border:1px solid var(--border);
}
.org-sub-label{
  font-size:.68rem;font-weight:700;letter-spacing:.15em;
  text-transform:uppercase;color:var(--text-light);
  text-align:center;margin-bottom:1.4rem;
}
.org-adv-row{display:flex;justify-content:center;gap:2rem;flex-wrap:wrap}
.oa-item{text-align:center}
.oa-photo{
  width:56px;height:56px;border-radius:50%;overflow:hidden;
  margin:0 auto .5rem;border:2px solid var(--border);
}
.oa-photo img{width:100%;height:100%;object-fit:cover}
.oa-ph{
  width:56px;height:56px;border-radius:50%;
  background:var(--gray-200);display:flex;align-items:center;
  justify-content:center;color:var(--gray-400);font-size:1.2rem;
  margin:0 auto .5rem;
}
.oa-name{display:block;font-size:.78rem;font-weight:700;color:var(--navy)}
.oa-role{display:block;font-size:.68rem;color:var(--text-light);margin-top:.1rem}
.org-aff-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:.8rem}
.org-aff-item{
  background:var(--white);border:1px solid var(--border);
  border-radius:var(--radius);padding:1.1rem;
  text-align:center;font-size:.8rem;font-weight:700;color:var(--navy);
  line-height:1.4;transition:all .2s;
}
.org-aff-item:hover{border-color:var(--navy);background:var(--navy);color:#fff}
.org-aff-item:hover i{color:var(--gold-light)}
.org-aff-item i{font-size:1.1rem;color:var(--gold);display:block;margin-bottom:.5rem;transition:color .2s}

/* Transform */
.transform-section{background:var(--off-white);border-top:1px solid var(--border)}
.transform-grid{display:grid;grid-template-columns:1fr auto 1fr;gap:2rem;align-items:center}
.tf-card{
  background:var(--white);border:1px solid var(--border);
  border-radius:var(--radius-lg);padding:2.2rem;
}
.tf-head{display:flex;align-items:center;gap:.7rem;margin-bottom:1.4rem}
.tf-head i{font-size:1.2rem}
.tf-before .tf-head i{color:var(--gray-300)}
.tf-after .tf-head i{color:var(--gold)}
.tf-head h3{font-size:1rem;font-weight:800;color:var(--navy)}
.tf-list li{
  display:flex;align-items:flex-start;gap:.7rem;
  font-size:.85rem;padding:.5rem 0;
  border-bottom:1px solid var(--gray-50);color:var(--text-light);
}
.tf-list li:last-child{border-bottom:none}
.tf-list li i{flex-shrink:0;margin-top:2px}
.tf-before li i{color:var(--gray-300)}
.tf-after li i{color:var(--gold)}
.tf-arrow{display:flex;flex-direction:column;align-items:center;gap:.4rem}
.tf-arrow i{font-size:1.8rem;color:var(--gold)}
.tf-arrow span{font-size:.68rem;font-weight:700;color:var(--text-light);white-space:nowrap;writing-mode:horizontal-tb}

/* ── Programs Page ──────────────────────────── */
.prog-section{background:var(--white)}
.prog-section.alt{background:var(--off-white)}
.prog-grid{display:grid;grid-template-columns:1fr 1fr;gap:3.5rem;align-items:start}
.prog-visual-box{
  background:var(--navy);border-radius:var(--radius-lg);
  padding:2.5rem;
}
.pvb-icon{font-size:2rem;color:var(--gold);display:block;margin-bottom:.8rem}
.pvb-title{font-size:1.1rem;font-weight:800;color:#fff;margin-bottom:1.4rem}
.pets-steps{display:flex;flex-direction:column;gap:.8rem}
.pets-step{
  display:flex;align-items:center;gap:1rem;
  padding:.9rem 1.1rem;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);border-radius:var(--radius);
  transition:background .2s;
}
.pets-step:hover{background:rgba(255,255,255,.1)}
.ps-letter{
  width:38px;height:38px;background:var(--gold);
  color:var(--navy);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-weight:900;font-size:1rem;flex-shrink:0;
}
.ps-info strong{font-size:.88rem;color:#fff;display:block}
.ps-info span{font-size:.75rem;color:rgba(255,255,255,.5)}
.prog-items{display:flex;flex-direction:column;gap:1rem}
.prog-item{
  display:flex;gap:1.2rem;align-items:flex-start;
  padding:1.4rem 1.6rem;background:var(--white);
  border:1px solid var(--border);border-radius:var(--radius);
  transition:all .25s;
}
.alt .prog-item{background:var(--white)}
.prog-item:hover{border-color:var(--navy);box-shadow:var(--shadow-sm);transform:translateX(3px)}
.pi-ico{
  width:44px;height:44px;border-radius:9px;
  background:var(--navy);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.pi-ico i{font-size:1rem;color:var(--gold-light)}
.prog-item h4{font-size:.9rem;font-weight:700;color:var(--navy);margin-bottom:.35rem}
.prog-item p{font-size:.82rem;color:var(--text-light);line-height:1.7}
.comp-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.comp-card{
  background:var(--white);border:1px solid var(--border);
  border-radius:var(--radius-lg);overflow:hidden;
  transition:all .25s;
}
.comp-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-5px)}
.comp-header{
  padding:2rem;text-align:center;
  display:flex;flex-direction:column;align-items:center;gap:.7rem;
}
.ch-navy{background:var(--navy)}
.ch-gold{background:linear-gradient(135deg,var(--gold),var(--gold-light))}
.comp-header i{font-size:1.8rem}
.ch-navy i{color:var(--gold-light)}
.ch-gold i{color:rgba(255,255,255,.9)}
.comp-header h3{font-size:.95rem;font-weight:800;line-height:1.35}
.ch-navy h3{color:#fff}
.ch-gold h3{color:var(--navy)}
.comp-body{padding:1.5rem}
.comp-row{
  display:flex;justify-content:space-between;
  padding:.5rem 0;border-bottom:1px solid var(--gray-50);font-size:.82rem;
}
.comp-row:last-of-type{border-bottom:none}
.comp-row span:first-child{color:var(--text-light);font-weight:600}
.comp-row span:last-child{color:var(--navy);font-weight:700;text-align:right}
.comp-tags{
  display:flex;gap:.4rem;flex-wrap:wrap;
  margin-top:1rem;padding-top:1rem;border-top:1px solid var(--border);
}
.ctag{
  font-size:.68rem;font-weight:700;
  padding:.18rem .65rem;border-radius:100px;
  background:var(--navy);color:#fff;
}
.global-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.global-card{
  padding:2.2rem;border:1px solid var(--border);
  border-radius:var(--radius-lg);text-align:center;
  transition:all .25s;background:var(--white);
}
.global-card:hover{box-shadow:var(--shadow-md);transform:translateY(-4px);border-color:var(--navy)}
.gc-icon{
  width:64px;height:64px;border-radius:50%;
  background:var(--navy);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 1.4rem;
}
.gc-icon i{font-size:1.6rem;color:var(--gold-light)}
.global-card h4{font-size:.95rem;font-weight:800;color:var(--navy);margin-bottom:.6rem}
.global-card p{font-size:.83rem;color:var(--text-light);line-height:1.7;margin-bottom:1.2rem}
.gc-meta{display:flex;flex-direction:column;gap:.4rem}
.gc-meta span{
  display:flex;align-items:center;justify-content:center;
  gap:.5rem;font-size:.78rem;color:var(--text-mid);font-weight:600;
}
.gc-meta i{color:var(--gold);font-size:.8rem}
.welfare-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem}
.wf-card{
  padding:1.8rem 1.5rem;border:1px solid var(--border);
  border-radius:var(--radius-lg);
  transition:all .25s;display:flex;flex-direction:column;
}
.wf-card:hover{box-shadow:var(--shadow-md);transform:translateY(-4px)}
.wf-icon{
  width:52px;height:52px;border-radius:10px;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1.2rem;
}
.wf-icon i{font-size:1.2rem;color:#fff}
.wf-card h4{font-size:.9rem;font-weight:800;color:var(--navy);margin-bottom:.6rem}
.wf-card p{font-size:.82rem;color:var(--text-light);line-height:1.7;flex:1;margin-bottom:1rem}
.wf-tag{
  display:inline-block;font-size:.7rem;font-weight:700;
  padding:.2rem .75rem;border-radius:100px;
  background:var(--gold-pale);color:var(--gold);align-self:flex-start;
}

/* ── Network Page ───────────────────────────── */
.finance-section{background:var(--white)}
.finance-layout{display:grid;grid-template-columns:1fr 1fr;gap:3.5rem;align-items:start}
.donut-wrap{display:flex;flex-direction:column;align-items:center;gap:2rem}
.donut-svg{width:220px;height:220px}
.dc-num{font-family:'Montserrat',sans-serif;font-size:14px;font-weight:900;fill:var(--navy)}
.dc-label{font-size:9px;fill:var(--text-light)}
.legend{width:100%}
.legend-row{
  display:flex;align-items:center;gap:.7rem;
  font-size:.83rem;color:var(--text);margin-bottom:.6rem;
}
.leg-dot{width:10px;height:10px;border-radius:50%;flex-shrink:0}
.leg-pct{margin-left:auto;font-weight:700;color:var(--navy);font-family:'Montserrat',sans-serif;font-size:.82rem}
.fi-cards{display:flex;flex-direction:column;gap:.9rem}
.fi-card{
  border:1px solid var(--border);border-radius:var(--radius);
  overflow:hidden;transition:box-shadow .2s;
}
.fi-card:hover{box-shadow:var(--shadow-sm)}
.fi-head{
  display:flex;align-items:center;gap:.75rem;
  padding:.8rem 1.1rem;font-weight:700;font-size:.85rem;
}
.fi-head i{font-size:.95rem}
.fi-pct{margin-left:auto;font-family:'Montserrat',sans-serif;font-size:.95rem;font-weight:900}
.fi-n{background:var(--navy);color:#fff}
.fi-g{background:linear-gradient(135deg,var(--gold),var(--gold-light));color:var(--navy)}
.fi-b{background:#3a7bd5;color:#fff}
.fi-t{background:#2aaa8a;color:#fff}
.fi-r{background:#e05b4b;color:#fff}
.fi-card p{padding:.75rem 1.1rem;font-size:.82rem;color:var(--text-light)}
.vp-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem}
.vp-card{
  padding:2rem 1.6rem;border:1px solid var(--border);
  border-radius:var(--radius-lg);text-align:center;
  transition:all .25s;
}
.vp-card:hover{box-shadow:var(--shadow-md);transform:translateY(-4px)}
.vp-icon{
  width:52px;height:52px;border-radius:10px;
  background:var(--navy);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 1.1rem;
}
.vp-icon i{font-size:1.2rem;color:var(--gold-light)}
.vp-card h4{font-size:.9rem;font-weight:800;color:var(--navy);margin-bottom:.5rem}
.vp-card p{font-size:.82rem;color:var(--text-light);line-height:1.7}
.esg-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.esg-card{
  background:var(--white);border:1px solid var(--border);
  border-radius:var(--radius-lg);padding:2.5rem;
  text-align:center;transition:all .25s;position:relative;
}
.esg-card:hover{box-shadow:var(--shadow-md);transform:translateY(-4px)}
.esg-tier{
  position:absolute;top:-1px;right:1.5rem;
  font-family:'Montserrat',sans-serif;
  font-size:.68rem;font-weight:800;letter-spacing:.1em;
  padding:.28rem .9rem;border-radius:0 0 8px 8px;
}
.tier-g{background:var(--gold);color:var(--navy)}
.tier-s{background:#9aa3b0;color:#fff}
.tier-b{background:#c07040;color:#fff}
.esg-icon{
  width:64px;height:64px;border-radius:50%;
  background:var(--navy);
  display:flex;align-items:center;justify-content:center;
  margin:1rem auto 1.4rem;
}
.esg-icon i{font-size:1.6rem;color:var(--gold-light)}
.esg-card h4{font-size:1.1rem;font-weight:800;color:var(--navy);margin-bottom:.3rem}
.esg-amt{
  font-family:'Montserrat',sans-serif;font-size:1.2rem;
  font-weight:900;color:var(--gold);margin-bottom:1.4rem;
}
.esg-list{text-align:left}
.esg-list li{
  display:flex;align-items:center;gap:.6rem;font-size:.83rem;
  color:var(--text-light);padding:.38rem 0;
  border-bottom:1px solid var(--gray-50);
}
.esg-list li:last-child{border-bottom:none}
.esg-list i{color:var(--gold);font-size:.7rem}

/* ── Contact Page ───────────────────────────── */
.notice-tabs{display:flex;border-bottom:1.5px solid var(--border);margin-bottom:2rem}
.tab-btn{
  padding:.75rem 1.8rem;font-size:.85rem;font-weight:700;
  color:var(--text-light);border-bottom:2px solid transparent;
  margin-bottom:-1.5px;transition:all .2s;
}
.tab-btn.active{color:var(--navy);border-bottom-color:var(--gold)}
.tab-btn:hover{color:var(--navy)}
.notice-list{display:flex;flex-direction:column}
.notice-item{
  display:flex;align-items:center;gap:1rem;
  padding:1.1rem .5rem;border-bottom:1px solid var(--border);
  cursor:pointer;transition:background .15s;border-radius:var(--radius-sm);
}
.notice-item:hover{background:var(--off-white)}
.nb{
  font-size:.68rem;font-weight:700;padding:.2rem .6rem;
  border-radius:var(--radius-sm);white-space:nowrap;flex-shrink:0;
}
.nb-new{background:var(--gold);color:var(--navy)}
.nb-info{background:var(--navy);color:#fff}
.nb-press{background:#3a7bd5;color:#fff}
.ni-content{flex:1}
.ni-content h4{font-size:.88rem;font-weight:600;color:var(--text);margin-bottom:.2rem}
.ni-meta{display:flex;gap:.8rem;font-size:.75rem;color:var(--gray-400)}
.ni-arrow{color:var(--gray-300);font-size:.75rem}
.membership-section{background:var(--navy)}
.ms-inner{padding:80px 0}
.mem-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-bottom:3rem}
.mem-card{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius-lg);padding:2.5rem;
  color:#fff;position:relative;transition:all .25s;
}
.mem-card:hover{background:rgba(255,255,255,.11)}
.mem-card.featured{
  background:#fff;color:var(--text);
  border-color:var(--gold);box-shadow:0 0 40px rgba(184,146,42,.25);
}
.mem-badge{
  position:absolute;top:-11px;right:1.4rem;
  background:var(--gold);color:var(--navy);
  font-size:.68rem;font-weight:800;
  padding:.28rem .9rem;border-radius:100px;
}
.mem-icon{
  width:52px;height:52px;border-radius:10px;
  background:rgba(184,146,42,.15);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1.4rem;
}
.mem-card.featured .mem-icon{background:var(--off-white)}
.mem-icon i{font-size:1.2rem;color:var(--gold-light)}
.mem-card.featured .mem-icon i{color:var(--navy)}
.mem-card h3{font-size:1.1rem;font-weight:800;margin-bottom:1.2rem}
.mem-card.featured h3{color:var(--navy)}
.mem-price{margin-bottom:1.4rem}
.mp-unit{display:block;font-size:.72rem;color:rgba(255,255,255,.5);font-weight:600}
.mem-card.featured .mp-unit{color:var(--text-light)}
.mp-amount{
  display:block;font-family:'Montserrat',sans-serif;
  font-size:1.5rem;font-weight:900;color:var(--gold-light);line-height:1.1;
}
.mem-card.featured .mp-amount{color:var(--navy)}
.mp-min{display:block;font-size:.74rem;color:rgba(255,255,255,.45);margin-top:.2rem}
.mem-card.featured .mp-min{color:var(--text-light)}
.mem-benefits{margin-bottom:1.8rem}
.mem-benefits li{
  display:flex;align-items:center;gap:.55rem;
  font-size:.83rem;color:rgba(255,255,255,.75);
  padding:.36rem 0;border-bottom:1px solid rgba(255,255,255,.07);
}
.mem-benefits li:last-child{border-bottom:none}
.mem-card.featured .mem-benefits li{color:var(--text-light);border-bottom-color:var(--border)}
.mem-benefits i{color:var(--gold-light);font-size:.72rem}
.process-section{
  margin-top:3rem;padding:2.5rem;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);border-radius:var(--radius-lg);
}
.process-title{text-align:center;color:#fff;font-weight:700;margin-bottom:2rem;font-size:.95rem}
.process-steps{
  display:flex;align-items:center;justify-content:center;
  gap:1rem;flex-wrap:wrap;
}
.ps-step{display:flex;align-items:center;gap:.9rem}
.ps-num{
  width:44px;height:44px;border-radius:50%;
  background:var(--gold);color:var(--navy);
  display:flex;align-items:center;justify-content:center;
  font-family:'Montserrat',sans-serif;font-size:1.1rem;font-weight:900;flex-shrink:0;
}
.ps-info strong{display:block;font-size:.82rem;color:#fff;margin-bottom:.15rem}
.ps-info p{font-size:.72rem;color:rgba(255,255,255,.45);max-width:110px;line-height:1.4}
.ps-arrow{color:rgba(255,255,255,.2);font-size:1rem}
.contact-layout{display:grid;grid-template-columns:1fr 1.6fr;gap:3rem;align-items:start}
.ci-list{display:flex;flex-direction:column}
.ci-item{
  display:flex;gap:1rem;padding:1.3rem;
  border-bottom:1px solid var(--border);
}
.ci-icon{
  width:40px;height:40px;border-radius:8px;
  background:var(--navy);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.ci-icon i{color:var(--gold-light);font-size:.9rem}
.ci-item h4{font-size:.83rem;font-weight:700;color:var(--navy);margin-bottom:.2rem}
.ci-item p{font-size:.82rem;color:var(--text-light);line-height:1.6}
.ci-map{
  background:var(--navy);border-radius:var(--radius);
  padding:2.2rem;text-align:center;margin-top:1.2rem;
  display:flex;flex-direction:column;align-items:center;gap:.4rem;
}
.ci-map i{font-size:2.2rem;color:var(--gold);margin-bottom:.3rem}
.ci-map span{font-size:.95rem;font-weight:700;color:#fff}
.ci-map small{font-size:.78rem;color:rgba(255,255,255,.5)}
.cf-box{
  background:var(--white);border:1px solid var(--border);
  border-radius:var(--radius-lg);padding:2.5rem;
  display:flex;flex-direction:column;gap:1.1rem;
}
.cf-group{display:flex;flex-direction:column;gap:.35rem}
.cf-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.cf-group label{font-size:.8rem;font-weight:700;color:var(--navy)}
.req{color:var(--gold)}
.cf-group input,.cf-group select,.cf-group textarea{
  padding:.7rem .95rem;
  border:1.5px solid var(--border);border-radius:var(--radius-sm);
  font-size:.88rem;color:var(--text);background:var(--white);
  transition:border-color .2s,box-shadow .2s;
}
.cf-group input:focus,.cf-group select:focus,.cf-group textarea:focus{
  outline:none;border-color:var(--navy);
  box-shadow:0 0 0 3px rgba(13,33,64,.06);
}
.cf-group textarea{resize:vertical}
.cf-check{display:flex;align-items:flex-start;gap:.7rem;font-size:.8rem;color:var(--text-light)}
.cf-check input{width:15px;height:15px;margin-top:2px;accent-color:var(--navy);flex-shrink:0}
.btn-submit-full{width:100%;justify-content:center}

/* ── Footer ─────────────────────────────────── */
.footer{background:var(--navy);color:#fff;padding-top:4rem}
.footer-inner{max-width:1200px;margin:0 auto;padding:0 40px}
.footer-grid{
  display:grid;grid-template-columns:2fr 1fr 1fr 1.4fr;
  gap:3rem;padding-bottom:3rem;
  border-bottom:1px solid rgba(255,255,255,.09);
}
.f-brand-name{
  font-family:'Montserrat',sans-serif;
  font-size:1.1rem;font-weight:900;color:var(--gold-light);
  letter-spacing:.1em;margin-bottom:.2rem;
}
.f-brand-kr{font-size:.72rem;color:rgba(255,255,255,.45);letter-spacing:.06em}
.f-slogan{font-size:.82rem;color:var(--gold-light);font-style:italic;margin:1rem 0 .6rem}
.f-desc{font-size:.8rem;color:rgba(255,255,255,.45);line-height:1.7;margin-bottom:1.4rem}
.f-social{display:flex;gap:.5rem}
.f-si{
  width:34px;height:34px;border-radius:7px;
  background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.1);
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.5);font-size:.85rem;transition:all .2s;
}
.f-si:hover{background:var(--gold);color:var(--navy);border-color:var(--gold)}
.footer-col h4{
  font-size:.72rem;font-weight:700;color:var(--gold);
  letter-spacing:.15em;text-transform:uppercase;margin-bottom:1.1rem;
}
.footer-col ul li{margin-bottom:.45rem}
.footer-col a{font-size:.8rem;color:rgba(255,255,255,.5);transition:color .2s}
.footer-col a:hover{color:var(--gold-light)}
.f-ci li{
  display:flex;align-items:flex-start;gap:.5rem;
  font-size:.78rem;color:rgba(255,255,255,.5);margin-bottom:.55rem;line-height:1.5;
}
.f-ci i{color:var(--gold);margin-top:2px;flex-shrink:0;font-size:.8rem}
.f-badges{display:flex;gap:.4rem;margin-top:.9rem;flex-wrap:wrap}
.f-badge{
  font-size:.64rem;font-weight:600;padding:.2rem .7rem;border-radius:100px;
  border:1px solid rgba(184,146,42,.3);color:var(--gold-light);
  background:rgba(184,146,42,.08);
}
.footer-bottom{
  padding:1.4rem 0;text-align:center;
}
.footer-bottom p{font-size:.76rem;color:rgba(255,255,255,.3);line-height:1.7}

/* ── Animations ─────────────────────────────── */
.fade-up,.fade-l,.fade-r{
  opacity:0;transition:opacity .7s var(--ease),transform .7s var(--ease);
}
.fade-up{transform:translateY(28px)}
.fade-l{transform:translateX(-28px)}
.fade-r{transform:translateX(28px)}
.fade-up.in,.fade-l.in,.fade-r.in{opacity:1;transform:none}
.fade-up:nth-child(2){transition-delay:.1s}
.fade-up:nth-child(3){transition-delay:.2s}
.fade-up:nth-child(4){transition-delay:.3s}

/* ── Responsive ─────────────────────────────── */
@media(max-width:1024px){
  .container{padding:0 28px}
  .nav-inner{padding:0 28px}
  .hero-inner{grid-template-columns:1fr;padding:80px 28px 60px}
  .hero-right{display:none}
  .pillars-grid{grid-template-columns:1fr 1fr}
  .synergy-layout{grid-template-columns:1fr}
  .values-grid{grid-template-columns:repeat(2,1fr)}
  .nums-grid{grid-template-columns:repeat(2,1fr)}
  .num-item{border-right:none;border-bottom:1px solid rgba(255,255,255,.1)}
  .num-item:last-child{border-bottom:none}
  .leadership-grid{grid-template-columns:1fr}
  .advisors-grid{grid-template-columns:repeat(4,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .prog-grid{grid-template-columns:1fr}
  .comp-grid{grid-template-columns:1fr}
  .global-grid{grid-template-columns:1fr}
  .welfare-grid{grid-template-columns:repeat(2,1fr)}
  .finance-layout{grid-template-columns:1fr}
  .vp-grid{grid-template-columns:repeat(2,1fr)}
  .esg-grid{grid-template-columns:1fr}
  .contact-layout{grid-template-columns:1fr}
  .mem-grid{grid-template-columns:1fr}
  .transform-grid{grid-template-columns:1fr}
  .tf-arrow{transform:rotate(90deg);margin:1rem 0}
  .org-aff-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .nav-toggle{display:flex}
  .nav-menu{
    position:fixed;top:0;right:-100%;width:270px;height:100vh;
    background:var(--navy);flex-direction:column;align-items:flex-start;
    padding:5rem 1.8rem 2rem;gap:.4rem;
    transition:right .3s var(--ease);overflow-y:auto;
    box-shadow:-4px 0 20px rgba(0,0,0,.25);
  }
  .nav-menu.open{right:0}
  .nav-link{color:rgba(255,255,255,.8);width:100%;padding:.7rem 1rem;border-radius:var(--radius-sm)}
  .nav-link:hover,.nav-link.active{color:var(--gold-light);background:rgba(255,255,255,.07)}
  .nav-link.active::after{display:none}
  .nav-actions{flex-direction:column;margin:0.8rem 0 0;width:100%;gap:.4rem}
  .nav-join{text-align:center;width:100%;padding:.7rem 1rem}
  .navbar{background:rgba(255,255,255,.98)}
  .pillars-grid{grid-template-columns:1fr}
  .synergy-results{grid-template-columns:1fr}
  .hero-stats{flex-direction:column;gap:1.5rem}
  .hero-stat{border-right:none;border-bottom:1px solid rgba(255,255,255,.1);padding:0 0 1.5rem;margin:0}
  .hero-stat:last-child{border-bottom:none}
  .hero-cta{flex-direction:column}
  .comp-grid{grid-template-columns:1fr}
  .welfare-grid{grid-template-columns:1fr}
  .org-aff-grid{grid-template-columns:1fr 1fr}
  .greeting-grid{grid-template-columns:1fr}
  .advisors-grid{grid-template-columns:repeat(3,1fr)}
  .process-steps{flex-direction:column}
  .ps-arrow{transform:rotate(90deg)}
  .cf-row{grid-template-columns:1fr}
  .mission-inner{gap:1.2rem}
  .mission-sep{display:none}
}
@media(max-width:480px){
  .container{padding:0 20px}
  .nav-inner{padding:0 20px}
  .footer-grid{grid-template-columns:1fr}
  .values-grid{grid-template-columns:1fr}
  .nums-grid{grid-template-columns:1fr}
  .vp-grid{grid-template-columns:1fr}
  .org-aff-grid{grid-template-columns:1fr 1fr}
  .advisors-grid{grid-template-columns:repeat(2,1fr)}
  .hero-inner{padding:60px 20px 50px}
  .cta-btns{flex-direction:column}
  .section{padding:70px 0}
}

/* scrollbar */
::-webkit-scrollbar{width:5px}
::-webkit-scrollbar-track{background:var(--gray-50)}
::-webkit-scrollbar-thumb{background:var(--navy);border-radius:3px}
::-webkit-scrollbar-thumb:hover{background:var(--gold)}
