/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── DESIGN TOKENS ── */
:root {
  /* Spectrum palette */
  --rose:   #E91E8C;
  --pink:   #E91E8C;
  --pink-light: #F472B6;
  --pink-dark:  #9D0E5A;
  --violet: #6D28D9;
  --sky:    #0284C7;
  --amber:  #D97706;
  --coral:  #E11D48;
  --teal:   #0F766E;
  --green:  #059669;
  --indigo: #1E1B4B;

  /* Surface */
  --bg:       #FFFFFF;
  --bg-soft:  #F9FAFB;
  --card:     #FFFFFF;

  /* Text (light background) */
  --text:     #111118;
  --text-2:   #3F3F52;
  --text-3:   #74748A;
  --text-4:   #A0A0B4;

  /* Legacy aliases for PHP template compat */
  --dark:      var(--bg);
  --dark-2:    var(--bg-soft);
  --dark-3:    var(--card);
  --dark-4:    #F3F4F6;
  --dark-5:    #E5E7EB;
  --white:     var(--text);
  --gray-light: var(--text-2);
  --gray-mid:   var(--text-3);
  --gray:       var(--text-4);

  /* Elevation */
  --sh1: 0 1px 4px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.06);
  --sh2: 0 4px 24px rgba(0,0,0,.1),  0 1px 6px rgba(0,0,0,.06);
  --sh3: 0 8px 40px rgba(0,0,0,.14);

  /* Radius */
  --r: 14px;
  --r-sm: 8px;
}

/* ── BASE ── */
body {
  font-family: 'Noto Sans KR', 'Space Grotesk', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* ── SPECTRUM STRIP ── */
.spectrum-strip {
  position: fixed; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg,
    #E91E8C 0%, #E11D48 17%, #D97706 33%,
    #059669 50%, #0284C7 67%, #6D28D9 83%, #E91E8C 100%);
  background-size: 200% 100%;
  animation: stripFlow 6s linear infinite;
  z-index: 9999;
}
@keyframes stripFlow { to { background-position: 200% 0 } }

/* ── NAV ── */
nav {
  position: fixed; top: 4px; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 80px; height: 66px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 800; letter-spacing: 3px; color: var(--text);
}
.nav-logo b { color: var(--pink); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 13px; font-weight: 600; color: var(--text-3);
  transition: color .18s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--text); color: #fff !important;
  padding: 10px 22px; border-radius: 0;
  font-weight: 700 !important; font-size: 13px !important;
  transition: background .18s !important;
}
.nav-cta:hover { background: var(--pink) !important; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); transition: all .3s; }
.nav-drawer {
  position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
  background: #fff; border-left: 1px solid rgba(0,0,0,.06);
  box-shadow: -12px 0 48px rgba(0,0,0,.1);
  z-index: 1100; display: flex; flex-direction: column;
  padding: 80px 32px 40px; gap: 4px; transition: right .3s ease;
}
.nav-drawer.open { right: 0; }
.nav-drawer a { font-size: 16px; font-weight: 600; color: var(--text-3); padding: 13px 0; border-bottom: 1px solid rgba(0,0,0,.05); transition: color .18s; }
.nav-drawer a:hover { color: var(--pink); }
.nav-drawer .drawer-cta { margin-top: 20px; background: var(--text); color: #fff; padding: 14px 24px; border-radius: 0; text-align: center; font-weight: 700; border-bottom: none; }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.3); z-index: 1050; backdrop-filter: blur(3px); }
.nav-overlay.open { display: block; }
.drawer-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--text-3); font-size: 24px; padding: 8px; }

/* ── LAYOUT ── */
.container { max-width: 1000px; margin: 0 auto; }
section { padding: 100px 80px; }

