/* ==========================================================================
   E-Land Innople — Design System v1 (2026.09)
   Reference: LG CNS — dark hero / big type / card grid
   ========================================================================== */

:root {
  /* CI */
  --navy: #00217E;
  --blue: #1859FF;
  --blue-light: #5C8CFF;
  --cyan: #38D6F5;

  /* Neutral */
  --ink: #0B1220;
  --ink-2: #111827;
  --ink-3: #1F2A44;
  --gray-700: #374151;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --paper: #F5F7FB;
  --white: #FFFFFF;

  /* Type scale */
  --fs-hero: clamp(40px, 5.2vw, 72px);
  --fs-h1: clamp(34px, 4vw, 56px);
  --fs-h2: clamp(28px, 3.2vw, 44px);
  --fs-h3: clamp(20px, 1.6vw, 24px);
  --fs-lead: clamp(17px, 1.3vw, 20px);
  --fs-body: 17px;
  --fs-small: 14px;
  --fs-label: 12px;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --section: clamp(88px, 10vw, 160px);
  --radius: 16px;
  --radius-sm: 10px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Segoe UI", Roboto, "Noto Sans KR", sans-serif;
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink-2);
  background: var(--white);
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { margin: 0; line-height: 1.2; letter-spacing: -0.02em; font-weight: 700; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

.container { width: min(var(--container), 100% - var(--gutter) * 2); margin-inline: auto; }
.section { padding-block: var(--section); }
.section--tight { padding-block: calc(var(--section) * .6); }
.bg-paper { background: var(--paper); }
.bg-dark { background: var(--ink); color: var(--white); }
.hero + .bg-dark { background: linear-gradient(180deg, #0F1830 0%, var(--ink) 100%); border-top: 1px solid rgba(255,255,255,.06); }

/* Labels & headings ------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: var(--fs-label); font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.bg-dark .eyebrow { color: var(--cyan); }
.section-head { max-width: 780px; margin-bottom: clamp(40px, 5vw, 72px); }
.section-head h2 { font-size: var(--fs-h2); margin-top: 18px; }
.section-head .lead { font-size: var(--fs-lead); color: var(--gray-500); margin-top: 20px; line-height: 1.65; }
.bg-dark .section-head .lead { color: rgba(255,255,255,.7); }
.section-head--split { display: flex; justify-content: space-between; align-items: flex-end; max-width: none; gap: 40px; }
.section-head--split > div { max-width: 780px; }

/* Buttons ----------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px; font-weight: 700; font-size: 16px;
  border: 1.5px solid transparent; transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--blue); color: var(--white); }
.btn--primary:hover { background: #0F47E0; }
.btn--ghost { border-color: rgba(255,255,255,.35); color: var(--white); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--ink-3); }
.btn--outline { border-color: var(--gray-300); color: var(--ink-2); }
.btn--outline:hover { border-color: var(--ink); }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--blue); }
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* Header ------------------------------------------------------------------ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s, box-shadow .3s, color .3s, backdrop-filter .3s;
  color: var(--white);
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.header__logo img { height: 28px; width: auto; }
.header__logo .logo-blue { display: none; }
.header.is-solid, .header.is-light { background: rgba(255,255,255,.92); backdrop-filter: blur(12px); color: var(--ink-2); box-shadow: 0 1px 0 rgba(0,0,0,.06); }
.header.is-solid .logo-white, .header.is-light .logo-white { display: none; }
.header.is-solid .logo-blue, .header.is-light .logo-blue { display: block; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link { display: block; padding: 10px 18px; font-weight: 600; font-size: 16px; opacity: .92; border-radius: 8px; transition: opacity .2s, background .2s; }
.nav__link:hover { opacity: 1; background: rgba(127,127,127,.12); }
.nav__link--cta { margin-left: 8px; padding: 11px 22px; border-radius: 999px; background: var(--blue); color: var(--white); opacity: 1; }
.nav__link--cta:hover { background: #0F47E0; }
.nav__panel {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, 8px);
  min-width: 240px; padding: 14px; border-radius: 14px; background: var(--white); color: var(--ink-2);
  box-shadow: 0 20px 60px rgba(11,18,32,.18), 0 0 0 1px rgba(0,0,0,.04);
  opacity: 0; visibility: hidden; transition: opacity .2s, transform .25s var(--ease), visibility .2s;
}
.nav__panel--wide { min-width: 640px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 20px; }
.nav__item:hover .nav__panel, .nav__item:focus-within .nav__panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav__panel a { display: block; padding: 10px 12px; border-radius: 8px; font-size: 15px; font-weight: 500; color: var(--gray-700); transition: background .15s, color .15s; }
.nav__panel a:hover { background: var(--paper); color: var(--blue); }
.nav__panel a.is-hl { font-weight: 700; color: var(--blue); }
.nav__panel a.is-hl small { display: block; font-weight: 500; font-size: 12px; color: var(--gray-500); margin-top: 2px; }
.nav__panel .nav__group { grid-column: 1 / -1; padding: 8px 12px 2px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gray-400); font-weight: 700; border-top: 1px solid var(--gray-100); margin-top: 6px; }
.nav__panel a.ext::after { content: " ↗"; font-size: 12px; color: var(--gray-400); }
.burger { display: none; width: 44px; height: 44px; border: 0; background: none; color: inherit; }
.burger span { display: block; width: 22px; height: 2px; background: currentColor; margin: 5px auto; transition: transform .3s, opacity .3s; }

/* Mobile nav */
.mnav { position: fixed; inset: 0; z-index: 99; background: var(--ink); color: var(--white); padding: calc(var(--header-h) + 24px) var(--gutter) 40px; overflow: auto; transform: translateY(-8px); opacity: 0; visibility: hidden; transition: .3s var(--ease); }
.mnav.is-open { opacity: 1; visibility: visible; transform: none; }
.mnav h4 { font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--cyan); margin: 28px 0 12px; }
.mnav a { display: block; padding: 10px 0; font-size: 18px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.08); }

/* Hero (main) ------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  background: var(--ink); color: var(--white); overflow: hidden; isolation: isolate;
  padding-top: var(--header-h);
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg svg { width: 100%; height: 100%; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; mix-blend-mode: screen; animation: drift 18s ease-in-out infinite alternate; }
.hero__glow--1 { width: 60vw; height: 60vw; right: -15vw; top: -10vw; background: radial-gradient(circle, #1859FF 0%, transparent 60%); }
.hero__glow--2 { width: 40vw; height: 40vw; left: -10vw; bottom: -10vw; background: radial-gradient(circle, #00217E 0%, transparent 60%); animation-delay: -6s; }
.hero__glow--3 { width: 28vw; height: 28vw; right: 20vw; bottom: 5vw; background: radial-gradient(circle, #38D6F5 0%, transparent 65%); opacity: .25; animation-delay: -12s; }
@keyframes drift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-6%, 5%, 0) scale(1.12); } }
.hero__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 72px 72px; mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, #000 30%, transparent 75%); }
.hero .container { position: relative; }
.hero__content { padding-block: 80px 120px; max-width: 900px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(6px); }
.badge i { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.hero h1 { font-size: var(--fs-hero); line-height: 1.12; letter-spacing: -0.03em; }
.hero h1 em { font-style: normal; background: linear-gradient(90deg, #7FA7FF, #38D6F5); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { margin-top: 28px; font-size: var(--fs-lead); color: rgba(255,255,255,.72); max-width: 640px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 44px; }
.hero__scroll { position: absolute; left: 50%; bottom: 36px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 11px; letter-spacing: .2em; color: rgba(255,255,255,.5); }
.hero__scroll span { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent); animation: scrollpulse 2s infinite; }
@keyframes scrollpulse { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
/* animated network */
.net line { stroke: rgba(255,255,255,.14); stroke-width: 1; }
.net circle { fill: #8FB3FF; }
.net .pulse { fill: none; stroke: var(--cyan); stroke-width: 1.2; opacity: 0; animation: pulse 4s ease-out infinite; }
@keyframes pulse { 0% { r: 3; opacity: .9; } 100% { r: 60; opacity: 0; } }
.net .beam { stroke: url(#beam); stroke-width: 2; stroke-dasharray: 60 900; animation: beam 6s linear infinite; }
@keyframes beam { to { stroke-dashoffset: -960; } }

/* Sub hero (inner pages) -------------------------------------------------- */
.subhero { position: relative; background: var(--ink); color: var(--white); padding: calc(var(--header-h) + 96px) 0 96px; overflow: hidden; isolation: isolate; }
.subhero .hero__bg { opacity: .9; }
.subhero__crumb { display: flex; gap: 10px; font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 28px; }
.subhero__crumb a:hover { color: var(--white); }
.subhero h1 { font-size: var(--fs-h1); letter-spacing: -0.03em; }
.subhero .lead { margin-top: 22px; font-size: var(--fs-lead); color: rgba(255,255,255,.72); max-width: 720px; }
.subhero--compact { padding-bottom: 72px; }

/* Cards ------------------------------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid--1 { grid-template-columns: 1fr; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  position: relative; display: flex; flex-direction: column; padding: 36px 32px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--gray-200);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(11,18,32,.10); border-color: transparent; }
.card__icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: var(--paper); color: var(--blue); margin-bottom: 28px; }
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: var(--fs-h3); }
.card p { margin-top: 12px; color: var(--gray-500); font-size: 15.5px; line-height: 1.65; flex: 1; }
.card .link-arrow { margin-top: 24px; font-size: 15px; }
.card--dark { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); color: var(--white); }
.card--dark:hover { background: rgba(255,255,255,.07); box-shadow: none; border-color: rgba(255,255,255,.25); }
.card--dark .card__icon { background: rgba(24,89,255,.18); color: #8FB3FF; }
.card--dark p { color: rgba(255,255,255,.68); }
.card--dark .link-arrow { color: var(--cyan); }
.card--feature { padding: 44px 40px; }
.card__num { font-size: 13px; font-weight: 700; letter-spacing: .12em; color: var(--gray-400); margin-bottom: 16px; }
.card--dark .card__num { color: rgba(255,255,255,.4); }
.card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.card__tags span { font-size: 12.5px; padding: 6px 10px; border-radius: 6px; background: var(--paper); color: var(--gray-700); font-weight: 600; }
.card--dark .card__tags span { background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); }

/* Service tile grid (8) */
.tile { position: relative; display: block; padding: 32px 28px; min-height: 240px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--gray-200); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.tile::after { content: ""; position: absolute; inset: auto -40% -60% auto; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(24,89,255,.18), transparent 65%); opacity: 0; transition: opacity .4s; }
.tile:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(11,18,32,.10); }
.tile:hover::after { opacity: 1; }
.tile__en { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gray-400); font-weight: 700; }
.tile h3 { font-size: 22px; margin-top: 10px; }
.tile p { margin-top: 12px; font-size: 14.5px; color: var(--gray-500); line-height: 1.6; }
.tile__arrow { position: absolute; right: 24px; bottom: 24px; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--gray-200); color: var(--ink-2); transition: background .3s, color .3s, border-color .3s; }
.tile__arrow svg { width: 16px; height: 16px; }
.tile:hover .tile__arrow { background: var(--blue); border-color: var(--blue); color: var(--white); }
.tile--hl { background: linear-gradient(135deg, var(--navy), var(--blue)); color: var(--white); border: 0; grid-column: span 2; }
.tile--hl .tile__en, .tile--hl p { color: rgba(255,255,255,.72); }
.tile--hl .tile__arrow { border-color: rgba(255,255,255,.4); color: var(--white); }
.tile--hl:hover .tile__arrow { background: var(--white); color: var(--blue); }
.tile--hl h3 { font-size: 28px; }

