/* =====================================================================
   Isaac Global — Home
   Fonts: Pretendard (local)
   ===================================================================== */

/* ---------- Pretendard @font-face ---------- */
@font-face{font-family:'Pretendard';font-weight:300;font-display:swap;
  src:url('Font/web/static/woff2/Pretendard-Light.woff2') format('woff2');}
@font-face{font-family:'Pretendard';font-weight:400;font-display:swap;
  src:url('Font/web/static/woff2/Pretendard-Regular.woff2') format('woff2');}
@font-face{font-family:'Pretendard';font-weight:500;font-display:swap;
  src:url('Font/web/static/woff2/Pretendard-Medium.woff2') format('woff2');}
@font-face{font-family:'Pretendard';font-weight:600;font-display:swap;
  src:url('Font/web/static/woff2/Pretendard-SemiBold.woff2') format('woff2');}
@font-face{font-family:'Pretendard';font-weight:700;font-display:swap;
  src:url('Font/web/static/woff2/Pretendard-Bold.woff2') format('woff2');}
@font-face{font-family:'Pretendard';font-weight:800;font-display:swap;
  src:url('Font/web/static/woff2/Pretendard-ExtraBold.woff2') format('woff2');}

/* ---------- Design tokens ---------- */
:root{
  --navy:#232d4b;          /* labels / accents / icons */
  --ink:#16181d;           /* near-black headings */
  --ink-soft:#282828;      /* news titles */
  --body:#565656;          /* body text on light */
  --body-light:#cfd1d5;    /* body text on dark */
  --bg:#ffffff;
  --bg-soft:#fbfbfb;
  --bg-news:#f6f6f6;
  --dark-1:#0b0e15;        /* AI Digital Global partner */
  --dark-2:#16162a;        /* About / vision */
  --footer:#252527;

  --maxw:1600px;           /* wide container  -> ~160px gutters @1920 */
  --innerw:1430px;         /* narrow container -> ~245px gutters @1920 */
  --indent:203px;          /* left indent for service/aidg/about */
}

/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{-webkit-text-size-adjust:100%;}
body{
  font-family:'Pretendard',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{display:block;max-width:100%;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;}

/* ---------- Containers ---------- */
.container{width:90%;max-width:var(--maxw);margin:0 auto;}
.container-narrow{width:90%;max-width:var(--innerw);margin:0 auto;}

/* indented left block (service / aidg / about) */
.indent{padding-left:clamp(0px,10.57vw,var(--indent));}

/* eyebrow label */
.eyebrow{
  font-size:16px;font-weight:700;letter-spacing:.14em;
  color:var(--navy);text-transform:none;
}

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header{
  position:absolute;top:0;left:0;right:0;z-index:50;
  height:96px;display:flex;align-items:center;
}
.site-header .header-inner{
  width:100%;max-width:1806px;margin:0 auto;padding:0 114px 0 114px;
  display:flex;align-items:center;justify-content:space-between;
}
.brand{display:flex;align-items:center;}
.brand img{height:40px;width:auto;}
.main-nav{display:flex;align-items:center;gap:72px;}
.main-nav a{
  color:#f1f1f1;font-size:18px;font-weight:500;letter-spacing:.01em;
  transition:opacity .2s;
}
.main-nav a:hover{opacity:.7;}

/* =====================================================================
   HERO
   ===================================================================== */
.hero{
  position:relative;
  min-height:1012px;
  display:flex;align-items:center;justify-content:center;
  text-align:center;color:#fff;
  background:#0c0c0c;
  overflow:hidden;
}
.hero::before{ /* photo */
  content:"";position:absolute;inset:0;
  background:url('assets/hero.jpg') center 30%/cover no-repeat;
  z-index:0;
}
.hero::after{ /* dark overlay */
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(8,9,12,.62),rgba(8,9,12,.66));
  z-index:1;
}
.hero-inner{position:relative;z-index:2;padding-top:130px;max-width:1100px;}
.hero .eyebrow{
  color:#e6e6e6;font-weight:600;letter-spacing:.18em;font-size:18px;
  margin-bottom:22px;
}
.hero h1{
  font-size:60px;font-weight:700;line-height:1.18;letter-spacing:-.01em;
  color:#fff;margin-bottom:14px;
}
.hero .hero-sub{
  font-size:36px;font-weight:700;letter-spacing:.01em;color:#fff;
  margin-bottom:30px;
}
.hero p{
  font-size:18px;font-weight:400;line-height:1.78;color:#cdcdcd;
}