/* ── TYPE ── */
.sec-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 4px;
  color: var(--pink); text-transform: uppercase; margin-bottom: 10px;
}
.sec-title {
  font-size: clamp(32px, 5vw, 56px); font-weight: 900;
  line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 16px;
}
.sec-desc { font-size: 15px; color: var(--text-2); max-width: 560px; line-height: 1.85; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 36px; border-radius: 0;
  font-size: 14px; font-weight: 700; letter-spacing: .2px;
  transition: all .2s; border: 2px solid transparent; white-space: nowrap;
}
.btn-primary { background: var(--text); color: #fff; }
.btn-primary:hover { background: var(--pink); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text); border-color: rgba(0,0,0,.18); }
.btn-ghost:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }
.btn-sm { padding: 9px 22px; font-size: 13px; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  padding: 0 80px;
  background: #0A0A0A;
}
#hero::before, #hero::after { display: none; }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/assets/images/service-lecture-audience.jpg');
  background-size: cover; background-position: center center;
  filter: brightness(.18) saturate(.15);
  z-index: 1;
}
.hero-bg-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    #0A0A0A 0%, rgba(10,10,10,.72) 50%, rgba(10,10,10,.05) 100%);
  z-index: 2;
}
.hero-inner {
  position: relative; z-index: 3;
  flex: 1; display: flex; flex-direction: column;
  padding-top: 130px;
}
.hero-header {
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 18px;
}
.hero-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 500; letter-spacing: 4px;
  color: rgba(255,255,255,.45); text-transform: uppercase;
}
.hero-body {
  flex: 1;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  gap: 20px; padding: 48px 0 72px;
}
#hero h1, .hero h1 {
  font-size: clamp(72px, 13vw, 150px); font-weight: 900;
  line-height: .88; letter-spacing: -5px;
  color: #FFFFFF;
  background: none; -webkit-background-clip: unset; background-clip: unset;
  -webkit-text-fill-color: #FFFFFF;
}
.hero-side {
  display: flex; flex-direction: column;
  justify-content: flex-end; gap: 32px;
}
.hero-slogan {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 20px;
}
.hero-slogan-kr {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: clamp(17px, 1.8vw, 22px); font-weight: 400;
  color: #ffffff; letter-spacing: 0.5px;
}
.hero-slogan-div {
  width: 1px; height: 18px; background: rgba(255,255,255,.3); flex-shrink: 0;
}
.hero-slogan-en {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(13px, 1.2vw, 16px); font-weight: 300;
  color: rgba(255,255,255,.5); letter-spacing: 0.5px;
}
.hero-btns { display: flex; flex-direction: row; gap: 12px; align-items: center; flex-wrap: wrap; }
#hero .btn-primary {
  background: var(--pink); color: #fff; border-color: var(--pink); font-weight: 700;
}
#hero .btn-primary:hover { background: var(--pink-dark); border-color: var(--pink-dark); transform: translateY(-2px); }
#hero .btn-ghost {
  background: transparent; color: #ffffff; border-color: rgba(255,255,255,.5);
}
#hero .btn-ghost:hover {
  background: rgba(255,255,255,.08); border-color: #ffffff; color: #ffffff; transform: translateY(-2px);
}
.hero-stats {
  position: relative; z-index: 3;
  display: flex; gap: 48px;
  padding: 22px 0 60px;
  border-top: 1px solid rgba(255,255,255,.12); flex-wrap: wrap;
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 700;
  color: #FFFFFF; line-height: 1; letter-spacing: -1.5px;
  background: none; -webkit-background-clip: unset; background-clip: unset;
  -webkit-text-fill-color: #FFFFFF;
}
.stat-label { font-size: 11px; color: rgba(255,255,255,.43); margin-top: 6px; }

