*{box-sizing:border-box}
:root{
  --bg:#050607;
  --text:#f7f6f1;
  --muted:rgba(255,255,255,.62);
  --muted2:rgba(255,255,255,.45);
  --accent:#e89b3f;
  --green:#63d99a;
}
html,body{
  margin:0;
  min-width:320px;
  min-height:100%;
  background:var(--bg);
  color:var(--text);
  font-family:Arial,"Noto Sans KR","PingFang SC","Microsoft YaHei",sans-serif;
}
body{
  background:
    radial-gradient(circle at 92% 6%,rgba(178,97,33,.25),transparent 24%),
    linear-gradient(120deg,#050607,#08090a 72%,#100c08);
}
a{color:inherit;text-decoration:none}
p,h1,h2{margin:0}

.page{
  min-height:100vh;
  padding:28px 38px 20px;
  display:grid;
  grid-template-rows:auto 1fr auto;
  gap:10px;
}

.hero{
  display:grid;
  grid-template-columns:270px 1fr;
  gap:30px;
  align-items:start;
}
.logo{
  display:block;
  width:250px;
  line-height:0;
}
.logo img{
  display:block;
  width:100%;
  height:auto;
}
.hero-copy{padding-top:2px}
.eyebrow{
  color:var(--accent);
  font-size:11px;
  font-weight:800;
  letter-spacing:2.8px;
  margin-bottom:8px;
}
.hero-copy h1{
  font-size:clamp(30px,2.8vw,48px);
  line-height:1.12;
  letter-spacing:-.045em;
  white-space:nowrap;
}
.hero-copy>.en{
  margin-top:5px;
  font-size:14px;
  color:rgba(255,255,255,.78);
}
.hero-copy>.zh{
  margin-top:2px;
  font-size:14px;
  color:rgba(255,255,255,.68);
}
.intro{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:6px 14px;
  font-size:14px;
}
.intro .ko{color:rgba(255,255,255,.72)}
.intro .en,.intro .zh{color:var(--muted2)}

.cards{
  align-self:end;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.card{
  position:relative;
  min-height:470px;
  border:0;
  border-radius:16px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  isolation:isolate;
  transform:translateY(0) scale(1);
  transition:transform .42s ease,filter .42s ease,box-shadow .42s ease;
}
.card--warehouse{background-image:url("./assets/warehouse.jpg")}
.card--brands{background-image:url("./assets/brands.jpg")}
.card--factory{background-image:url("./assets/factory-bright-v2.jpg")}
.card::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:rgba(0,0,0,.90);
  transition:background-color .42s ease;
}
.card::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(to top,rgba(0,0,0,.80),rgba(0,0,0,.06) 60%,rgba(0,0,0,.30));
  opacity:.82;
  transition:opacity .42s ease;
}
.cards:hover .card:not(:hover){filter:brightness(.45)}
.card:hover,.card:focus-visible{
  transform:translateY(-6px) scale(1.012);
  box-shadow:0 24px 52px rgba(0,0,0,.46);
  outline:0;
}
.card:hover::before,.card:focus-visible::before{background:rgba(0,0,0,.03)}
.card:hover::after,.card:focus-visible::after{opacity:.26}

.card__content{
  min-height:470px;
  padding:32px 30px 26px;
  display:flex;
  flex-direction:column;
}
.card__number{
  font-size:14px;
  color:rgba(255,255,255,.62);
}
.card__category{
  margin:10px 0 22px;
  color:var(--accent);
  font-size:11px;
  font-weight:800;
  letter-spacing:.6px;
}
.card__category--green{color:var(--green)}
.card h2 .ko{
  display:block;
  font-size:clamp(30px,2.3vw,42px);
  line-height:1.12;
  letter-spacing:-.045em;
}
.card h2 .en,
.card h2 .zh{
  display:block;
  margin-top:4px;
  font-size:14px;
  color:rgba(255,255,255,.70);
}
.card h2 .zh{margin-top:2px;color:rgba(255,255,255,.58)}

.card__description{
  margin-top:16px;
  max-width:95%;
}
.card__description p{
  font-size:14px;
  line-height:1.5;
  word-break:keep-all;
  text-shadow:0 2px 10px rgba(0,0,0,.85);
}
.card__description .ko{color:rgba(255,255,255,.88)}
.card__description .en,
.card__description .zh{
  margin-top:4px;
  color:rgba(255,255,255,.62);
}

.card__button{
  margin-top:auto;
  min-height:74px;
  border:1px solid rgba(255,255,255,.88);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  background:rgba(0,0,0,.24);
  backdrop-filter:blur(4px);
}
.card__button>span{
  text-align:center;
  line-height:1.15;
}
.card__button b{
  display:block;
  font-size:14px;
}
.card__button small{
  display:block;
  margin-top:4px;
  font-size:9px;
  color:rgba(255,255,255,.60);
  letter-spacing:.25px;
}
.card__button i{
  position:absolute;
  right:26px;
  font-size:25px;
  font-style:normal;
  transition:transform .32s ease;
}
.card:hover .card__button i{transform:translate(4px,-4px)}