/* Industry strip */
.industry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.industry__item { position: relative; padding: 40px 36px; min-height: 360px; border-radius: var(--radius); color: var(--white); display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; isolation: isolate; transition: transform .35s var(--ease); }
.industry__item:hover { transform: translateY(-6px); }
.industry__item::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--bg); transition: transform .8s var(--ease); }
.industry__item:hover::before { transform: scale(1.05); }
.industry__item .tile__en { color: rgba(255,255,255,.65); }
.industry__item h3 { font-size: 26px; margin-top: 8px; }
.industry__item p { margin-top: 12px; color: rgba(255,255,255,.78); font-size: 15px; }
.industry__item ul { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.industry__item li { font-size: 12.5px; padding: 6px 10px; border-radius: 6px; background: rgba(255,255,255,.14); backdrop-filter: blur(4px); }
.ind-fashion { --bg: linear-gradient(160deg, #1B1F3B 0%, #2C3A8C 55%, #1859FF 120%); }
.ind-retail  { --bg: linear-gradient(160deg, #0B1220 0%, #00217E 60%, #0E63C9 120%); }
.ind-food    { --bg: linear-gradient(160deg, #0F172A 0%, #114B8A 55%, #38D6F5 130%); }

/* Numbers */
.numbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,.14); }
.numbers__item { padding: 44px 32px 44px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.numbers__item + .numbers__item { border-left: 1px solid rgba(255,255,255,.14); padding-left: 32px; }
.numbers__val { font-size: clamp(40px, 4.4vw, 64px); font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.numbers__val--text { font-size: clamp(28px, 2.6vw, 40px); line-height: 1.15; padding-top: .3em; }
.numbers__val small { font-size: .45em; margin-left: 4px; font-weight: 600; color: var(--cyan); }
.numbers__label { margin-top: 14px; font-size: 15px; color: rgba(255,255,255,.65); }

/* Logos */
.logos { --gap: 16px; display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--gap); }
.logos__item { aspect-ratio: 25 / 12; border-radius: 12px; background: var(--white); border: 1px solid var(--gray-200); display: grid; place-items: center; padding: 14px 22px; filter: grayscale(1); opacity: .75; transition: .3s; }
.logos__item:hover { filter: none; opacity: 1; border-color: var(--gray-300); }
.logos__item img { max-height: 100%; width: auto; object-fit: contain; }
.logos__item--badge { filter: none; opacity: 1; border-color: rgba(24,89,255,.35); }

/* News */
.news-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.news-item { display: flex; flex-direction: column; padding: 28px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--gray-200); min-height: 220px; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.news-item:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(11,18,32,.08); }
.news-item__meta { display: flex; justify-content: space-between; font-size: 13px; color: var(--gray-400); }
.news-item__meta b { color: var(--blue); font-weight: 700; }
.news-item h3 { font-size: 18px; margin-top: 16px; line-height: 1.45; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-item .link-arrow { margin-top: 20px; font-size: 14px; }

/* CTA band */
.cta { position: relative; overflow: hidden; isolation: isolate; background: linear-gradient(120deg, var(--navy) 0%, var(--blue) 70%, #2B8CFF 100%); color: var(--white); padding: clamp(72px, 8vw, 120px) 0; }
.cta::after { content: ""; position: absolute; right: -10%; top: -40%; width: 60%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.18), transparent 60%); z-index: -1; }
.cta .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta h2 { font-size: var(--fs-h2); }
.cta p { margin-top: 14px; color: rgba(255,255,255,.78); font-size: var(--fs-lead); }
.cta .btn--primary { background: var(--white); color: var(--navy); }
.cta .btn--primary:hover { background: #EAF0FF; }

/* Content blocks (inner pages) ------------------------------------------- */
.block { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(32px, 6vw, 96px); align-items: start; padding-block: clamp(48px, 6vw, 88px); border-top: 1px solid var(--gray-200); }
.block:first-of-type { border-top: 0; }
.block__num { font-size: 13px; font-weight: 700; letter-spacing: .14em; color: var(--blue); }
.block h3 { font-size: clamp(24px, 2.4vw, 34px); margin-top: 12px; }
.block h3 small { display: block; font-size: 14px; font-weight: 600; color: var(--gray-400); letter-spacing: .08em; margin-top: 8px; }
.block__lead { font-size: var(--fs-lead); color: var(--gray-700); line-height: 1.7; }
.block__body { margin-top: 20px; color: var(--gray-500); }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin-top: 28px; }
.checklist li { position: relative; padding-left: 30px; font-size: 15.5px; color: var(--gray-700); line-height: 1.55; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: var(--blue); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='11' fill='%23000' stroke='none'/%3E%3Cpath d='M7 12.5l3 3 7-7' stroke='%23fff'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11'/%3E%3C/svg%3E") center/contain no-repeat; }
.checklist li::after { content: ""; position: absolute; left: 4px; top: 8px; width: 10px; height: 6px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg); }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.stat { padding: 22px 24px; border-radius: 12px; background: var(--paper); }
.stat b { display: block; font-size: 28px; letter-spacing: -0.03em; color: var(--navy); }
.stat span { display: block; font-size: 13.5px; color: var(--gray-500); margin-top: 4px; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; counter-reset: step; }
.step { position: relative; padding: 28px 24px; border-radius: 14px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); }
.step::before { counter-increment: step; content: "0" counter(step); font-size: 13px; font-weight: 700; letter-spacing: .12em; color: var(--cyan); }
.step h4 { font-size: 18px; margin-top: 12px; }
.step p { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,.62); line-height: 1.6; }

/* Values (about) */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value { padding: 36px 30px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--gray-200); }
.value__ko { font-size: 22px; font-weight: 700; }
.value__en { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); font-weight: 700; margin-top: 6px; }
.value p { margin-top: 18px; font-size: 15px; color: var(--gray-500); line-height: 1.65; }
.vision { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.vision__box { padding: clamp(36px, 4vw, 56px); border-radius: var(--radius); }
.vision__box--v { background: linear-gradient(135deg, var(--navy), var(--blue)); color: var(--white); }
.vision__box--m { background: var(--paper); }
.vision__box .eyebrow { color: inherit; opacity: .8; }
.vision__box h3 { font-size: clamp(26px, 2.6vw, 36px); margin-top: 20px; line-height: 1.3; }
.vision__box p { margin-top: 16px; font-size: 16px; opacity: .8; }
.philosophy { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.philosophy__item { padding: 36px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--gray-200); display: grid; grid-template-columns: 72px 1fr; gap: 20px; }
.philosophy__item b { font-size: 30px; color: var(--navy); letter-spacing: -0.03em; }
.philosophy__item h4 { font-size: 18px; }
.philosophy__item p { margin-top: 10px; font-size: 15px; color: var(--gray-500); line-height: 1.65; }

/* Footer ------------------------------------------------------------------ */
.footer { background: #070B14; color: rgba(255,255,255,.7); padding: 72px 0 40px; font-size: 14px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand img { height: 26px; opacity: .9; }
.footer__brand p { margin-top: 20px; line-height: 1.8; color: rgba(255,255,255,.5); }
.footer h5 { color: var(--white); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 16px; }
.footer li { margin-bottom: 10px; }
.footer li a:hover { color: var(--white); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-top: 28px; color: rgba(255,255,255,.4); font-size: 13px; }
.footer__bottom a { margin-right: 20px; }
.footer__bottom a:hover { color: var(--white); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; } .reveal[data-delay="2"] { transition-delay: .2s; } .reveal[data-delay="3"] { transition-delay: .3s; } .reveal[data-delay="4"] { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .hero__glow, .net .pulse, .net .beam { animation: none; } }

/* Responsive -------------------------------------------------------------- */
@media (max-width: 1100px) {
  .grid--4, .numbers, .news-list, .values { grid-template-columns: repeat(2, 1fr); }
  .logos { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .numbers__item:nth-child(3) { border-left: 0; padding-left: 0; }
}
@media (max-width: 900px) {
  .nav, .nav__link--cta { display: none; }
  .burger { display: block; }
  .grid--3, .grid--2, .industry, .block, .vision, .philosophy { grid-template-columns: 1fr; }
  .tile--hl { grid-column: span 1; }
  .section-head--split { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero { min-height: 84svh; }
  .hero__scroll { display: none; }
  .hero__content { padding-block: 64px 100px; }
  .checklist { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .grid--4, .numbers, .news-list, .values, .logos, .steps { grid-template-columns: 1fr; }
  .logos { grid-template-columns: repeat(2, 1fr); }
  .numbers__item + .numbers__item { border-left: 0; padding-left: 0; }
  .btn { width: 100%; justify-content: center; }
  .hero__actions { flex-direction: column; }
  .footer__top { grid-template-columns: 1fr; }
  .philosophy__item { grid-template-columns: 1fr; }
}

/* ==========================================================================
   About — 이노플 소개 (editorial layout)
   ========================================================================== */
.ab-label { display: flex; align-items: center; gap: 16px; font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--blue); }
.ab-label i { flex: 0 0 56px; height: 1px; background: currentColor; opacity: .5; }
.ab-label--light { color: var(--cyan); }

.ab-vision { padding: clamp(72px, 8vw, 120px) 0 clamp(56px, 6vw, 96px); background: var(--white); }
.ab-vision__panel { position: relative; overflow: hidden; isolation: isolate; border-radius: 28px; padding: clamp(48px, 6vw, 96px); min-height: 560px; display: flex; align-items: center;
  background: linear-gradient(120deg, #F7F9FE 0%, #EEF3FF 55%, #E6EEFF 100%); border: 1px solid rgba(24,89,255,.10); }
.ab-vision__panel::before { content: ""; position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(rgba(0,33,126,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,33,126,.05) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg, #000 0%, transparent 70%); }
.ab-vision__art { position: absolute; right: -6%; top: 50%; width: clamp(360px, 46%, 640px); aspect-ratio: 1; transform: translateY(-50%); z-index: -1; }
.ab-vision__art svg { width: 100%; height: 100%; }
.orbit { transform-origin: 300px 300px; animation: spin 40s linear infinite; }
.orbit--2 { animation-duration: 28s; animation-direction: reverse; }
.orbit--3 { animation-duration: 16s; }
@keyframes spin { to { transform: rotate(360deg); } }
.ab-vision__mark { position: absolute; left: clamp(24px, 4vw, 64px); bottom: -0.18em; font-size: clamp(120px, 18vw, 260px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(0,33,126,.10); z-index: -1; user-select: none; }
.ab-vision__body { position: relative; max-width: 720px; }
.ab-vision__text { margin-top: 32px; font-size: clamp(38px, 5.4vw, 76px); line-height: 1.12; letter-spacing: -0.035em; font-weight: 700; color: var(--ink-2); }
.ab-vision__text em { font-style: normal; background: linear-gradient(90deg, var(--navy) 0%, var(--blue) 60%, #2FB6FF 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ab-vision__keys { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.ab-vision__keys li { display: flex; flex-direction: column; gap: 2px; padding: 14px 20px; border-radius: 14px; background: rgba(255,255,255,.75); border: 1px solid rgba(24,89,255,.14); backdrop-filter: blur(6px); min-width: 180px; }
.ab-vision__keys b { font-size: 16px; color: var(--navy); }
.ab-vision__keys span { font-size: 13px; color: var(--gray-500); }
@media (max-width: 900px) { .ab-vision__panel { min-height: 0; padding-bottom: 72px; } .ab-vision__art { right: -30%; top: auto; bottom: -30%; width: 80%; transform: none; opacity: .7; } .ab-vision__mark { display: none; } }
.ab-mission { position: relative; isolation: isolate; overflow: hidden; padding: clamp(88px, 10vw, 150px) 0; color: var(--white); }
.ab-mission__bg { position: absolute; inset: 0; z-index: -1; background: radial-gradient(120% 140% at 85% 0%, #1859FF 0%, #00217E 45%, #0B1220 100%); }
.ab-mission__bg::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 96px 96px; mask-image: radial-gradient(70% 90% at 30% 50%, #000 20%, transparent 80%); }
.ab-mission__text { position: relative; margin-top: 40px; font-size: clamp(26px, 3.4vw, 48px); line-height: 1.35; font-weight: 700; letter-spacing: -0.025em; max-width: 980px; padding-left: clamp(0px, 4vw, 56px); }
.ab-mission__q { position: absolute; left: -0.1em; top: -0.35em; font-size: 3.2em; line-height: 1; color: rgba(255,255,255,.18); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }

.ab-values { padding: clamp(88px, 10vw, 150px) 0; background: var(--white); }
.ab-values__head h2 { font-size: var(--fs-h2); margin-top: 22px; }
.ab-values__list { margin-top: clamp(40px, 5vw, 72px); display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--gray-200); }
.ab-value { position: relative; padding: 40px 28px 44px 0; border-bottom: 1px solid var(--gray-200); transition: background .3s; }
.ab-value + .ab-value { padding-left: 28px; border-left: 1px solid var(--gray-200); }
.ab-value::before { content: ""; position: absolute; top: -1px; left: 0; width: 0; height: 2px; background: var(--blue); transition: width .6s var(--ease); }
.ab-value:hover::before { width: 100%; }
.ab-value__top { display: flex; justify-content: space-between; align-items: flex-start; }
.ab-value__num { font-size: 13px; font-weight: 700; letter-spacing: .14em; color: var(--gray-400); }
.ab-value__icon { width: 64px; height: 64px; border-radius: 50%; background: var(--paper); color: var(--blue); display: grid; place-items: center; transition: background .3s, color .3s, transform .5s var(--ease); }
.ab-value__icon svg { width: 40px; height: 40px; }
.ab-value:hover .ab-value__icon { background: var(--blue); color: var(--white); transform: rotate(-6deg) scale(1.04); }
.ab-value h3 { margin-top: 56px; font-size: 24px; letter-spacing: -0.02em; }
.ab-value__en { display: block; margin-top: 6px; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
.ab-value p { margin-top: 22px; font-size: 15.5px; line-height: 1.75; color: var(--gray-500); }

.ab-phil { padding: clamp(88px, 10vw, 150px) 0; background: var(--paper); }
.ab-phil__head { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: end; }
.ab-phil__head h2 { font-size: var(--fs-h2); margin-top: 22px; }
.ab-phil__lead { font-size: var(--fs-lead); line-height: 1.7; color: var(--gray-700); }
.ab-phil__list { margin-top: clamp(48px, 6vw, 88px); display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ab-phil__item { position: relative; display: grid; grid-template-columns: 140px 1fr; gap: 28px; padding: clamp(32px, 3.5vw, 48px); background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.ab-phil__item:hover { transform: translateY(-6px); box-shadow: 0 28px 70px rgba(11,18,32,.10); }
.ab-phil__key b { display: block; font-size: clamp(40px, 4vw, 56px); line-height: 1; letter-spacing: -0.04em; color: var(--navy); }
.ab-phil__key span { display: block; margin-top: 12px; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); }
.ab-phil__body h3 { font-size: 19px; line-height: 1.45; letter-spacing: -0.015em; color: var(--ink-2); }
.ab-phil__body p { margin-top: 16px; font-size: 15.5px; line-height: 1.8; color: var(--gray-500); }

.ab-more { padding: clamp(48px, 6vw, 88px) 0; background: var(--white); border-top: 1px solid var(--gray-200); }
.ab-more .container { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ab-more__item { display: block; padding: 36px; border-radius: var(--radius); background: var(--paper); transition: background .3s, transform .35s var(--ease); }
.ab-more__item:hover { background: #EAF0FF; transform: translateY(-4px); }
.ab-more__item h3 { margin-top: 8px; font-size: 26px; }
.ab-more__item .link-arrow { margin-top: 14px; font-size: 14.5px; font-weight: 600; color: var(--gray-500); }
.ab-more__item:hover .link-arrow { color: var(--blue); }

@media (max-width: 1100px) { .ab-values__list { grid-template-columns: 1fr 1fr; } .ab-value:nth-child(3) { border-left: 0; padding-left: 0; } }
@media (max-width: 900px) { .ab-phil__head, .ab-phil__list, .ab-more .container { grid-template-columns: 1fr; } .ab-phil__item { grid-template-columns: 1fr; gap: 16px; } }
@media (max-width: 560px) { .ab-values__list { grid-template-columns: 1fr; } .ab-value + .ab-value { border-left: 0; padding-left: 0; } .ab-value h3 { margin-top: 32px; } }

/* ==========================================================================
   CI
   ========================================================================== */
.ci-show { padding: clamp(64px, 8vw, 120px) 0 clamp(48px, 6vw, 96px); }
.ci-show__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ci-show__card { position: relative; aspect-ratio: 16 / 9; border-radius: 24px; display: grid; place-items: center; padding: 12%; overflow: hidden; }
.ci-show__card img { width: 100%; max-width: 420px; }
.ci-show__card--light { background: var(--white); border: 1px solid var(--gray-200); background-image: linear-gradient(rgba(0,33,126,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,33,126,.05) 1px, transparent 1px); background-size: 40px 40px; }
.ci-show__card--dark { background: radial-gradient(120% 120% at 80% 10%, #1859FF 0%, #00217E 45%, #0B1220 100%); }
.ci-show__cap { position: absolute; left: 24px; bottom: 20px; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gray-400); }
.ci-show__card--dark .ci-show__cap { color: rgba(255,255,255,.55); }
.ci-colors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ci-color { border-radius: 20px; overflow: hidden; border: 1px solid var(--gray-200); background: var(--white); }
.ci-color__swatch { height: 220px; background: var(--c); color: var(--fg); display: flex; align-items: flex-end; padding: 24px 28px; font-size: 22px; font-weight: 700; letter-spacing: .04em; border-bottom: 1px solid var(--line); }
.ci-color__meta { margin: 0; padding: 20px 28px 24px; display: grid; gap: 8px; }
.ci-color__meta div { display: flex; justify-content: space-between; font-size: 14px; }
.ci-color__meta dt { color: var(--gray-400); font-weight: 700; letter-spacing: .08em; }
.ci-color__meta dd { margin: 0; color: var(--ink-2); font-variant-numeric: tabular-nums; }
.ci-dl { display: flex; justify-content: space-between; align-items: center; gap: 40px; padding: clamp(32px, 4vw, 56px); border-radius: 24px; background: var(--paper); border: 1px solid var(--gray-200); }
.ci-dl > div:first-child { max-width: 640px; }
.ci-dl__btns { display: flex; flex-direction: column; gap: 12px; flex: 0 0 auto; }
@media (max-width: 900px) { .ci-show__grid, .ci-colors { grid-template-columns: 1fr; } .ci-dl { flex-direction: column; align-items: stretch; } }

/* ==========================================================================
   History
   ========================================================================== */
.hs-strip { background: var(--ink); color: var(--white); padding: 0 0 clamp(48px, 6vw, 80px); margin-top: -1px; }
.hs-strip__list { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid rgba(255,255,255,.12); }
.hs-strip__list li { padding: 28px 24px 0 0; border-right: 1px solid rgba(255,255,255,.12); }
.hs-strip__list li:last-child { border-right: 0; }
.hs-strip__list li + li { padding-left: 24px; }
.hs-strip__list b { display: block; font-size: 30px; letter-spacing: -0.03em; color: var(--cyan); }
.hs-strip__list span { display: block; margin-top: 6px; font-size: 14px; color: rgba(255,255,255,.65); }
.hs { padding: clamp(72px, 8vw, 120px) 0; }
.hs__layout { display: grid; grid-template-columns: 260px 1fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.hs__nav-inner { position: sticky; top: calc(var(--header-h) + 32px); }
.hs__nav ul { margin-top: 24px; display: grid; gap: 4px; }
.hs__nav a { display: block; padding: 12px 16px; border-radius: 10px; font-size: 17px; font-weight: 600; color: var(--gray-400); border-left: 2px solid transparent; transition: .2s; }
.hs__nav a:hover { color: var(--ink-2); background: var(--paper); }
.hs__nav a.is-on { color: var(--blue); border-left-color: var(--blue); background: var(--paper); }
.hs__era { scroll-margin-top: calc(var(--header-h) + 24px); }
.hs__era + .hs__era { margin-top: clamp(64px, 8vw, 112px); }
.hs__era-title { font-size: var(--fs-h2); letter-spacing: -0.03em; padding-bottom: 24px; border-bottom: 2px solid var(--ink-2); }
.hs__year { display: grid; grid-template-columns: 140px 1fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--gray-200); }
.hs__y span { display: inline-block; font-size: 28px; font-weight: 700; letter-spacing: -0.03em; color: var(--navy); line-height: 1; padding-top: 4px; }
.hs__items { display: grid; gap: 10px; }
.hs__items li { position: relative; padding-left: 18px; font-size: 16px; line-height: 1.6; color: var(--gray-700); }
.hs__items li::before { content: ""; position: absolute; left: 0; top: .72em; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
@media (max-width: 1100px) { .hs-strip__list { grid-template-columns: repeat(3, 1fr); } .hs-strip__list li { border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 24px; } .hs-strip__list li:nth-child(3n) { border-right: 0; } .hs-strip__list li:nth-child(4) { padding-left: 0; } }
@media (max-width: 900px) { .hs__layout { grid-template-columns: 1fr; } .hs__nav-inner { position: static; } .hs__nav ul { display: flex; flex-wrap: wrap; gap: 8px; } .hs__nav a { border: 1px solid var(--gray-200); border-radius: 999px; padding: 8px 14px; font-size: 14px; } .hs__nav a.is-on { border-color: var(--blue); } .hs__year { grid-template-columns: 1fr; gap: 12px; } }
@media (max-width: 560px) { .hs-strip__list { grid-template-columns: 1fr 1fr; } .hs-strip__list li { border-right: 0 !important; padding-left: 0 !important; } }

/* ==========================================================================
   Location
   ========================================================================== */
.loc { padding: clamp(64px, 8vw, 120px) 0; }
.loc__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; align-items: stretch; }
.loc__map { border-radius: 24px; overflow: hidden; border: 1px solid var(--gray-200); min-height: 560px; background: var(--paper); }
.loc__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.9); }
.loc__info { display: grid; gap: 20px; align-content: start; }
.loc__card { padding: clamp(28px, 3vw, 40px); border-radius: 20px; background: var(--white); border: 1px solid var(--gray-200); }
.loc__card h2 { margin-top: 20px; font-size: clamp(22px, 2vw, 28px); line-height: 1.4; letter-spacing: -0.02em; }
.loc__card h2 em { font-style: normal; color: var(--blue); }
.loc__en { margin-top: 12px; font-size: 13.5px; color: var(--gray-400); line-height: 1.6; }
.loc__btns { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.loc__btns .btn { padding: 12px 20px; font-size: 14.5px; }
.loc__transit { margin-top: 20px; display: grid; gap: 16px; }
.loc__transit li { display: flex; gap: 16px; align-items: flex-start; }
.loc__line { flex: 0 0 36px; height: 36px; border-radius: 50%; background: var(--lc); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 16px; line-height: 1; box-shadow: inset 0 0 0 2px rgba(255,255,255,.35); }
.loc__transit b { display: block; font-size: 17px; }
.loc__transit span { display: block; font-size: 14px; color: var(--gray-500); margin-top: 2px; }
.loc__card--contact p { margin-top: 16px; color: var(--gray-500); font-size: 15px; }
.loc__mail { display: block; margin-top: 6px; font-size: 24px; font-weight: 700; letter-spacing: -0.02em; color: var(--navy); }
.loc__card--contact .link-arrow { margin-top: 16px; font-size: 14.5px; }
@media (max-width: 900px) { .loc__grid { grid-template-columns: 1fr; } .loc__map { min-height: 380px; } }

/* Index — about strip */
.about-strip { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.about-strip__intro h2 { font-size: var(--fs-h2); margin-top: 18px; }
.about-strip__intro .lead { font-size: var(--fs-lead); color: var(--gray-500); margin-top: 20px; }
.about-strip__intro .btn { margin-top: 32px; }
.about-strip__links { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-link { position: relative; display: block; padding: 28px 26px 30px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--gray-200); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.about-link:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(11,18,32,.08); }
.about-link h3 { font-size: 20px; margin-top: 8px; }
.about-link p { margin-top: 8px; font-size: 14px; color: var(--gray-500); padding-right: 40px; }
.about-link .tile__arrow { right: 20px; bottom: 20px; width: 36px; height: 36px; }
.about-link:hover .tile__arrow { background: var(--blue); border-color: var(--blue); color: var(--white); }
@media (max-width: 900px) { .about-strip { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .about-strip__links { grid-template-columns: 1fr; } }

/* ==========================================================================
   Generic service pages
   ========================================================================== */
.svc-group { font-size: 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin: 8px 0 18px; padding-left: 14px; border-left: 3px solid var(--blue); }
.svc-card { text-decoration: none; }
.svc-card__sub { margin-top: 8px; font-size: 14px; font-weight: 600; color: var(--blue); }
.svc-card p { margin-top: 12px; }
.svc-bullets { display: grid; gap: 8px; margin-top: 8px; }
.svc-bullets li { position: relative; padding-left: 16px; font-size: 15px; color: var(--gray-700); line-height: 1.6; }
.svc-bullets li::before { content: ""; position: absolute; left: 0; top: .7em; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.svc-bullets--dark li { color: rgba(255,255,255,.75); }
.svc-bullets--dark li::before { background: var(--cyan); }
.card--dark .svc-bullets li { color: rgba(255,255,255,.75); }
.card--dark .svc-bullets li::before { background: var(--cyan); }
.card .svc-bullets { flex: 1; }
/* tabs */
.tabs__nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-200); }
.tabs__btn { padding: 12px 22px; border-radius: 999px; border: 1px solid var(--gray-300); background: var(--white); color: var(--gray-700); font-weight: 600; font-size: 15px; transition: .2s; }
.tabs__btn:hover { border-color: var(--ink); color: var(--ink); }
.tabs__btn.is-on { background: var(--ink); border-color: var(--ink); color: var(--white); }
.tabs__panel { display: none; animation: fadein .4s var(--ease); }
.tabs__panel.is-on { display: block; }
@keyframes fadein { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.tabs__head { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(24px, 5vw, 80px); padding: clamp(32px, 4vw, 56px); border-radius: var(--radius); background: var(--white); border: 1px solid var(--gray-200); }
.tabs__head h3 { font-size: clamp(26px, 2.6vw, 36px); margin-top: 12px; letter-spacing: -0.03em; }
.tabs__block { margin-top: 32px; }
.tabs__block-title { font-size: 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.tabs__block-title::after { content: ""; flex: 1; height: 1px; background: var(--gray-200); }
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.detail-item { padding: 26px 26px 28px; border-radius: 14px; background: var(--white); border: 1px solid var(--gray-200); }
.detail-item h5 { margin: 0; font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.detail-item p { margin-top: 10px; font-size: 14.5px; color: var(--gray-500); line-height: 1.7; }
.detail-item .svc-bullets li { font-size: 14.5px; }
.feature { padding: 28px; border-radius: 14px; background: var(--white); border: 1px solid var(--gray-200); border-top: 3px solid var(--blue); }
.feature h5 { margin: 0; font-size: 17px; letter-spacing: -0.01em; }
.feature p { margin-top: 10px; font-size: 14.5px; color: var(--gray-500); line-height: 1.7; }
.case-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.case-chips li { padding: 10px 16px; border-radius: 999px; background: var(--white); border: 1px solid var(--gray-200); font-size: 14.5px; font-weight: 600; color: var(--gray-700); }
.case-chips--dark li { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.85); }
@media (max-width: 1100px) { .detail-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) { .tabs__head { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .detail-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Industry page
   ========================================================================== */
.ind { scroll-margin-top: var(--header-h); }
.ind__hero { position: relative; color: var(--white); padding: clamp(64px, 8vw, 110px) 0; overflow: hidden; isolation: isolate; }
.ind__hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--bg); }
.ind__hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(70% 100% at 80% 50%, #000 20%, transparent 80%); }
.ind__hero .tile__en { color: rgba(255,255,255,.65); }
.ind__hero h2 { font-size: var(--fs-h2); margin-top: 10px; }
.ind__tag { margin-top: 20px; font-size: clamp(20px, 2vw, 26px); font-weight: 700; letter-spacing: -0.02em; }
.ind__desc { margin-top: 14px; max-width: 820px; color: rgba(255,255,255,.78); line-height: 1.75; }
.ind__groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; padding: clamp(48px, 6vw, 80px) 0; }
.ind__group h3 { font-size: 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.ind__group ul { display: grid; gap: 10px; }
.ind__group a { display: grid; grid-template-columns: 1fr auto; gap: 4px 16px; padding: 20px 22px; border-radius: 14px; background: var(--white); border: 1px solid var(--gray-200); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.ind__group a:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(11,18,32,.08); border-color: transparent; }
.ind__group b { grid-column: 1; grid-row: 1; font-size: 17px; }
.ind__group span { grid-column: 1; font-size: 14px; color: var(--gray-500); line-height: 1.6; }
.ind__group i { grid-column: 2; grid-row: 1 / span 2; align-self: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--gray-200); display: grid; place-items: center; color: var(--ink-2); transition: .3s; }
.ind__group i svg { width: 16px; height: 16px; }
.ind__group a:hover i { background: var(--blue); border-color: var(--blue); color: var(--white); }
@media (max-width: 900px) { .ind__groups { grid-template-columns: 1fr; } }

/* ==========================================================================
   Contact
   ========================================================================== */
.ct { padding: clamp(64px, 8vw, 120px) 0; }
.ct__grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 24px; align-items: start; }
.ct__side { display: grid; gap: 20px; }
.ct__topics { margin-top: 16px; display: grid; gap: 14px; }
.ct__topics b { display: block; font-size: 15.5px; }
.ct__topics span { display: block; font-size: 13.5px; color: var(--gray-500); margin-top: 2px; }
.ct__form { padding: clamp(28px, 4vw, 48px); border-radius: 24px; background: var(--white); border: 1px solid var(--gray-200); display: grid; gap: 22px; }
.ct__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field > span { font-size: 13.5px; font-weight: 700; color: var(--gray-700); letter-spacing: .02em; }
.field em { color: var(--blue); font-style: normal; }
.field input, .field textarea { width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--gray-300); font: inherit; font-size: 15.5px; color: var(--ink-2); background: var(--paper); transition: border-color .2s, background .2s, box-shadow .2s; }
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 4px rgba(24,89,255,.12); }
.field textarea { resize: vertical; min-height: 160px; }
.ct__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ct__chips input { position: absolute; opacity: 0; pointer-events: none; }
.ct__chips span { display: inline-block; padding: 9px 14px; border-radius: 999px; border: 1px solid var(--gray-300); font-size: 14px; font-weight: 600; color: var(--gray-700); cursor: pointer; transition: .2s; }
.ct__chips input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--white); }
.ct__agree { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--gray-500); line-height: 1.6; }
.ct__agree input { margin-top: 4px; width: 16px; height: 16px; accent-color: var(--blue); }
.ct__agree a { color: var(--blue); text-decoration: underline; }
.ct__submit { justify-self: start; }
.ct__status { font-size: 14px; color: var(--gray-500); min-height: 1.5em; }
.ct__status.is-ok { color: #0F8A4B; } .ct__status.is-err { color: #C0392B; }
@media (max-width: 900px) { .ct__grid, .ct__row { grid-template-columns: 1fr; } .ct__side { order: 2; } }

/* ==========================================================================
   Newsroom
   ========================================================================== */
.nl { padding: clamp(48px, 6vw, 88px) 0 clamp(64px, 8vw, 120px); }
.nl__bar { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-bottom: 20px; border-bottom: 1px solid var(--gray-200); }
.nl__tabs { display: flex; gap: 6px; }
.nl__tabs button { padding: 10px 18px; border-radius: 999px; border: 1px solid transparent; background: none; font-weight: 600; font-size: 15px; color: var(--gray-500); transition: .2s; }
.nl__tabs button span { font-size: 12px; margin-left: 4px; color: var(--gray-400); }
.nl__tabs button:hover { color: var(--ink); }
.nl__tabs button.is-on { background: var(--ink); color: var(--white); }
.nl__tabs button.is-on span { color: var(--cyan); }
.nl__search { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px; border: 1px solid var(--gray-300); background: var(--white); min-width: 260px; }
.nl__search svg { width: 18px; height: 18px; color: var(--gray-400); }
.nl__search input { border: 0; outline: 0; font: inherit; font-size: 15px; width: 100%; background: none; }
.nl__featured { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; margin: 32px 0 40px; }
.nl__feat { position: relative; display: block; min-height: 220px; border-radius: 18px; overflow: hidden; color: var(--white); isolation: isolate; }
.nl__feat--big { grid-row: span 2; min-height: 460px; }
.nl__feat-bg { position: absolute; inset: 0; z-index: -1; background: var(--ink) center/cover no-repeat; transition: transform .8s var(--ease); }
.nl__feat-bg--art { background: radial-gradient(120% 120% at 80% 0%, #1859FF 0%, #00217E 45%, #0B1220 100%); }
.nl__feat::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11,18,32,.05) 30%, rgba(11,18,32,.85) 100%); }
.nl__feat:hover .nl__feat-bg { transform: scale(1.05); }
.nl__feat-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px; }
.nl__feat-body .news-item__meta b { color: var(--cyan); } .nl__feat-body .news-item__meta span { color: rgba(255,255,255,.6); }
.nl__feat-body h3 { margin-top: 10px; font-size: 20px; line-height: 1.4; }
.nl__feat--big .nl__feat-body h3 { font-size: 28px; }
.nl__list { display: grid; }
.nl__item a { display: grid; grid-template-columns: 110px 1fr auto 36px; gap: 20px; align-items: center; padding: 22px 8px; border-bottom: 1px solid var(--gray-200); transition: background .2s; }
.nl__item a:hover { background: var(--paper); }
.nl__cat { font-size: 12px; font-weight: 700; letter-spacing: .06em; padding: 5px 10px; border-radius: 6px; text-align: center; }
.nl__cat--news { background: #EAF0FF; color: var(--blue); }
.nl__cat--notice { background: var(--gray-100); color: var(--gray-700); }
.nl__title { font-size: 17px; font-weight: 600; }
.nl__date { font-size: 14px; color: var(--gray-400); font-variant-numeric: tabular-nums; }
.nl__item i { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--gray-200); display: grid; place-items: center; color: var(--ink-2); transition: .2s; }
.nl__item i svg { width: 16px; height: 16px; }
.nl__item a:hover i { background: var(--blue); border-color: var(--blue); color: var(--white); }
.nl__more { text-align: center; margin-top: 32px; }
.nl__empty { text-align: center; color: var(--gray-400); padding: 60px 0; }
@media (max-width: 900px) { .nl__featured { grid-template-columns: 1fr; grid-template-rows: none; } .nl__feat--big { grid-row: auto; min-height: 320px; } .nl__item a { grid-template-columns: 1fr auto; } .nl__cat { justify-self: start; } .nl__title { grid-column: 1 / -1; } .nl__item i { display: none; } }
/* detail */
.nd__title { font-size: clamp(26px, 3vw, 42px); margin-top: 18px; line-height: 1.3; letter-spacing: -0.025em; max-width: 960px; }
.nd__meta { display: flex; gap: 18px; margin-top: 20px; font-size: 14px; color: rgba(255,255,255,.6); }
.nd { padding: clamp(56px, 7vw, 100px) 0; }
.nd__layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(32px, 5vw, 80px); align-items: start; }
.nd__body { font-size: 17px; line-height: 1.85; color: var(--gray-700); max-width: 820px; }
.nd__body p { margin: 0 0 1.2em; }
.nd__body img { border-radius: 12px; margin: 24px 0; height: auto !important; }
.nd__body a { color: var(--blue); text-decoration: underline; word-break: break-all; }
.nd__body h1, .nd__body h2, .nd__body h3, .nd__body h4 { margin: 1.6em 0 .6em; color: var(--ink-2); }
.nd__body table { border-collapse: collapse; width: 100%; font-size: 15px; margin: 20px 0; }
.nd__body td, .nd__body th { border: 1px solid var(--gray-200); padding: 10px 12px; vertical-align: top; }
.nd__body ul, .nd__body ol { padding-left: 1.2em; margin: 0 0 1.2em; list-style: disc; }
.nd__body ol { list-style: decimal; }
.nd__side-inner { position: sticky; top: calc(var(--header-h) + 32px); padding: 28px; border-radius: 18px; background: var(--paper); border: 1px solid var(--gray-200); }
.nd__related { margin-top: 16px; display: grid; }
.nd__related a { display: block; padding: 12px 0; border-bottom: 1px solid var(--gray-200); }
.nd__related span { display: block; font-size: 12px; color: var(--gray-400); }
.nd__related b { display: block; font-size: 14.5px; line-height: 1.5; margin-top: 2px; font-weight: 600; }
.nd__related a:hover b { color: var(--blue); }
.nd__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--gray-200); }
.nd__nav-item { display: block; padding: 20px 24px; border-radius: 14px; background: var(--white); border: 1px solid var(--gray-200); transition: .2s; }
.nd__nav-item:hover { border-color: var(--blue); }
.nd__nav-item span { display: block; font-size: 12px; font-weight: 700; letter-spacing: .1em; color: var(--gray-400); text-transform: uppercase; }
.nd__nav-item b { display: block; margin-top: 6px; font-size: 15px; line-height: 1.5; }
.nd__nav-item--next { text-align: right; }
@media (max-width: 900px) { .nd__layout { grid-template-columns: 1fr; } .nd__side-inner { position: static; } .nd__nav { grid-template-columns: 1fr; } }
/* policy */
.policy { max-width: 900px; font-size: 15.5px; }
.policy dl { margin: 0; } .policy dt { font-size: 19px; font-weight: 700; color: var(--ink-2); margin: 2em 0 .6em; letter-spacing: -0.01em; }
.policy dd { margin: 0; }
.policy ol { list-style: none; padding-left: 0; } .policy ol ol { padding-left: 1.4em; margin: .4em 0 .8em; }
.policy li { margin-bottom: .5em; }
.policy table { font-size: 14px; }
.ct__grid > *, .ct__form > *, .ct__row > *, .field, .field > * { min-width: 0; }
.ct__chips label { position: relative; }
.ct__form { max-width: 100%; }