/* ── REVIEWS ── */
#reviews { background: #FFFFFF; padding-bottom: 80px; overflow: hidden; }
.reviews-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px; margin-bottom: 40px; flex-wrap: wrap;
}
.reviews-count-block { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.reviews-count-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 56px; font-weight: 900;
  color: #03C75A; line-height: 1; letter-spacing: -2px;
}
.review-pips { display: flex; gap: 3px; margin-bottom: 4px; }
.review-pip {
  width: 12px; height: 12px; border-radius: 50%;
  background: #03C75A;
}
.reviews-count-label { font-size: 11px; color: var(--text-3); font-weight: 600; letter-spacing: .5px; line-height: 1.5; }
.naver-label { color: #03C75A !important; }

.marquee-wrap { overflow: hidden; margin: 0 -80px; }
.marquee-track {
  display: flex; gap: 16px; width: max-content;
  animation: marqueeScroll 36s linear infinite;
  padding: 4px 80px 8px;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }

.review-card {
  flex-shrink: 0; width: 280px;
  background: #FFFFFF; border: 1.5px solid rgba(0,0,0,.07);
  border-radius: 0; padding: 22px 22px 20px;
  box-shadow: var(--sh1); display: flex; flex-direction: column; gap: 12px;
}
.review-card:nth-child(3n+1) { border-top: 3px solid #E91E8C; }
.review-card:nth-child(3n+2) { border-top: 3px solid #6D28D9; }
.review-card:nth-child(3n)   { border-top: 3px solid #03C75A; }
.review-card-top { display: flex; align-items: center; justify-content: space-between; }
.naver-badge {
  font-family: 'Space Grotesk', sans-serif; font-size: 9px; font-weight: 900;
  letter-spacing: 2px; color: #03C75A;
  border: 1.5px solid #03C75A; border-radius: 0; padding: 2px 7px;
}
.review-text { font-size: 13px; color: var(--text-2); line-height: 1.7; flex: 1; }
.review-footer { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.review-author { font-size: 12px; font-weight: 700; color: var(--text); }
.review-date { font-size: 11px; color: var(--text-3); }
.reviews-cta { text-align: center; margin-top: 36px; }

/* ── ABOUT (dark color block) ── */
#about { background: var(--indigo); padding: 100px 80px; }
#about .sec-label { color: var(--pink-light); }
#about .sec-title { color: #FFFFFF; }
#about .sec-desc { color: rgba(255,255,255,.65); }
.about-grid { display: grid; grid-template-columns: 420px 1fr; gap: 72px; align-items: center; }
.about-img-frame { position: relative; }
.about-img-frame::after {
  content: ''; position: absolute;
  top: -14px; left: -14px; right: 14px; bottom: 14px;
  border: 2px solid rgba(233,30,140,.5); border-radius: 0;
  z-index: 0; pointer-events: none;
}
.about-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 0; background: rgba(255,255,255,.08);
  display: block; position: relative; z-index: 1;
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.about-photo-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: rgba(255,255,255,.06); border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1; font-size: 13px; color: rgba(255,255,255,.4); text-align: center;
}
.about-floatbadge {
  position: absolute; bottom: 20px; right: -20px;
  background: var(--pink); color: #fff;
  padding: 14px 18px; border-radius: 0; z-index: 2; text-align: center;
  box-shadow: 0 8px 28px rgba(233,30,140,.5); min-width: 100px;
}
.about-floatbadge-num { font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 900; display: block; line-height: 1.1; }
.about-floatbadge-text { font-size: 10px; font-weight: 700; letter-spacing: 1px; }
.about-name { font-family: 'Space Grotesk', sans-serif; font-size: 30px; font-weight: 800; color: #FFFFFF; letter-spacing: .5px; margin-bottom: 4px; }
.about-role { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.about-philosophy {
  font-size: clamp(15px, 2vw, 18px); font-weight: 700; color: var(--pink-light);
  line-height: 1.55; letter-spacing: .5px; margin-bottom: 20px;
  padding-left: 14px; border-left: 3px solid var(--pink);
}
.about-body { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.9; margin-bottom: 28px; }
.about-ceo-quote {
  margin-top: 24px; padding: 20px 22px;
  background: rgba(255,255,255,.06); border-left: 3px solid rgba(233,30,140,.6);
  font-size: 13px; color: rgba(255,255,255,.72); line-height: 1.85; font-style: italic;
  border-radius: 0;
}
.about-ceo-quote cite { display: block; margin-top: 10px; font-size: 11px; font-style: normal; font-weight: 700; color: var(--pink-light); letter-spacing: 1px; }
.about-roles { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.about-roles li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,.7); }
.about-roles li::before { content: '\25B8'; color: var(--pink-light); flex-shrink: 0; margin-top: 2px; }
.about-books { background: rgba(255,255,255,.07); border-left: 3px solid var(--pink); padding: 18px 22px; border-radius: 0; }
.book-link { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.25); transition: border-color .2s; }
.book-link:hover { border-bottom-color: var(--pink); }
.book-more { display: inline-block; font-size: 11px; color: var(--text-3); text-decoration: none; margin-left: 8px; letter-spacing: .5px; transition: color .2s; }
.book-more:hover { color: var(--pink); }

.about-books-label { font-size: 10px; font-weight: 700; letter-spacing: 3px; color: var(--pink-light); margin-bottom: 8px; }
.about-books p { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.7; }
.about-books strong { color: #FFFFFF; font-weight: 700; }

/* ── MEDIA ── */
#media { background: var(--bg-soft); }
.media-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.media-card { background: #FFFFFF; border-radius: 0; overflow: hidden; transition: transform .3s, box-shadow .3s; box-shadow: var(--sh1); }
.media-card:hover { transform: translateY(-6px); box-shadow: var(--sh3); }
.media-thumb { aspect-ratio: 16/9; background: var(--dark-4); position: relative; overflow: hidden; }
.media-thumb img { width: 100%; height: 100%; object-fit: cover; }
.media-ch-badge { position: absolute; top: 10px; left: 10px; background: #0033A0; color: #fff; font-size: 10px; font-weight: 900; padding: 3px 8px; border-radius: 0; letter-spacing: 1px; }
.media-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; background: rgba(233,30,140,.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.media-play-icon { width: 0; height: 0; border-top: 9px solid transparent; border-bottom: 9px solid transparent; border-left: 14px solid #fff; margin-left: 3px; }
.media-info { padding: 18px 20px; }
.media-ch { font-size: 10px; color: var(--pink); font-weight: 700; letter-spacing: 2px; margin-bottom: 5px; }
.media-ttl { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.media-yr { font-size: 12px; color: var(--text-3); }

/* ── EXPERTISE (vivid color block cards) ── */
#expertise { background: #FFFFFF; }
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.exp-card {
  border-radius: 0; padding: 32px 26px;
  transition: transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
  color: #fff;
}
.exp-card:hover { transform: translateY(-6px); box-shadow: var(--sh3); }
.exp-card:nth-child(1) { background: linear-gradient(145deg, #E91E8C 0%, #E11D48 100%); }
.exp-card:nth-child(2) { background: linear-gradient(145deg, #6D28D9 0%, #4F46E5 100%); }
.exp-card:nth-child(3) { background: linear-gradient(145deg, #0284C7 0%, #0369A1 100%); }
.exp-card:nth-child(4) { background: linear-gradient(145deg, #D97706 0%, #B45309 100%); }
.exp-card:nth-child(5) { background: linear-gradient(145deg, #E11D48 0%, #BE123C 100%); }
.exp-card:nth-child(6) { background: linear-gradient(145deg, #0F766E 0%, #0D9488 100%); }
.exp-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 0;
  font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 800;
  letter-spacing: 1px; margin-bottom: 18px;
  background: rgba(255,255,255,.2); color: #fff;
}
.exp-title { font-size: 17px; font-weight: 800; margin-bottom: 10px; color: #fff; }
.exp-body { font-size: 13px; color: rgba(255,255,255,.82); line-height: 1.72; }

/* ── SERVICES ── */
#services { background: var(--bg-soft); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.svc-card { background: #FFFFFF; border-radius: 0; overflow: hidden; transition: transform .3s, box-shadow .3s; box-shadow: var(--sh1); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh3); }
.svc-thumb {
  aspect-ratio: 16/9; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 20px 24px;
}
.svc-c1 { background: linear-gradient(135deg, #E91E8C 0%, #9D0E5A 100%); }
.svc-c2 { background: linear-gradient(135deg, #6D28D9 0%, #4C1D95 100%); }
.svc-c3 { background: linear-gradient(135deg, #0284C7 0%, #0C4A6E 100%); }
.svc-c4 { background: linear-gradient(135deg, #0F766E 0%, #064E3B 100%); }
.svc-thumb::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(255,255,255,.08); pointer-events: none;
}
.svc-thumb-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 72px; font-weight: 900;
  color: rgba(255,255,255,.65); line-height: 1; position: relative; z-index: 1;
}
.svc-thumb-kw {
  font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 3px; color: rgba(255,255,255,.55); position: relative; z-index: 1;
  align-self: flex-end; padding-bottom: 4px;
}
.svc-body { padding: 28px; }
.svc-title { font-size: 19px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.svc-desc { font-size: 13px; color: var(--text-2); line-height: 1.75; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.svc-tag { font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 0; background: #F3F4F6; color: var(--text-2); }

/* ── PROCESS (dark color block) ── */
#process { background: #111118; }
#process .sec-label { color: var(--pink-light); }
#process .sec-title { color: #FFFFFF; }
#process .sec-desc { color: rgba(255,255,255,.6); }
.process-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 48px; }
.process-item { display: flex; gap: 18px; background: rgba(255,255,255,.05); border-radius: 0; padding: 22px; align-items: flex-start; border: 1px solid rgba(255,255,255,.07); transition: background .2s; }
.process-item:hover { background: rgba(255,255,255,.08); }
.process-num { width: 42px; height: 42px; background: var(--pink); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 900; color: #fff; flex-shrink: 0; }
.process-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 5px; color: #FFFFFF; }
.process-text p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.7; }
.process-optional { background: rgba(233,30,140,.1); border: 1.5px dashed rgba(233,30,140,.4); border-radius: 0; padding: 22px; grid-column: 1 / -1; }
.process-optional h4 { font-size: 14px; font-weight: 700; color: var(--pink-light); margin-bottom: 6px; }
.process-optional p { font-size: 13px; color: rgba(255,255,255,.6); }
#process .btn-primary { background: var(--pink); }
#process .btn-primary:hover { background: var(--pink-dark); }

/* ── PRODUCTS ── */
#products { background: #FFFFFF; }
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.prod-card { background: #FFFFFF; border-radius: 0; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; align-items: center; box-shadow: var(--sh2); border: 1px solid rgba(0,0,0,.06); }
.prod-thumb { aspect-ratio: 1; background: #F3F4F6; overflow: hidden; }
.prod-thumb img { width: 100%; height: 100%; object-fit: cover; }
.prod-info { padding: 28px; }
.prod-label { font-size: 10px; font-weight: 800; letter-spacing: 3px; color: var(--pink); margin-bottom: 8px; }
.prod-name { font-size: 18px; font-weight: 900; margin-bottom: 10px; line-height: 1.3; color: var(--text); }
.prod-sub { font-size: 12px; color: var(--text-3); line-height: 1.7; }
.prod-features { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.prod-features li { font-size: 12px; color: var(--text-2); display: flex; align-items: flex-start; gap: 8px; }
.prod-features li::before { content: '\2014'; color: var(--pink); flex-shrink: 0; }
.prod-extra { margin-top: 20px; padding: 20px 24px; background: #F9FAFB; border-radius: 0; border: 1px solid rgba(0,0,0,.06); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.prod-extra-label { font-size: 10px; font-weight: 800; letter-spacing: 2px; color: var(--pink); margin-bottom: 6px; }
.prod-extra p { font-size: 13px; color: var(--text-2); }

/* ── SATISFACTION ── */
#satisfaction { background: var(--bg-soft); text-align: center; }
.rating-num { font-family: 'Space Grotesk', sans-serif; font-size: clamp(88px, 16vw, 160px); font-weight: 900; line-height: 1; margin: 36px 0 12px; letter-spacing: -6px; background: linear-gradient(135deg, #E91E8C 0%, #6D28D9 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.rating-sub { font-size: 18px; color: var(--text-3); margin-bottom: 48px; font-weight: 400; }
.testimonials { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 12px; scrollbar-width: none; }
.testimonials::-webkit-scrollbar { display: none; }
.t-chip { flex-shrink: 0; background: #FFFFFF; border: 1.5px solid rgba(0,0,0,.08); border-radius: 0; padding: 10px 22px; font-size: 13px; color: var(--text-2); white-space: nowrap; transition: all .2s; box-shadow: var(--sh1); }
.t-chip:hover { border-color: var(--pink); color: var(--pink); }

/* ── GLOBAL ── */
#global { background: #FFFFFF; }
.global-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; }
.global-region-title { font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--pink); margin-bottom: 20px; }
.timeline { display: flex; flex-direction: column; }
.tl-item { display: grid; grid-template-columns: 80px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,.06); align-items: flex-start; }
.tl-year { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; color: var(--pink); letter-spacing: 1px; padding-top: 2px; }
.tl-body h4 { font-size: 14px; font-weight: 700; margin-bottom: 3px; color: var(--text); }
.tl-body p { font-size: 13px; color: var(--text-2); }
.tl-tag { display: inline-block; background: rgba(109,40,217,.08); color: var(--violet); font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 0; letter-spacing: 1px; margin-bottom: 4px; }
.global-highlight { background: linear-gradient(135deg, #E91E8C 0%, #6D28D9 100%); border-radius: 0; padding: 32px 36px; margin-top: 48px; margin-bottom: 0; color: #fff; }
.global-highlight-label { font-size: 10px; font-weight: 800; letter-spacing: 3px; color: rgba(255,255,255,.65); margin-bottom: 10px; }
.global-highlight h3 { font-size: 22px; font-weight: 900; margin-bottom: 10px; color: #FFFFFF; }
.global-highlight p { font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.8; }
.dubai-photos {
  display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 210px 210px;
  gap: 3px; margin-bottom: 40px; overflow: hidden;
}
.dubai-photos img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.dubai-photos img:hover { transform: scale(1.04); }
@media (max-width: 700px) {
  .dubai-photos { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px 160px; }
}

/* ── CLIENTS ── */
#clients { background: var(--bg-soft); }
.clients-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 48px; border: 1px solid rgba(0,0,0,.06); border-radius: 0; overflow: hidden; }
.client-item { display: flex; align-items: center; justify-content: center; padding: 22px 16px; font-size: 12px; font-weight: 600; color: var(--text-3); text-align: center; background: #FFFFFF; border: 1px solid rgba(0,0,0,.04); transition: all .2s; min-height: 72px; line-height: 1.4; }
.client-item:hover { background: var(--pink); color: #fff; }

/* ── AWARDS ── */
#awards { background: #FFFFFF; }
.awards-history-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.award-list { margin-top: 0; }
.award-row { display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,.06); align-items: center; }
.award-year { font-family: 'Space Grotesk', sans-serif; font-size: 13px; color: var(--pink); font-weight: 700; }
.award-name { font-size: 14px; color: var(--text-2); }
.award-name strong { color: var(--text); font-weight: 700; }

/* ── CONTACT CTA ── */
#contact {
  background: #0E0E12;
  padding-top: 120px; padding-bottom: 100px;
}
.contact-big {
  font-size: clamp(52px, 9vw, 120px); font-weight: 900;
  line-height: .95; letter-spacing: -4px; color: #FFFFFF;
  margin-bottom: 64px;
}
.contact-bottom {
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
}
.contact-cta-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--pink); color: #fff;
  font-size: 16px; font-weight: 700; padding: 18px 36px;
  text-decoration: none; flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.contact-cta-btn:hover { background: var(--pink-dark); transform: translateY(-2px); }
.contact-links { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.contact-link { font-size: 13px; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.contact-link:hover { color: rgba(255,255,255,.9); }

/* ── FOOTER ── */
footer { background: #111118; padding: 36px 80px; }
.footer-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.footer-logo { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 800; letter-spacing: 3px; color: rgba(255,255,255,.8); }
.footer-logo b { color: var(--pink); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.3); text-align: center; }
.footer-links { position: static !important; height: auto !important; background: transparent !important; box-shadow: none !important; border: none !important; backdrop-filter: none !important; display: flex; gap: 6px; justify-content: flex-end; align-items: center; flex-wrap: wrap; padding: 0 !important; }
.footer-icon { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.12); transition: color .2s, border-color .2s, background .2s; }
.footer-icon:hover { color: #FFFFFF; border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.08); }
.footer-icon--cta { color: var(--pink); border-color: rgba(233,30,140,.35); }
.footer-icon--cta:hover { color: #FFFFFF; background: var(--pink); border-color: var(--pink); }
.biz-info { max-width: 1200px; margin: 20px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-wrap: wrap; gap: 4px 20px; }
.biz-info span { font-size: 11px; color: rgba(255,255,255,.25); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) { .about-grid { grid-template-columns: 320px 1fr; gap: 48px; } }
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  section { padding: 72px 24px; }
  #hero { padding: 0 24px; }
  .hero-inner { padding-top: 100px; }
  .hero-body { grid-template-columns: 1fr; gap: 32px; padding: 36px 0 48px; }
  .hero-btns { flex-direction: row; flex-wrap: wrap; }
  .hero-slogan { font-size: 18px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-floatbadge { right: 0; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .prod-card { grid-template-columns: 1fr; }
  .global-cols { grid-template-columns: 1fr; gap: 32px; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .awards-history-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
  .marquee-wrap { margin: 0 -24px; }
  .reviews-head { flex-direction: column; }
}
@media (max-width: 600px) {
  .expertise-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 28px; }
  .review-card { width: 260px; }
}

/* ── MEDIA PHOTO STRIP ── */
.media-photo-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; overflow: hidden;
}
.media-photo-strip img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  transition: transform .45s ease;
}
.media-photo-strip img:hover { transform: scale(1.06); }
@media (max-width: 700px) {
  .media-photo-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ── UTIL ── */
.mt-48 { margin-top: 48px; }
.mt-24 { margin-top: 24px; }
.text-pink { color: var(--pink); }

/* ── BOOKS ── */
.books-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.book-card {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 32px; background: var(--bg-soft);
  border: 1px solid rgba(0,0,0,.06);
}
.book-cover-wrap {
  flex-shrink: 0; width: 120px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.book-cover { width: 100%; display: block; }
.book-info { display: flex; flex-direction: column; gap: 10px; }
.book-badge {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 2px;
  color: var(--pink); border: 1px solid rgba(233,30,140,.3);
  padding: 3px 10px; width: fit-content;
}
.book-title { font-size: 18px; font-weight: 800; line-height: 1.4; color: var(--text); }
.book-desc { font-size: 13px; color: var(--text-2); line-height: 1.8; font-weight: 300; }
.book-meta { font-size: 11px; font-weight: 600; color: var(--text-3); letter-spacing: .5px; margin-top: 4px; }
.book-buy-btn {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  color: var(--text); border: 1px solid rgba(0,0,0,.2);
  padding: 8px 16px; transition: all .2s; width: fit-content;
}
.book-buy-btn:hover { background: var(--text); color: #fff; border-color: var(--text); }
.about-books-mini { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(0,0,0,.07); }
.about-books-mini p { font-size: 13px; color: var(--text-3); margin-top: 6px; }
@media (max-width: 700px) {
  .books-grid { grid-template-columns: 1fr; }
  .book-card { flex-direction: column; }
  .book-cover-wrap { width: 100px; }
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 160px 80px 80px;
  background: #FFFFFF; border-bottom: 1px solid rgba(0,0,0,.06);
}
.page-hero .sec-label { color: var(--pink); }
.page-hero h1 { font-size: clamp(40px, 7vw, 80px); font-weight: 900; letter-spacing: -2.5px; line-height: 1.05; margin-bottom: 16px; color: var(--text); }
.page-hero-desc { font-size: 16px; color: var(--text-2); max-width: 520px; line-height: 1.85; }

/* ── FORMS ── */
.dl-form { background: #FFFFFF; border-radius: 0; padding: 28px; border: 1px solid rgba(0,0,0,.07); box-shadow: var(--sh1); }
.dl-form h4 { font-size: 15px; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-input { width: 100%; background: #F9FAFB; border: 1.5px solid rgba(0,0,0,.1); border-radius: var(--r-sm); padding: 11px 14px; font-size: 14px; color: var(--text); font-family: 'Noto Sans KR', sans-serif; transition: border-color .2s; }
.form-input:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(233,30,140,.08); }
.form-input::placeholder { color: var(--text-4); }
.form-select { width: 100%; background: #F9FAFB; border: 1.5px solid rgba(0,0,0,.1); border-radius: var(--r-sm); padding: 11px 14px; font-size: 14px; color: var(--text); font-family: 'Noto Sans KR', sans-serif; margin-bottom: 12px; }
.form-select:focus { outline: none; border-color: var(--pink); }
.form-textarea { width: 100%; background: #F9FAFB; border: 1.5px solid rgba(0,0,0,.1); border-radius: var(--r-sm); padding: 11px 14px; font-size: 14px; color: var(--text); font-family: 'Noto Sans KR', sans-serif; resize: vertical; min-height: 120px; margin-bottom: 16px; transition: border-color .2s; }
.form-textarea:focus { outline: none; border-color: var(--pink); }
.form-msg { padding: 12px 16px; border-radius: var(--r-sm); font-size: 14px; margin-bottom: 16px; }
.form-msg.ok { background: rgba(5,150,105,.08); border: 1px solid var(--green); color: var(--green); }
.form-msg.err { background: rgba(225,29,72,.08); border: 1px solid var(--coral); color: var(--coral); }

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 24px 60px; }
}

/* ── FAQ ACCORDION ── */
.faq-section { background: var(--bg-soft); }
.faq-list { max-width: 800px; margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--dark-5); }
.faq-item:first-child { border-top: 1px solid var(--dark-5); }
.faq-q {
  width: 100%; display: flex; align-items: center; gap: 16px;
  padding: 22px 0; background: none; border: none; cursor: pointer;
  text-align: left; transition: background .15s;
}
.faq-q-num {
  flex-shrink: 0; font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 800; letter-spacing: 1px;
  color: var(--pink); background: rgba(233,30,140,.08);
  padding: 4px 10px; border-radius: 40px; min-width: 36px; text-align: center;
}
.faq-q-text {
  flex: 1; font-size: 16px; font-weight: 700; color: var(--text); line-height: 1.4;
}
.faq-chevron {
  flex-shrink: 0; width: 32px; height: 32px;
  border: 1.5px solid var(--dark-5); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); transition: transform .3s, border-color .3s, color .3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); border-color: var(--pink); color: var(--pink); }
.faq-item.open .faq-q-num { background: var(--pink); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .38s cubic-bezier(.4,0,.2,1); }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a-inner {
  font-size: 15px; color: var(--text-2); line-height: 1.85;
  padding: 0 0 24px 52px;
}

/* ── ANIMATIONS ── */

/* Scroll-reveal base */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* Hero entrance */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow  { animation: heroFadeUp 1s cubic-bezier(.16,1,.3,1) .05s both; }
#hero h1, .hero h1 { animation: heroFadeUp 1.1s cubic-bezier(.16,1,.3,1) .18s both; }
.hero-slogan   { animation: heroFadeUp 1s cubic-bezier(.16,1,.3,1) .32s both; }
.hero-btns     { animation: heroFadeUp 1s cubic-bezier(.16,1,.3,1) .46s both; }
.hero-stats    { animation: heroFadeUp 1s cubic-bezier(.16,1,.3,1) .62s both; }

/* Expertise card hover glow */
.exp-card:nth-child(1):hover { box-shadow: 0 16px 48px rgba(233,30,140,.4); }
.exp-card:nth-child(2):hover { box-shadow: 0 16px 48px rgba(109,40,217,.4); }
.exp-card:nth-child(3):hover { box-shadow: 0 16px 48px rgba(2,132,199,.4); }
.exp-card:nth-child(4):hover { box-shadow: 0 16px 48px rgba(217,119,6,.4); }
.exp-card:nth-child(5):hover { box-shadow: 0 16px 48px rgba(225,29,72,.4); }
.exp-card:nth-child(6):hover { box-shadow: 0 16px 48px rgba(15,118,110,.4); }

/* Global highlight — subtle shimmer */
@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.global-highlight {
  background: linear-gradient(135deg, #E91E8C, #6D28D9, #0284C7, #6D28D9, #E91E8C);
  background-size: 300% 100%;
  animation: shimmer 6s linear infinite;
}


/* Process number pulse on hover */
.process-item:hover .process-num {
  animation: numPulse .4s ease;
}
@keyframes numPulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.15); }
}

/* Client item hover — pop scale */
.client-item { transition: all .2s cubic-bezier(.34,1.56,.64,1); }
.client-item:hover { transform: scale(1.04); }

/* Button — press effect */
.btn:active { transform: scale(.97) translateY(0) !important; }

/* Marquee review card on hover — slight scale */
.review-card { transition: transform .25s, box-shadow .25s; }
.review-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 8px 32px rgba(0,0,0,.12); }

/* ── CONSULTATION PAGE ── */
.consult-hero {
  min-height: 100vh;
  background: #0E0E12;
  display: flex; align-items: center;
  padding: 120px 48px 80px;
  position: relative; overflow: hidden;
}
.consult-hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(233,30,140,.12) 0%, transparent 70%);
  pointer-events: none;
}
.consult-hero-inner { max-width: 1100px; }

.consult-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 4px;
  color: rgba(255,255,255,.35); margin-bottom: 56px;
}
.consult-eyebrow-line {
  flex: 0 0 48px; height: 1px; background: rgba(255,255,255,.18);
}

.consult-big {
  font-size: clamp(56px, 10vw, 128px); font-weight: 900;
  line-height: .95; letter-spacing: -4px; color: #FFFFFF;
  margin-bottom: 64px;
}

.consult-actions {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap; margin-bottom: 72px;
}
.consult-naver-btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: #03C75A; color: #fff;
  font-size: 16px; font-weight: 700;
  padding: 18px 36px; text-decoration: none;
  transition: background .2s, transform .2s;
}
.consult-naver-btn:hover { background: #02a84b; transform: translateY(-2px); }
.naver-n {
  width: 26px; height: 26px; background: rgba(0,0,0,.2);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 900;
}
.consult-phone-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3.5vw, 38px); font-weight: 900;
  color: rgba(255,255,255,.9); text-decoration: none; letter-spacing: -1px;
  border-bottom: 2px solid rgba(255,255,255,.2);
  padding-bottom: 2px; transition: color .2s, border-color .2s;
}
.consult-phone-btn:hover { color: var(--pink); border-color: var(--pink); }

.consult-meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.35);
}
.consult-meta a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.consult-meta a:hover { color: rgba(255,255,255,.85); }
.consult-meta-sep { color: rgba(255,255,255,.15); }

@media (max-width: 768px) {
  .consult-hero { padding: 100px 24px 64px; }
  .consult-big { letter-spacing: -2px; margin-bottom: 40px; }
  .consult-actions { gap: 16px; margin-bottom: 48px; }
  .consult-naver-btn { padding: 15px 28px; font-size: 15px; }
  .consult-meta { gap: 8px; }
}

/* ── BIZ INFO (footer) ── */
.biz-info {
  max-width: 1000px; margin: 16px auto 0;
  display: flex; flex-wrap: wrap; gap: 8px 20px;
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08);
}
.biz-info span { font-size: 11px; color: rgba(255,255,255,.25); }