.footer{
  display:flex;
  justify-content:space-between;
  gap:16px;
  color:rgba(255,255,255,.38);
  font-size:9px;
  letter-spacing:1px;
}

@media (min-width:1200px) and (max-height:900px){
  .page{padding:20px 30px 16px;gap:8px}
  .hero{grid-template-columns:225px 1fr;gap:24px}
  .logo{width:210px}
  .hero-copy h1{font-size:36px}
  .hero-copy>.en,.hero-copy>.zh{font-size:14px}
  .intro{font-size:11px;margin-top:8px}
  .cards{align-self:stretch}
  .card,.card__content{min-height:400px}
  .card__content{padding:26px 25px 22px}
  .card__category{margin-bottom:17px}
  .card h2 .ko{font-size:34px}
  .card__description{margin-top:12px}
  .card__button{min-height:64px}
}

@media (max-width:980px){
  .page{
    display:block;
    padding:22px 14px;
  }
  .hero{
    grid-template-columns:1fr;
    gap:10px;
  }
  .logo{width:190px}
  .hero-copy h1{
    white-space:normal;
    font-size:30px;
  }
  .cards{
    margin-top:30px;
    grid-template-columns:1fr;
  }
  .card,.card__content{min-height:430px}
  .cards:hover .card:not(:hover){filter:none}
  .footer{
    margin-top:18px;
    flex-direction:column;
  }
}
@media (max-width:520px){
  .logo{width:165px}
  .hero-copy h1{font-size:27px}
  .hero-copy>.en,.hero-copy>.zh{font-size:12px}
  .intro{display:block}
  .intro p{margin-top:4px}
  .card__content{padding:22px 20px}
}
@media (hover:none){
  .card::before{background:rgba(0,0,0,.52)}
  .card::after{opacity:.60}
}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{transition:none!important}
}


/* =========================================================
   V9 — FULLER ONE-SCREEN LAYOUT
========================================================= */
.page{
  grid-template-rows:auto minmax(0,1fr) auto;
}
.cards{
  align-self:stretch;
  padding-top:18px;
}
.card,
.card__content{
  height:100%;
}
.hero{
  margin-bottom:0;
}
@media (min-width:1200px){
  .cards{
    min-height:470px;
  }
}


/* =========================================================
   V10 — LARGER HERO / SHORTER CARDS
========================================================= */
.page{
  padding:30px 40px 18px;
  gap:12px;
}

.hero{
  grid-template-columns:320px 1fr;
  gap:34px;
  align-items:start;
}

.logo{
  width:300px;
}

.eyebrow{
  font-size:13px;
  letter-spacing:3.2px;
  margin-bottom:10px;
}

.hero-copy h1{
  font-size:clamp(36px,3.25vw,58px);
  line-height:1.10;
}

.hero-copy>.en{
  margin-top:8px;
  font-size:19px;
}

.hero-copy>.zh{
  margin-top:4px;
  font-size:14px;
}

.intro{
  margin-top:14px;
  gap:7px 16px;
  font-size:13px;
}

.cards{
  padding-top:8px;
  min-height:0;
  align-self:end;
}

.card,
.card__content{
  min-height:390px;
  height:390px;
}

.card__content{
  padding:26px 28px 22px;
}

.card__number{
  font-size:14px;
}

.card__category{
  margin:8px 0 16px;
  font-size:10px;
}

.card h2 .ko{
  font-size:clamp(28px,2vw,38px);
}

.card h2 .en,
.card h2 .zh{
  font-size:13px;
}

.card__description{
  margin-top:11px;
}

.card__description p{
  font-size:11px;
  line-height:1.45;
}

.card__button{
  min-height:58px;
}

.card__button b{
  font-size:12px;
}

.card__button small{
  font-size:8px;
}

.card__button i{
  right:22px;
  font-size:22px;
}

@media (min-width:1200px) and (max-height:900px){
  .page{
    padding:20px 32px 14px;
    gap:8px;
  }

  .hero{
    grid-template-columns:255px 1fr;
    gap:28px;
  }

  .logo{
    width:240px;
  }

  .eyebrow{
    font-size:11px;
    margin-bottom:7px;
  }

  .hero-copy h1{
    font-size:40px;
  }

  .hero-copy>.en{
    margin-top:5px;
    font-size:13px;
  }

  .hero-copy>.zh{
    font-size:14px;
  }

  .intro{
    margin-top:8px;
    font-size:12px;
  }

  .cards{
    padding-top:4px;
  }

  .card,
  .card__content{
    min-height:340px;
    height:340px;
  }

  .card__content{
    padding:22px 24px 18px;
  }

  .card__category{
    margin-bottom:12px;
  }

  .card h2 .ko{
    font-size:31px;
  }

  .card__description{
    margin-top:8px;
  }

  .card__button{
    min-height:52px;
  }
}