/* scroll dot (right side) */
.hero-scroll{
  position:absolute;right:46px;top:50%;transform:translateY(-50%);
  z-index:3;display:flex;flex-direction:column;align-items:center;gap:10px;
}
.hero-scroll .dot{width:7px;height:7px;border-radius:50%;background:#fff;}
.hero-scroll .dot.sm{width:5px;height:5px;background:rgba(255,255,255,.45);}

/* =====================================================================
   STATS CARD (overlaps hero / intro)
   ===================================================================== */
.stats-wrap{
  position:relative;z-index:30;
  margin-top:-120px;        /* pull up so the frosted header sits fully on the hero photo */
  margin-bottom:0;
}
.stats-card{
  width:90%;max-width:var(--innerw);margin:0 auto;
  border-radius:18px;overflow:hidden;
  box-shadow:0 30px 60px rgba(0,0,0,.12);
}
.stats-head{
  background:linear-gradient(180deg,rgba(255,255,255,.20),rgba(255,255,255,.09));
  -webkit-backdrop-filter:blur(8px);
  backdrop-filter:blur(8px);
  padding:42px 56px 36px;
  display:flex;align-items:center;justify-content:space-between;
}
.stats-head .title{
  color:#fff;font-size:20px;font-weight:600;position:relative;padding-bottom:12px;
}
.stats-head .title::after{
  content:"";position:absolute;left:0;bottom:0;width:118px;height:2px;background:#fff;
}
.stats-head .since{color:#eaeaea;font-size:24px;font-weight:600;}
.stats-body{
  background:#fff;padding:34px 56px 40px;
  display:flex;gap:0;
}
.stat{
  padding:0 48px;position:relative;
}
.stat:first-child{padding-left:0;}
.stat:not(:first-child)::before{
  content:"";position:absolute;left:0;top:4px;bottom:4px;width:1px;background:#e2e2e2;
}
.stat .label{font-size:21px;font-weight:700;color:var(--ink);margin-bottom:8px;}
.stat .value{font-size:18px;font-weight:500;color:#444;}

/* =====================================================================
   COMPANY INTRODUCTION
   ===================================================================== */
.intro{
  padding:150px 0 196px;
  text-align:center;
}
.intro .eyebrow{display:block;margin-bottom:22px;color:var(--ink);letter-spacing:.12em;}
.intro h2{
  font-size:42px;font-weight:700;color:var(--ink);letter-spacing:-.01em;
  margin-bottom:40px;line-height:1.3;
}
.intro .lead{max-width:1180px;margin:0 auto;}
.intro .lead p{
  font-size:18px;font-weight:400;line-height:1.85;color:#3f3f3f;
}
.intro .lead p+p{margin-top:24px;}

/* =====================================================================
   AI DIGITAL GLOBAL PARTNER (dark / circuit)
   ===================================================================== */
.aidg{
  position:relative;background:var(--dark-1);color:#fff;
  padding:128px 0 0;overflow:hidden;
}
.aidg::before{
  content:"";position:absolute;inset:0;
  background:url('assets/bg-circuit.jpg') center/cover no-repeat;
  opacity:1;z-index:0;
}
.aidg .container{position:relative;z-index:1;}
.aidg h2{
  font-size:44px;font-weight:700;letter-spacing:-.01em;margin-bottom:22px;
}
.aidg .sub{
  font-size:18px;line-height:1.6;color:var(--body-light);font-weight:400;
  margin-bottom:92px;
}
.aidg-features{
  display:flex;align-items:center;gap:0;padding-bottom:98px;
}
.feature{
  display:flex;align-items:center;gap:20px;padding:0 54px;position:relative;
}
.feature:first-child{padding-left:0;}
.feature:not(:first-child)::before{
  content:"";position:absolute;left:0;top:-6px;bottom:-6px;width:1px;
  background:rgba(255,255,255,.18);
}
.feature .ic{
  width:64px;height:64px;border-radius:50%;flex:0 0 auto;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(145deg,#5d626e,#30343d);
  box-shadow:inset 0 1px 1px rgba(255,255,255,.15);
}
.feature .ic svg{width:32px;height:32px;fill:#fff;}
.feature .ft-title{font-size:22px;font-weight:700;color:#fff;line-height:1.2;}
.feature .ft-desc{font-size:16px;font-weight:400;color:#c6c9d1;margin-top:6px;}

/* =====================================================================
   OUR SERVICE
   ===================================================================== */
.service{background:var(--bg-soft);padding:194px 0 178px;position:relative;overflow:hidden;}
.service::after{ /* gradient transition strip (aboutup) at the bottom -> fades into the dark about section */
  content:"";position:absolute;left:0;right:0;bottom:0;height:10.68vw;z-index:0;
  background:url('assets/aboutup.png') bottom center/100% auto no-repeat;
}
.service .container{position:relative;z-index:1;}
.service .svc-grid{
  display:grid;grid-template-columns:1fr auto;
  align-items:center;gap:16px;
}
.service .svc-left .eyebrow{display:block;margin-bottom:22px;letter-spacing:.02em;}
.service h2{
  font-size:40px;font-weight:700;color:var(--ink);line-height:1.32;
  letter-spacing:-.02em;margin-bottom:28px;white-space:nowrap;
}
.service .svc-left p{font-size:18px;line-height:1.75;color:#444;}
.svc-cards{display:flex;gap:32px;}
.svc-card{
  width:264px;background:#fff;border-radius:16px;
  padding:28px 26px 34px;
  box-shadow:0 20px 40px rgba(40,50,80,.07);
}
.svc-card .top{display:flex;align-items:center;justify-content:space-between;margin-bottom:28px;}
.svc-card .top svg{width:44px;height:44px;fill:#2b3553;}
.svc-card .num{font-size:40px;font-weight:700;color:#e9e9e9;line-height:1;}
.svc-card h3{font-size:19px;font-weight:700;color:var(--navy);margin-bottom:16px;white-space:nowrap;}
.svc-card p{font-size:15.5px;line-height:1.7;color:#5a5a5a;font-weight:400;}

/* =====================================================================
   ABOUT US / VISION (dark)
   ===================================================================== */
.about{
  position:relative;background:#181820;color:#fff;
  aspect-ratio:3834/1140;            /* match the background image -> no top/bottom gap */
  display:flex;flex-direction:column;justify-content:center;
  overflow:hidden;
}
.about::before{ /* full background image (백그라운드5), shown as-is */
  content:"";position:absolute;inset:0;z-index:0;
  background:url('assets/about-bg.jpg') center/100% auto no-repeat;
}
.about::after{ /* left text-darkening for legibility */
  content:"";position:absolute;inset:0;z-index:0;
  background:linear-gradient(110deg,rgba(16,17,34,.55) 0%,rgba(16,17,34,.2) 40%,transparent 60%);
}
.about .about-grid{
  display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:20px;
  position:relative;z-index:1;
}
.about .eyebrow{display:block;color:#aeb6d6;margin-bottom:20px;letter-spacing:.04em;}
.about h2{
  font-size:44px;font-weight:700;line-height:1.3;letter-spacing:-.01em;margin-bottom:34px;
}
.about .about-left p{font-size:18px;line-height:1.85;color:var(--body-light);font-weight:400;}
.about-vis{position:relative;display:flex;justify-content:center;align-items:center;}

/* --- Vision diagram (pure HTML/CSS, pentagon orbit) --- */
.vision{position:relative;width:27vw;max-width:520px;aspect-ratio:1/1;}

/* orbit rings */
.vision-ring{
  position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  width:74%;height:74%;border-radius:50%;
  border:1px dashed rgba(176,190,228,.22);
}
.vision-ring--in{
  width:43%;height:43%;border-style:solid;border-color:rgba(176,190,228,.12);
}

/* central dark core */
.vision-core{
  position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  width:39%;height:39%;border-radius:50%;
  background:radial-gradient(circle at 50% 36%,#191c2a 0%,#06070c 72%);
  box-shadow:0 0 48px 8px rgba(0,0,0,.5),inset 0 0 24px rgba(120,140,210,.18);
}

/* icon nodes */
.node{
  position:absolute;width:84px;height:84px;transform:translate(-50%,-50%);
}
.node-ic{
  width:84px;height:84px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(150deg,#4b505b,#262a33);
  box-shadow:0 12px 26px rgba(0,0,0,.45),inset 0 1px 1px rgba(255,255,255,.16);
}
.node-ic svg{width:38px;height:38px;fill:#fff;}
.node-label{
  position:absolute;top:100%;left:50%;transform:translateX(-50%);
  margin-top:12px;font-size:16px;font-weight:600;color:#fff;white-space:nowrap;
}

/* pentagon positions (regular, starting at top) */
.node--care    {left:50%;   top:15%;}
.node--mobility{left:85.2%; top:39.2%;}
.node--life    {left:71.8%; top:78.3%;}
.node--lang    {left:28.2%; top:78.3%;}
.node--ai      {left:14.8%; top:39.2%;}

/* =====================================================================
   OUR NEWS
   ===================================================================== */
.news{background:var(--bg-news);padding:196px 0 210px;}
.news .news-head{text-align:center;position:relative;margin-bottom:82px;}
.news .eyebrow{display:block;margin-bottom:14px;}
.news .news-head h2{font-size:40px;font-weight:700;color:var(--ink);letter-spacing:-.01em;}
.news .view-all{
  position:absolute;right:0;bottom:6px;
  display:inline-flex;align-items:center;gap:6px;
  font-size:15px;font-weight:500;color:#333;
}
.news .view-all svg{width:14px;height:14px;stroke:#333;fill:none;stroke-width:2;}
.news-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:60px;}
.news-card .thumb{
  position:relative;border-radius:14px;overflow:hidden;
  aspect-ratio:436/300;background:#dadada;
  display:flex;align-items:center;justify-content:center;
}
.news-card .thumb.photo{background:#cfcfcf;}
.news-card .thumb .ph{width:60%;height:auto;opacity:.9;}
.news-card .thumb .photo-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 38%;}
.news-card .tags{position:absolute;top:18px;left:18px;display:flex;gap:8px;z-index:2;}
.news-card .tag{
  background:#fff;color:var(--navy);font-size:14px;font-weight:600;
  padding:6px 16px;border-radius:20px;box-shadow:0 2px 6px rgba(0,0,0,.08);
}
.news-card .date{font-size:15px;color:#4a4a4a;margin:22px 0 14px;font-weight:400;}
.news-card .ttl{font-size:21px;font-weight:600;color:var(--ink-soft);line-height:1.4;}

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer{background:var(--footer);color:#cfcfcf;padding:112px 0 68px;}
.footer-main{
  max-width:1660px;margin:0 auto;padding:0 100px;
  display:flex;align-items:center;justify-content:space-between;gap:40px;
  min-height:120px;
}
.footer-main .brand img{height:46px;}
.footer-info{text-align:right;font-size:15px;line-height:2;color:#bdbdbd;font-weight:400;}
.footer-info .company{color:#f2f2f2;font-weight:600;font-size:16px;}
.footer-copy{
  max-width:1660px;margin:44px auto 0;padding:0 100px;
  font-size:14px;color:#8a8a8a;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width:1280px){
  .hero h1{font-size:48px;}
  .hero .hero-sub{font-size:32px;}
  .service .svc-grid{grid-template-columns:1fr;gap:50px;}
  .service h2{white-space:normal;}
  .svc-cards{flex-wrap:wrap;}
  .about{aspect-ratio:auto;display:block;padding:80px 0;}
  .about .about-grid{grid-template-columns:1fr;gap:50px;}
  .about::before{background-size:cover;}
  .vision{width:100%;max-width:460px;margin:0 auto;}
  .indent{padding-left:0;}
  .intro{padding:120px 0 140px;}
  .service{padding:110px 0;}
  .news{padding:120px 0 130px;}
}
@media (max-width:880px){
  .site-header{height:72px;}
  .site-header .header-inner{padding:0 24px;}
  .brand img{height:34px;}
  .main-nav{gap:28px;}
  .main-nav a{font-size:16px;}
  .hero{display:block;min-height:auto;padding:150px 24px 96px;text-align:center;}
  .hero-inner{padding-top:0;max-width:100%;min-width:0;}
  .hero .eyebrow{font-size:13px;letter-spacing:.1em;margin-bottom:16px;}
  .hero h1{font-size:28px;word-break:keep-all;}
  .hero .hero-sub{font-size:22px;margin-bottom:22px;}
  .hero p{font-size:14px;line-height:1.7;}
  .hero p br{display:none;}
  .hero-scroll{display:none;}
  .stats-wrap{margin-top:-82px;}
  .stats-head{padding:22px 24px 18px;}
  .stats-head .since{font-size:18px;}
  .stats-body{flex-wrap:wrap;gap:24px 0;padding:26px 24px 30px;}
  .stat{padding:0 18px;width:50%;}
  .stat:first-child{padding-left:18px;}
  .stat:nth-child(odd)::before,.stat:first-child::before{display:none;}
  .aidg{padding:80px 0 0;}
  .aidg-features{flex-direction:column;align-items:flex-start;gap:28px;padding-bottom:80px;}
  .aidg .sub{margin-bottom:48px;}
  .feature:not(:first-child)::before{display:none;}
  .feature{padding:0;}
  .intro{padding:90px 0 96px;}
  .service{padding:80px 0;}
  .about{padding:70px 0;}
  .vision{max-width:340px;}
  .node{width:60px;height:60px;}
  .node-ic{width:60px;height:60px;}
  .node-ic svg{width:28px;height:28px;}
  .node-label{font-size:13px;margin-top:8px;}
  .news{padding:90px 0 96px;}
  .news .news-head{margin-bottom:48px;}
  .news .view-all{position:static;display:inline-flex;margin-top:14px;}
  .intro h2,.service h2,.aidg h2,.about h2,.news .news-head h2{font-size:28px;line-height:1.35;}
  .svc-card h3{white-space:normal;}
  .news-grid{grid-template-columns:1fr;gap:40px;}
  .footer-main{flex-direction:column;align-items:flex-start;padding:0 24px;gap:28px;}
  .footer-info{text-align:left;}
  .footer-copy{padding:0 24px;}
}

/* =====================================================================
   ABOUT PAGE (회사소개)
   ===================================================================== */
.main-nav a.active{font-weight:700;color:#fff;}

/* ---- hero + tabs ---- */
.ab-hero{
  position:relative;min-height:480px;
  display:flex;flex-direction:column;justify-content:center;align-items:center;
  padding:96px 0 66px;text-align:center;color:#fff;background:#0c0c0c;overflow:hidden;
}
.ab-hero::before{content:"";position:absolute;inset:0;z-index:0;
  background:url('assets/about-hero.jpg') center/cover no-repeat;}
.ab-hero::after{content:"";position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg,rgba(8,9,12,.5),rgba(8,9,12,.72));}
.ab-hero-title{position:relative;z-index:2;font-size:46px;font-weight:700;letter-spacing:.02em;}
.ab-tabs{position:absolute;left:0;right:0;bottom:0;z-index:3;display:flex;}
.ab-tab{
  flex:1;padding:22px 8px;border:0;cursor:pointer;font-family:inherit;
  font-size:18px;font-weight:500;color:#e8e8e8;
  background:rgba(255,255,255,.10);
  box-shadow:inset 1px 0 0 rgba(255,255,255,.12);
  transition:background .2s,color .2s;
}
.ab-tab:first-child{box-shadow:none;}
.ab-tab:hover{background:rgba(255,255,255,.18);}
.ab-tab.active{background:rgba(0,0,0,.42);color:#fff;font-weight:700;}

/* ---- panels ---- */
.ab-main{background:#fff;}
.ab-panel{display:none;padding:96px 0 124px;}
.ab-panel.active{display:block;}
.ab-panel>.container,.ab-panel>.container-narrow{width:90%;max-width:1120px;margin:0 auto;}
.ab-head.center{text-align:center;margin-bottom:56px;}
.ab-eyebrow{display:block;font-size:15px;font-weight:700;letter-spacing:.16em;color:#4b59c7;margin-bottom:14px;}
.ab-head h2{font-size:38px;font-weight:700;color:var(--ink);letter-spacing:-.01em;}
.ab-sub{max-width:920px;margin:18px auto 0;font-size:16px;line-height:1.7;color:#6e6e6e;}

/* ---- greeting ---- */
.greet-grid{display:grid;grid-template-columns:1fr 300px;gap:60px;align-items:start;}
.greet-h{font-size:22px;font-weight:700;color:var(--ink);line-height:1.5;white-space:nowrap;
  margin-bottom:26px;padding-left:18px;border-left:4px solid var(--navy);}
.greet-text p{font-size:15.5px;line-height:1.85;color:#565656;margin-bottom:18px;}
.greet-thanks{font-weight:600;color:#333;}
.greet-photo img{width:100%;aspect-ratio:3/4;height:auto;object-fit:cover;border-radius:14px;
  box-shadow:0 18px 40px rgba(0,0,0,.12);}

/* ---- history ---- */
.hist-stats{display:flex;border-top:1px solid #e4e4e4;border-bottom:1px solid #e4e4e4;margin-bottom:24px;}
.hstat{flex:1;display:flex;align-items:center;justify-content:center;gap:14px;padding:22px 0;position:relative;}
.hstat:not(:first-child)::before{content:"";position:absolute;left:0;top:26%;bottom:26%;width:1px;background:#e4e4e4;}
.hstat .l{font-size:15px;color:#777;}
.hstat .v{font-size:22px;font-weight:700;color:var(--navy);}
.timeline{margin-top:8px;}
.tl-item{display:grid;grid-template-columns:200px 1fr;gap:36px;padding:36px 0;border-top:1px solid #ededed;}
.tl-year{font-size:30px;font-weight:800;color:var(--navy);line-height:1;}
.tl-year span{font-size:15px;font-weight:600;color:#a6abbd;}
.tl-year::after{content:"";display:block;width:46px;height:2px;background:var(--navy);margin-top:14px;}
.tl-content h4{font-size:19px;font-weight:700;color:var(--ink);margin-bottom:16px;}
.tl-content ul{display:flex;flex-direction:column;gap:11px;}
.tl-content li{position:relative;padding-left:16px;font-size:15.5px;color:#5a5a5a;line-height:1.6;}
.tl-content li::before{content:"";position:absolute;left:0;top:9px;width:5px;height:5px;border-radius:50%;background:#b0b0b0;}

/* ---- vision (fluid 1:1 stage — scales proportionally like the mockup) ---- */
/* Internal coordinate system is 1120x760; all sizes use cqw (1cqw = 1% of
   stage width) so the whole triangle scales with the container at any width. */
.vision-stage{position:relative;width:1120px;max-width:100%;aspect-ratio:1120/760;
  margin:6px auto 0;container-type:inline-size;}
.vision-globe{position:absolute;left:50%;bottom:-1.3cqw;transform:translateX(-50%);
  width:117.86cqw;max-width:122%;aspect-ratio:1594/660;
  background:url('assets/world.png') center bottom/contain no-repeat;opacity:.5;z-index:0;}

.circle{position:absolute;width:17.5cqw;height:17.5cqw;border-radius:50%;padding:0.98cqw;z-index:3;
  box-shadow:0 1.4cqw 2.9cqw rgba(70,90,150,.16);}
.circle .ci{width:100%;height:100%;border-radius:50%;background:#fff;text-align:center;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  box-shadow:inset 0 0.27cqw 1.25cqw rgba(80,90,140,.07);}
.c-change{left:41.16cqw;top:8.57cqw;z-index:4;
  background:linear-gradient(155deg,#d6d9f4 0%,#9aa0dc 55%,#7d84d1 100%);}
.c-vision{left:30.27cqw;top:28.04cqw;
  background:linear-gradient(155deg,#d0e7f3 0%,#7cb7d9 55%,#4f9fc8 100%);}
.c-strategy{left:52.32cqw;top:28.04cqw;
  background:linear-gradient(155deg,#cdece0 0%,#85c9b1 55%,#5fb89e 100%);}
.circle .tag{display:block;font-size:0.98cqw;font-weight:700;letter-spacing:.05em;margin-bottom:0.54cqw;}
.c-change .tag{color:#7b82c9;} .c-vision .tag{color:#4f9fc8;} .c-strategy .tag{color:#5cab93;}
.circle .lbl{display:block;font-size:1.34cqw;font-weight:700;color:#2b3553;}
.venn-center{position:absolute;left:50cqw;top:29.4cqw;transform:translate(-50%,-50%);z-index:6;
  font-size:2.0cqw;font-weight:800;letter-spacing:.04em;color:#27305a;}

.vchecks{position:absolute;z-index:2;display:flex;flex-direction:column;gap:1.6cqw;}
.vcheck{display:flex;align-items:flex-start;gap:0.8cqw;font-size:1.25cqw;color:#454f63;line-height:1.5;}
.vcheck svg{width:1.6cqw;height:1.6cqw;fill:#8a93cf;flex:0 0 auto;margin-top:0.18cqw;}
.vchecks.tr{left:57.14cqw;top:0;width:32.14cqw;}
.vchecks.left{left:4.29cqw;top:17.5cqw;width:30.36cqw;}
.vchecks.br{left:70.71cqw;top:40.36cqw;width:29.64cqw;}

/* Narrow screens: keep it readable by stacking instead of shrinking text to nothing */
@media (max-width:760px){
  .vision-stage{width:100%;aspect-ratio:auto;height:auto;container-type:normal;
    display:flex;flex-direction:column;align-items:center;gap:26px;}
  .vision-globe,.venn-center{display:none;}
  .circle{position:static;transform:none;order:0;width:180px;height:180px;padding:11px;
    box-shadow:0 16px 32px rgba(70,90,150,.16);}
  .circle .ci{box-shadow:inset 0 3px 14px rgba(80,90,140,.07);}
  .circle .tag{font-size:11px;margin-bottom:6px;}
  .circle .lbl{font-size:15px;}
  .c-change{order:1;} .c-vision{order:2;} .c-strategy{order:3;}
  .vchecks{position:static;width:100%;max-width:520px;gap:18px;}
  .vcheck{font-size:14px;gap:9px;}
  .vcheck svg{width:18px;height:18px;margin-top:2px;}
  .vchecks.tr{order:1;} .vchecks.left{order:2;} .vchecks.br{order:3;}
}

/* ---- directions ---- */
.addr-box{text-align:center;margin-bottom:40px;}
.addr-tag{font-size:18px;font-weight:700;color:var(--navy);margin-bottom:14px;}
.addr{font-size:18px;color:#333;}
.map-box{width:100%;aspect-ratio:16/8;border-radius:12px;overflow:hidden;
  background:#e9ebee;box-shadow:0 14px 36px rgba(0,0,0,.10);}
.map-box iframe{width:100%;height:100%;border:0;display:block;}

/* ---- news / 회사소식 ---- */
.news-label{font-size:20px;font-weight:800;color:var(--ink);letter-spacing:.01em;
  padding-bottom:18px;border-bottom:2px solid #2a2a36;}
.news-table{width:100%;border-collapse:collapse;table-layout:fixed;}
.news-table th{padding:20px 12px;font-size:16px;font-weight:700;color:#2c2c34;
  border-bottom:1px solid #d7d7dd;text-align:center;}
.news-table th.col-title{text-align:center;}
.news-table .col-cat{width:200px;}
.news-table .col-date{width:190px;}
.news-table td{padding:24px 12px;border-bottom:1px solid #ededf1;vertical-align:middle;}
.news-table td.col-cat{text-align:center;}
.news-table td.col-date{text-align:center;font-size:15px;color:#9a9aa2;white-space:nowrap;}
.news-table tbody tr:last-child td{border-bottom:2px solid #2a2a36;}
.news-badge{display:inline-block;background:#202060;color:#fff;
  font-size:13px;font-weight:600;letter-spacing:.02em;padding:8px 20px;border-radius:999px;white-space:nowrap;}
.news-title-link{font-size:16px;color:var(--ink-soft);text-decoration:none;
  display:inline-block;transition:color .15s;}
.news-row{transition:background .15s;}
.news-row:hover{background:#fafafb;}
.news-row:hover .news-title-link{color:var(--navy);}

.news-pager{display:flex;justify-content:center;align-items:center;gap:16px;margin-top:48px;}
.news-pager .pg-num,.news-pager .pg-arrow{display:inline-flex;align-items:center;justify-content:center;
  width:34px;height:34px;border-radius:50%;font-size:15px;text-decoration:none;}
.news-pager .pg-num{color:#666;}
.news-pager .pg-num.active{background:#202060;color:#fff;font-weight:700;}
.news-pager .pg-arrow{font-size:22px;line-height:1;color:#9a9aa2;transition:color .15s;}
.news-pager .pg-arrow:hover{color:var(--navy);}

@media (max-width:1100px){
  .vision-grid{grid-template-columns:1fr;gap:40px;justify-items:center;}
  .vchecks.left,.vchecks.right{justify-content:flex-start;align-items:flex-start;}
  .vision-grid::before{top:50%;}
}
@media (max-width:880px){
  .ab-hero{min-height:340px;padding:80px 0 0;}
  .ab-hero-title{font-size:30px;margin-bottom:auto;}
  .ab-tab{font-size:14px;padding:15px 4px;}
  .ab-panel{padding:60px 0 80px;}
  .ab-head h2{font-size:28px;}
  .greet-grid{grid-template-columns:1fr;gap:28px;max-width:440px;}
  .greet-h{white-space:normal;font-size:20px;}
  .greet-photo{max-width:340px;}
  .greet-photo img{aspect-ratio:3/4;height:auto;}
  .hist-stats{flex-direction:column;}
  .hstat{justify-content:flex-start;padding:16px 4px;}
  .hstat:not(:first-child)::before{display:none;}
  .tl-item{grid-template-columns:1fr;gap:14px;}
  .tl-year::after{display:none;}
  .venn{width:320px;height:330px;transform:scale(.98);}
  .circle{width:180px;height:180px;}
  .c-vision .circle-txt,.c-strategy .circle-txt{width:180px;}
  .c-change .circle-txt{top:30px;}
  .c-vision .circle-txt,.c-strategy .circle-txt{bottom:32px;}
  .venn-center{font-size:22px;}

  /* news table -> compact on mobile */
  .news-label{font-size:17px;}
  .news-table .col-cat{width:96px;}
  .news-table .col-date{width:84px;}
  .news-table th{font-size:13px;padding:14px 4px;}
  .news-table td{padding:16px 4px;}
  .news-badge{font-size:10px;padding:5px 9px;}
  .news-title-link{font-size:13.5px;}
  .news-table td.col-date{font-size:11.5px;white-space:normal;}
}

/* =====================================================================
   MOBILE POLISH (phones)
   ===================================================================== */
@media (max-width:600px){
  /* Let body copy reflow naturally — drop decorative forced line breaks */
  .intro .lead p br,.aidg .sub br,.service .svc-left p br,
  .about .about-left p br,.svc-card p br,.hero p br{display:none;}

  /* Comfortable body type on small screens */
  .intro .lead p,.about .about-left p,.aidg .sub,.service .svc-left p{
    font-size:15px;line-height:1.75;}
  .svc-card p{font-size:14.5px;}

  /* Service cards fill the width, stack cleanly */
  .svc-cards{flex-direction:column;gap:18px;width:100%;}
  .svc-card{width:100%;}
  .svc-card h3{white-space:normal;}

  /* AI feature rows: icon + text comfortable */
  .feature .ic{width:54px;height:54px;}
  .feature .ic svg{width:28px;height:28px;}
  .feature .ft-title{font-size:19px;}

  /* Stats: stack to a single readable column */
  .stats-head{flex-direction:column;align-items:flex-start;gap:10px;}
  .stats-body{flex-direction:column;gap:18px;}
  .stat{width:100%;padding:0;}
  .stat:not(:first-child){padding-top:18px;border-top:1px solid #ececec;}
  .stat:not(:first-child)::before{display:none;}

  /* Section vertical rhythm */
  .intro{padding:70px 0 72px;}
  .aidg{padding:64px 0 0;}
  .service{padding:64px 0;}
  .about{padding:56px 0;}
  .news{padding:70px 0 76px;}

  /* About-page hero + tabs */
  .ab-hero{min-height:280px;}
  .ab-hero-title{font-size:26px;}
  .ab-tab{font-size:13px;padding:14px 2px;letter-spacing:-.01em;}
  .ab-panel{padding:48px 0 64px;}
  .ab-eyebrow{font-size:13px;margin-bottom:10px;}
  .ab-sub{font-size:14.5px;line-height:1.7;}

  /* News page heading */
  .news-label{font-size:16px;}
}

@media (max-width:400px){
  .hero h1{font-size:24px;}
  .hero .hero-sub{font-size:19px;}
  .intro h2,.service h2,.aidg h2,.about h2,.news .news-head h2{font-size:23px;}
  .ab-head h2{font-size:24px;}
  .ab-hero-title{font-size:23px;}
  .ab-tab{font-size:12px;}

  /* Vision pentagon (index) — keep nodes/labels inside the viewport */
  .vision{max-width:280px;}
  .node,.node-ic{width:52px;height:52px;}
  .node-ic svg{width:24px;height:24px;}
  .node-label{font-size:11.5px;margin-top:6px;}

  /* News table — tightest layout */
  .news-table .col-cat{width:82px;}
  .news-table .col-date{width:74px;}
  .news-badge{font-size:9.5px;padding:5px 7px;}
  .news-title-link{font-size:12.5px;}
}