@media (max-width:980px){
  .hero{
    grid-template-columns:1fr;
    gap:16px;
  }

  .logo{
    width:220px;
  }

  .hero-copy h1{
    font-size:34px;
  }

  .hero-copy>.en,
  .hero-copy>.zh{
    font-size:14px;
  }

  .intro{
    font-size:12px;
  }

  .card,
  .card__content{
    min-height:410px;
    height:auto;
  }
}


/* =========================================================
   V11 — INTRO TEXT THREE LINES
   기존 디자인/크기 유지, 소개 문구 배치만 변경
========================================================= */
.intro{
  display:block !important;
}

.intro p{
  display:block;
  margin:0;
  white-space:nowrap;
}

.intro .en{
  margin-top:5px;
}

.intro .zh{
  margin-top:5px;
}

@media (max-width:980px){
  .intro p{
    white-space:normal;
  }
}


/* =========================================================
   V13 — TALLER LOWER CARDS
   상단과 다른 디자인은 유지하고 카드 높이만 확대
========================================================= */
.cards{
  align-self:stretch !important;
  padding-top:0 !important;
}

.card,
.card__content{
  min-height:500px !important;
  height:500px !important;
}

.card__content{
  padding-top:30px !important;
  padding-bottom:26px !important;
}

@media (min-width:1200px) and (max-height:900px){
  .card,
  .card__content{
    min-height:430px !important;
    height:430px !important;
  }
}

@media (max-width:980px){
  .card,
  .card__content{
    min-height:500px !important;
    height:auto !important;
  }
}


/* V11 requested adjustments */
.cards{
  margin-top:auto;
  padding-top:40px !important;
  align-self:end;
}
.card,.card__content{
  height:520px !important;
  min-height:520px !important;
}
.card__content{
  padding:34px 34px 28px !important;
}
.card__number{font-size:20px !important;}
.card__category{font-size:13px !important;margin:10px 0 20px !important;}
.card h2 .ko{font-size:54px !important;}
.card h2 .en,.card h2 .zh{font-size:24px !important;}
.card__description p{font-size:14px !important;line-height:1.6 !important;}
.card__button{
  min-height:86px !important;
}
.card__button b{font-size:22px !important;}
.card__button small{font-size:13px !important;}
.card__button i{font-size:34px !important;}


/* =========================================================
   iPad CTA alignment v1.2 — hard bottom lock
   아이패드 가로 화면에서 세 카드의 버튼 위치/높이를 완전히 동일하게 고정
========================================================= */
@media (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) {
  .cards {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-items: stretch !important;
  }

  .card {
    position: relative !important;
    height: 540px !important;
    min-height: 540px !important;
    max-height: 540px !important;
  }

  .card__content {
    position: relative !important;
    display: block !important;
    height: 100% !important;
    min-height: 540px !important;
    padding: 28px 28px 132px !important;
  }

  .card h2 {
    min-height: 0 !important;
    margin-bottom: 14px !important;
  }

  .card__description {
    min-height: 0 !important;
    margin-top: 12px !important;
    padding-bottom: 0 !important;
  }

  .card__button {
    position: absolute !important;
    left: 28px !important;
    right: 28px !important;
    bottom: 24px !important;
    width: auto !important;
    height: 84px !important;
    min-height: 84px !important;
    max-height: 84px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .card__button > span {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
    min-height: 0 !important;
  }
}

/* 아이패드 세로 화면은 기존 흐름 유지 */
@media (min-width: 768px) and (max-width: 980px) and (orientation: portrait) {
  .card {
    height: auto !important;
    min-height: 520px !important;
    max-height: none !important;
  }

  .card__content {
    position: relative !important;
    height: auto !important;
    min-height: 520px !important;
    padding-bottom: 132px !important;
  }

  .card__button {
    position: absolute !important;
    left: 24px !important;
    right: 24px !important;
    bottom: 24px !important;
    height: 84px !important;
    min-height: 84px !important;
    max-height: 84px !important;
  }
}


/* =========================================================
   V1.3 — CARD SUPPORTING TEXT SMALLER
   디자인/카드 크기/버튼 위치 유지, 보조 설명 글씨만 축소
========================================================= */
@media (min-width: 768px) and (max-width: 1366px) {
  .card h2 .en,
  .card h2 .zh {
    font-size:14px !important;
    line-height: 1.35 !important;
  }

  .card__description p,
  .card__description .ko,
  .card__description .en,
  .card__description .zh {
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  .card__description .en,
  .card__description .zh {
    margin-top: 6px !important;
  }
}

/* force smaller card descriptions */
.card p,.card .desc,.card .description,.card__description,.card__description p{
font-size:14px!important;line-height:1.45!important}
.card .subtitle,.card .en,.card .zh{font-size:16px!important;line-height:1.35!important}
