/* ============================================================
   JOIN Enterprise — Global Stylesheet (Light Industrial)
   White background, navy+blue accents matching JOIN logo
   ============================================================ */

:root {
  /* Brand - matches JOIN logo navy */
  --brand-900: #0A1A4D;
  --brand-800: #132468;
  --brand-700: #1E47C5;
  --brand-600: #2857E8;
  --brand-500: #4A77FF;
  --brand-100: #E8EEFC;
  --brand-50:  #F4F7FD;

  /* Ink (text/dark elements) */
  --ink-900: #0A1330;
  --ink-800: #1A2340;
  --ink-700: #2A3350;

  /* Gray scale */
  --gray-700: #404964;
  --gray-500: #6A7490;
  --gray-400: #9098AE;
  --gray-300: #C4CAD8;
  --gray-200: #E4E7EF;
  --gray-100: #F1F3F8;
  --gray-50:  #F9FAFC;
  --white:    #FFFFFF;

  --border:        rgba(10, 19, 48, 0.08);
  --border-strong: rgba(10, 19, 48, 0.14);

  /* Backward compat with v3 variables (used in HTML inline styles) */
  --bg-deep:    #FFFFFF;
  --bg-deepest: #F4F7FD;
  --bg-dark:    #F9FAFC;
  --bg-elev:    #FFFFFF;
  --line:       rgba(30, 71, 197, 0.10);
  --line-strong:rgba(30, 71, 197, 0.18);
  --accent-400: #4A77FF;
  --accent-500: #1E47C5;
  --accent-600: #1538A6;
  --accent-700: #0F2365;
  --accent-900: #0A1A4D;
  --accent-glow:rgba(30, 71, 197, 0.18);
  --text-100: #0A1330;
  --text-300: #2A3350;
  --text-500: #6A7490;
  --text-700: #9098AE;
  --text-900: #C4CAD8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Pretendard Variable', Pretendard, 'Space Grotesk', -apple-system, sans-serif;
  background: var(--white);
  color: var(--ink-900);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.mono {
  font-family: 'JetBrains Mono', monospace;
  font-feature-settings: "tnum";
}
.en { font-family: 'Space Grotesk', sans-serif; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ==================== NAV ==================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 48px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
nav.scrolled {
  padding: 12px 48px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 20px rgba(10,19,48,0.04);
}
/* index 페이지: 스크롤 전에는 다크 히어로 위에 투명 nav + 흰 로고 */
body.hero-page nav:not(.scrolled) {
  background: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
body.hero-page nav:not(.scrolled) .logo-img {
  content: url('../img/logo-join-white.png');
}
body.hero-page nav:not(.scrolled) .nav-menu a {
  color: rgba(255, 255, 255, 0.92);
}
body.hero-page nav:not(.scrolled) .nav-menu a:hover {
  color: var(--brand-500);
}
body.hero-page nav:not(.scrolled) .nav-menu a::after {
  background: var(--brand-500);
}
body.hero-page nav:not(.scrolled) .nav-menu a.active {
  color: var(--brand-500);
}
body.hero-page nav:not(.scrolled) .nav-toggle {
  color: var(--white);
}
.logo { display: flex; align-items: center; gap: 0; }
/* Real logo image */
.logo-img {
  height: 36px; width: auto;
  transition: height 0.3s ease;
}
nav.scrolled .logo-img { height: 32px; }

.nav-menu { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-menu a {
  color: var(--ink-800); font-size: 14px;
  font-weight: 500; position: relative; padding: 8px 0;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-menu a:hover { color: var(--brand-700); }
.nav-menu a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--brand-700); transition: width 0.3s;
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a.active { color: var(--brand-700); }
.nav-menu a.nav-cta {
  background: var(--brand-700); color: #fff !important;
  padding: 11px 32px; font-weight: 600; font-size: 13px;
  letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.nav-menu a.nav-cta:hover {
  background: var(--brand-800); transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(30, 71, 197, 0.25);
}
.nav-menu a.nav-cta::after { display: none !important; }
.nav-toggle { display: none; background: none; border: none; color: var(--ink-900); cursor: pointer; }

/* ==================== BUTTONS ==================== */
.btn-primary {
  background: var(--brand-700); color: #fff;
  padding: 16px 28px; border: none;
  font-size: 14px; font-weight: 600;
  cursor: pointer; display: inline-flex;
  align-items: center; gap: 12px; transition: all 0.2s;
  letter-spacing: 0.02em; font-family: inherit;
  text-transform: uppercase;
}
.btn-primary:hover {
  background: var(--brand-800);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(30, 71, 197, 0.25);
}
.btn-primary svg { transition: transform 0.2s; width: 14px; height: 14px; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
  color: var(--ink-800); padding: 16px 0;
  font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border-strong);
  transition: all 0.2s;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.btn-secondary:hover {
  color: var(--brand-700);
  border-color: var(--brand-700);
}

.btn-outline {
  color: var(--ink-800);
  padding: 14px 24px;
  border: 1px solid var(--border-strong);
  background: transparent;
  font-size: 13px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.2s;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
}
.btn-outline:hover {
  border-color: var(--brand-700);
  color: var(--brand-700);
}

/* ==================== HERO (shared base) ==================== */
.hero {
  position: relative; min-height: 100vh;
  padding: 140px 48px 100px;
  display: flex; align-items: center; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 80% 20%, rgba(30, 71, 197, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(30, 71, 197, 0.05) 0%, transparent 55%),
    var(--white);
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(30, 71, 197, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 71, 197, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 10%, transparent 70%);
}

/* ==================== HERO IMAGE VARIANT ==================== */
.hero.hero-image {
  padding: 140px 48px 0;
  display: flex; flex-direction: column; justify-content: space-between;
  background: var(--white);
}
.hero.hero-image::before,
.hero.hero-image::after { display: none; }

.hero-bg-image {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-bg-image img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 1;
  filter: saturate(1.05) contrast(1.02);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 10, 26, 0.82) 0%, rgba(5, 10, 26, 0.65) 50%, rgba(5, 10, 26, 0.4) 100%),
    linear-gradient(180deg, rgba(5, 10, 26, 0.1) 0%, rgba(5, 10, 26, 0.3) 60%, rgba(5, 10, 26, 0.6) 100%);
}
.hero-overlay::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

/* ==================== HERO SLIDER ==================== */
.hero.hero-slider {
  position: relative;
}
.hero-slider .slide {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
}
.hero-slider .slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slider .slide .hero-bg-image {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-slider .slide img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 1;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.02);
  transition: transform 8s ease;
}
.hero-slider .slide.active img {
  transform: scale(1.0);
}

/* ==================== Hero text on dark overlay ==================== */
/* 히어로 섹션 내에서 텍스트만 밝은 톤으로 오버라이드 */
.hero.hero-image .hero-tag {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero.hero-image .hero-tag-dot {
  background: var(--white);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  animation: pulseLight 2s infinite;
}
@keyframes pulseLight {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
}
.hero.hero-image h1,
.hero.hero-image .hero-title-slide {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero.hero-image h1 .accent,
.hero.hero-image .hero-title-slide .accent {
  color: var(--brand-500);
  background: none;
  -webkit-text-fill-color: var(--brand-500);
}
.hero.hero-image .hero-desc {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}
.hero.hero-image .hero-desc strong {
  color: var(--white);
  font-weight: 600;
}
.hero.hero-image .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.hero.hero-image .btn-secondary:hover {
  color: var(--brand-500);
  border-color: var(--brand-500);
}

/* Stats strip on dark overlay */
.hero.hero-image .hero-stats {
  border-top-color: rgba(255, 255, 255, 0.15);
}
.hero.hero-image .hero-stat:not(:last-child) {
  border-right-color: rgba(255, 255, 255, 0.15);
}
.hero.hero-image .hero-stat-num {
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.hero.hero-image .hero-stat-num sub {
  color: var(--brand-500);
}
.hero.hero-image .hero-stat-label {
  color: rgba(255, 255, 255, 0.7);
}

/* Stacked titles (one shows at a time) */
.hero-title-stack {
  position: relative;
  min-height: clamp(140px, 18vw, 240px);
  margin-bottom: 32px;
}
.hero-title-slide {
  position: absolute; top: 0; left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
  margin-bottom: 0 !important;
}
.hero-title-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Dot indicators — 다크 배경용 */
.slide-dots {
  position: absolute;
  bottom: 180px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 12px;
}
.slide-dot {
  width: 28px; height: 3px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.slide-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}
.slide-dot.active {
  background: rgba(255, 255, 255, 0.3);
}
.slide-dot.active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-100%);
  animation: slideFill 4s linear forwards;
}
@keyframes slideFill {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

@media (max-width: 900px) {
  .slide-dots { bottom: 240px; }
}
@media (max-width: 500px) {
  .slide-dots { bottom: 280px; }
  .slide-dot { width: 20px; }
}

.hero-grid {
  max-width: 1400px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr;
  gap: 0; align-items: center;
  position: relative; z-index: 2;
}
.hero-grid.hero-single {
  max-width: 1100px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-grid.hero-single .hero-content { max-width: 860px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 14px;
  border: 1px solid var(--brand-700);
  background: var(--brand-50);
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--brand-700); margin-bottom: 32px; font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
}
.hero-tag-dot {
  width: 6px; height: 6px; background: var(--brand-700);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(30, 71, 197, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(30, 71, 197, 0); }
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 6.2vw, 88px);
  font-weight: 500; line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--ink-900); margin-bottom: 32px;
}
.hero h1 .accent {
  color: var(--brand-700);
  font-weight: 600;
}
.hero h1 .line2 {
  display: block; color: var(--gray-500);
  font-size: 0.82em; margin-top: 10px; font-weight: 400;
}

.hero-desc {
  font-size: 17px; color: var(--gray-700);
  max-width: 560px; margin-bottom: 48px; line-height: 1.75;
}
.hero-desc strong { color: var(--ink-900); font-weight: 600; }

.hero-ctas {
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-stats {
  position: relative; z-index: 2;
  max-width: 1400px;
  margin: 80px auto 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  padding: 40px 0 60px;
}
.hero-stat { padding: 0 32px; }
.hero-stat:not(:last-child) {
  border-right: 1px solid var(--border);
}
.hero-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px; font-weight: 500;
  color: var(--ink-900); line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat-num sub {
  font-size: 20px; color: var(--brand-700);
  font-weight: 600; vertical-align: top;
  margin-left: 2px;
}
.hero-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--gray-500);
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-top: 12px;
}

/* ==================== PAGE HEADER (sub pages) ==================== */
.page-header {
  padding: 180px 48px 100px;
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(30, 71, 197, 0.08) 0%, transparent 70%),
    var(--white);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30, 71, 197, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 71, 197, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center top, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center top, black 0%, transparent 70%);
}

/* Image variant */
.page-header.page-header-image {
  padding: 180px 48px 100px;
  background: var(--white);
}
.page-header.page-header-image::before { display: none; }
.page-header-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.page-header-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.2;
  filter: saturate(1.05);
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.92) 80%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, var(--white) 100%);
}
.page-header-overlay::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30, 71, 197, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 71, 197, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center top, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center top, black 0%, transparent 80%);
}

.page-header .container {
  max-width: 1400px; margin: 0 auto;
  position: relative; z-index: 2;
}
.page-crumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--gray-500);
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 24px;
}
.page-crumb a { color: var(--gray-500); transition: color 0.2s; }
.page-crumb a:hover { color: var(--brand-700); }
.page-crumb .sep { margin: 0 10px; color: var(--gray-300); }
.page-crumb .current { color: var(--brand-700); }

.page-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500; letter-spacing: -0.03em;
  line-height: 1.05; color: var(--ink-900);
  margin-bottom: 20px;
}
.page-header h1 .accent { color: var(--brand-700); font-weight: 600; }
.page-header p {
  font-size: 17px; color: var(--gray-700);
  max-width: 640px; line-height: 1.7;
}

/* Fact list */
.fact-list {
  margin-top: 32px;
  border-top: 1px solid var(--border);
}
.fact-list dt, .fact-list dd {
  font-size: 14px;
  padding: 14px 0;
  line-height: 1.5;
}
.fact-list dt {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--gray-500);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-top: 16px;
  padding-bottom: 4px;
}
.fact-list dd {
  color: var(--ink-800);
  padding-top: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.fact-list dd:last-of-type { border-bottom: none; }

/* ==================== SECTIONS ==================== */
section { position: relative; padding: 120px 48px; }
.container { max-width: 1400px; margin: 0 auto; }
.container-narrow { max-width: 1180px; margin: 0 auto; }

.section-tag {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--brand-700); margin-bottom: 28px; font-weight: 600;
}
.section-tag::before {
  content: ''; width: 32px; height: 1px;
  background: var(--brand-700);
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 500; letter-spacing: -0.03em; line-height: 1.08;
  color: var(--ink-900); margin-bottom: 24px;
}
.section-title .accent { color: var(--brand-700); font-weight: 600; }
.section-desc {
  font-size: 16px; color: var(--gray-700);
  max-width: 620px; line-height: 1.75;
}

/* ==================== PARTNERS STRIP ==================== */
.partners {
  padding: 60px 48px;
  background: var(--gray-50);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr;
  gap: 60px; align-items: center;
}
.partners-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--gray-500);
  letter-spacing: 0.25em; text-transform: uppercase;
  white-space: nowrap; line-height: 1.6;
}
.partners-list {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 32px;
}
.partner-item {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 18px;
  color: var(--gray-400);
  letter-spacing: 0.02em;
  transition: color 0.3s;
  cursor: default;
}
.partner-item:hover { color: var(--ink-900); }

/* ==================== CATEGORIES ==================== */
.cats-section { background: var(--white); }

.cats-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-bottom: 80px; align-items: end;
}

.cats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  min-height: 240px;
  display: flex; flex-direction: column;
  cursor: pointer;
}
.cat-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--brand-700);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.cat-card:hover {
  border-color: var(--brand-700);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(30, 71, 197, 0.12);
}
.cat-card:hover::before { transform: scaleX(1); }

.cat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--gray-400);
  letter-spacing: 0.2em; margin-bottom: 28px;
}
.cat-icon {
  width: 48px; height: 48px;
  background: var(--brand-50);
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.cat-icon svg { width: 22px; height: 22px; stroke: var(--brand-700); fill: none; stroke-width: 1.5; }
.cat-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px; font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.cat-card .cat-ko {
  font-size: 12px; color: var(--gray-500);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.cat-card .cat-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--gray-500);
  letter-spacing: 0.1em;
}
.cat-card .cat-arrow {
  color: var(--brand-700);
  transition: transform 0.2s;
}
.cat-card:hover .cat-arrow { transform: translateX(4px); }

.cat-card.feature {
  background: linear-gradient(135deg, var(--brand-800) 0%, var(--brand-700) 100%);
  border-color: var(--brand-700);
}
.cat-card.feature .cat-num,
.cat-card.feature .cat-ko,
.cat-card.feature .cat-footer { color: rgba(255,255,255,0.75); }
.cat-card.feature .cat-footer { border-top-color: rgba(255,255,255,0.15); }
.cat-card.feature .cat-icon {
  background: rgba(255,255,255,0.15);
}
.cat-card.feature .cat-icon svg { stroke: #fff; }
.cat-card.feature h3 { color: #fff; }
.cat-card.feature .cat-arrow { color: #fff; }

/* ==================== WHY SECTION ==================== */
.why-section {
  padding: 140px 48px;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30, 71, 197, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 71, 197, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
.why-section .container { position: relative; z-index: 2; }

.why-header {
  text-align: center; max-width: 900px; margin: 0 auto 80px;
}
.philo-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500; letter-spacing: -0.04em;
  line-height: 1.1; color: var(--ink-900);
  margin-bottom: 32px;
}
.philo-title .accent { color: var(--brand-700); font-weight: 600; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--brand-700);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}
.why-card:hover {
  border-color: var(--brand-700);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(30, 71, 197, 0.15);
}
.why-card:hover::before { transform: scaleX(1); }

.why-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gray-100);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.why-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-card:hover .why-img img { transform: scale(1.05); }
.why-body { padding: 32px 28px 36px; }
.why-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--brand-700);
  letter-spacing: 0.2em; margin-bottom: 20px;
  font-weight: 600;
}
.why-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.3;
}
.why-card p {
  color: var(--gray-700);
  font-size: 14px; line-height: 1.75;
}

/* ==================== COVERAGE ==================== */
.coverage {
  padding: 80px 48px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.coverage-item { text-align: center; }
.coverage-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--brand-700);
  letter-spacing: 0.25em; text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
.coverage-item h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.coverage-item p {
  font-size: 13px; color: var(--gray-700);
  line-height: 1.7;
}
.coverage-divider {
  width: 1px; height: 60px;
  background: var(--border);
}

/* ==================== PHILOSOPHY (kept for other pages) ==================== */
.philosophy {
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}
.philosophy::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30, 71, 197, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 71, 197, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
.philosophy .container { position: relative; z-index: 2; }
.philo-header { text-align: center; max-width: 900px; margin: 0 auto 80px; }
.philo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.philo-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.3s ease;
}
.philo-card:hover {
  border-color: var(--brand-700);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30, 71, 197, 0.1);
}
.philo-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--brand-700);
  letter-spacing: 0.2em; margin-bottom: 32px;
  font-weight: 600;
}
.philo-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.philo-card p {
  color: var(--gray-700);
  font-size: 14px; line-height: 1.75;
}

/* ==================== CTA ==================== */
.cta-section {
  padding: 140px 48px;
  background:
    radial-gradient(ellipse at top, rgba(30, 71, 197, 0.06) 0%, transparent 60%),
    var(--white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30, 71, 197, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 71, 197, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 60%);
}
.cta-inner {
  max-width: 900px; margin: 0 auto; text-align: center;
  position: relative; z-index: 2;
}
.cta-mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--brand-700);
  letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 600;
}
.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 500; letter-spacing: -0.03em;
  line-height: 1.1; color: var(--ink-900);
  margin-bottom: 24px;
}
.cta-desc {
  font-size: 17px; color: var(--gray-700);
  max-width: 560px; margin: 0 auto 48px;
}
.cta-buttons {
  display: flex; gap: 20px; justify-content: center;
  flex-wrap: wrap;
}

/* ==================== FOOTER ==================== */
footer {
  background: var(--ink-900);
  padding: 80px 48px 40px;
  color: var(--gray-300);
}
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo-img {
  height: 40px;
  opacity: 0.92;
}
.footer-about {
  color: var(--gray-400); font-size: 13px;
  line-height: 1.8; max-width: 320px;
}
.footer-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--gray-400);
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--gray-300); font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--brand-500); }
.footer-contact p {
  color: var(--gray-300); font-size: 13px;
  margin-bottom: 8px; line-height: 1.8;
}
.footer-contact .mono { color: var(--brand-500); font-size: 14px; font-weight: 500; }

/* Footer email lines (Sales / Technical 라벨 + 이메일) */
.footer-contact .footer-email-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
.footer-contact .footer-email-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-width: 56px;
  flex-shrink: 0;
}
.footer-contact .footer-email-line a {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-contact .footer-email-line a:hover {
  color: var(--brand-500);
}

.footer-bottom {
  max-width: 1400px; margin: 0 auto;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--gray-500);
  letter-spacing: 0.1em;
}

/* ==================== PRODUCTS PAGE ==================== */
.products-section {
  padding: 80px 48px 120px;
  background: var(--white);
}
.products-section .container { max-width: 1400px; margin: 0 auto; }

.product-filter {
  display: flex; flex-wrap: wrap;
  gap: 8px; margin-bottom: 60px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.filter-btn {
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--border-strong);
  color: var(--ink-800);
  font-size: 12px; font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
}
.filter-btn:hover {
  border-color: var(--brand-700);
  color: var(--brand-700);
}
.filter-btn.active {
  background: var(--brand-700);
  border-color: var(--brand-700);
  color: #fff;
}
.filter-btn .count {
  opacity: 0.6; margin-left: 6px; font-size: 10px;
}

.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--brand-700);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}
.product-card:hover {
  border-color: var(--brand-700);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(30, 71, 197, 0.12);
}
.product-card:hover::before { transform: scaleX(1); }

.product-img {
  position: relative; aspect-ratio: 4 / 3;
  background: var(--gray-50);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}
.product-img-placeholder {
  display: flex; align-items: center; justify-content: center;
  height: 100%;
  color: var(--gray-500);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 500;
  background: var(--gray-50);
  position: relative;
  text-align: center;
  padding: 20px;
}
.product-img-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30, 71, 197, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 71, 197, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.6;
}
.product-img-placeholder span { position: relative; z-index: 2; }

.product-body {
  padding: 28px 24px;
  flex: 1;
  display: flex; flex-direction: column;
}
.product-cat-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600;
  color: var(--brand-700);
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 14px;
}
.product-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px; font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.product-card p {
  font-size: 13px; color: var(--gray-700);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-more {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--brand-700);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex; justify-content: space-between;
  align-items: center;
  font-weight: 600;
}
.product-more .arrow { transition: transform 0.2s; }
.product-card:hover .product-more .arrow { transform: translateX(4px); }

/* ==================== PRODUCT MODAL ==================== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 19, 48, 0.55);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn 0.2s ease;
}
.modal-overlay.open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: var(--white);
  border: 1px solid var(--border);
  max-width: 900px; width: 100%;
  max-height: 90vh;
  display: flex; flex-direction: column;
  animation: slideUp 0.3s ease;
  position: relative;
  box-shadow: 0 40px 80px rgba(10, 19, 48, 0.25);
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-header {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.modal-header-left { flex: 1; }
.modal-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--brand-700);
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}
.modal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px; font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}
.modal-close {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--gray-700);
  width: 36px; height: 36px;
  cursor: pointer;
  transition: all 0.2s;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.modal-close:hover {
  border-color: var(--brand-700);
  color: var(--brand-700);
}

.modal-body {
  padding: 32px;
  overflow-y: auto;
  flex: 1;
}
.modal-gallery {
  display: grid; gap: 12px; margin-bottom: 28px;
}
.modal-gallery.count-1 { grid-template-columns: 1fr; }
.modal-gallery.count-2 { grid-template-columns: 1fr 1fr; }
.modal-gallery.count-3 { grid-template-columns: repeat(3, 1fr); }
.modal-gallery img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--border);
  background: var(--gray-50);
}

.modal-content-text {
  font-size: 14px; line-height: 1.85;
  color: var(--gray-700);
  white-space: pre-wrap;
  word-break: keep-all;
}
.modal-content-text strong { color: var(--ink-900); }

.modal-footer {
  padding: 20px 32px;
  border-top: 1px solid var(--border);
  background: var(--gray-50);
  display: flex; justify-content: space-between;
  align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.modal-footer-text {
  font-size: 13px; color: var(--gray-700);
}

/* ==================== COMPANY PAGE (tabs) ==================== */
.tabs-bar {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
  gap: 0;
}
.tab-btn {
  padding: 20px 32px;
  background: transparent;
  border: none;
  color: var(--gray-500);
  font-size: 14px; font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.03em;
  position: relative;
  font-family: inherit;
}
.tab-btn:hover { color: var(--ink-900); }
.tab-btn.active { color: var(--brand-700); }
.tab-btn.active::after {
  content: ''; position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px; background: var(--brand-700);
}
.tab-btn .tab-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--gray-400);
  margin-right: 10px;
}

.tab-panel { display: none; animation: fadeIn 0.3s ease; }
.tab-panel.active { display: block; }

.tab-grid {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 80px;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: ''; position: absolute;
  left: 6px; top: 0; bottom: 0;
  width: 1px; background: var(--border-strong);
}
.timeline-item {
  position: relative;
  padding-bottom: 40px;
}
.timeline-item::before {
  content: ''; position: absolute;
  left: -40px; top: 6px;
  width: 13px; height: 13px;
  background: var(--white);
  border: 2px solid var(--brand-700);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--white),
              0 0 12px rgba(30, 71, 197, 0.2);
}
.timeline-year {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px; font-weight: 500;
  color: var(--brand-700);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1;
}
.timeline-events { list-style: none; }
.timeline-events li {
  padding: 6px 0 6px 20px;
  position: relative;
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.6;
}
.timeline-events li::before {
  content: '◆'; position: absolute;
  left: 0; color: var(--brand-700);
  font-size: 8px; top: 13px;
}

/* Recruit */
.recruit-list {
  list-style: none;
  padding: 24px 0;
}
.recruit-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--gray-700);
  font-size: 14px;
  display: flex; gap: 16px;
  align-items: flex-start;
}
.recruit-list li .mono-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--brand-700);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  padding-top: 2px;
  font-weight: 600;
}

/* ==================== SERVICE PAGE ==================== */
.service-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 3px; height: 100%;
  background: var(--brand-700);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.4s ease;
}
.service-card:hover {
  border-color: var(--brand-700);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(30, 71, 197, 0.12);
}
.service-card:hover::before { transform: scaleY(1); }
.service-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--gray-400);
  letter-spacing: 0.2em; margin-bottom: 24px;
}
.service-icon {
  width: 56px; height: 56px;
  background: var(--brand-50);
  display: grid; place-items: center;
  margin-bottom: 28px;
}
.service-icon svg {
  width: 26px; height: 26px;
  stroke: var(--brand-700); fill: none; stroke-width: 1.5;
}
.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 13px; color: var(--gray-700);
  line-height: 1.75;
}

.office-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}
.office-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 36px;
  position: relative;
}
.office-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--brand-700);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  padding: 5px 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.office-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px; font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.office-info p {
  color: var(--gray-700); font-size: 14px;
  line-height: 1.8;
  padding: 8px 0;
  display: flex; gap: 16px;
}
.office-info .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--gray-500);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  min-width: 80px;
  padding-top: 2px;
}

/* ==================== CONTACT PAGE ==================== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info .contact-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info .contact-item:first-of-type { padding-top: 0; }
.contact-info .contact-item:last-of-type { border-bottom: none; }
.contact-info .item-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--gray-500);
  letter-spacing: 0.25em; text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-info .item-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.contact-info .item-value a {
  color: var(--ink-900); transition: color 0.2s;
}
.contact-info .item-value a:hover { color: var(--brand-700); }
.contact-info .item-small {
  font-size: 13px; color: var(--gray-500);
  margin-top: 6px;
}

.form-card {
  background: var(--gray-50);
  border: 1px solid var(--border);
  padding: 48px 40px;
}
.form-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px; font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.form-card .form-desc {
  font-size: 14px; color: var(--gray-500);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row.full { grid-template-columns: 1fr; }
.form-group label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--gray-500);
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.form-group label .req { color: var(--brand-700); margin-left: 4px; }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border-strong);
  color: var(--ink-900);
  font-family: inherit;
  font-size: 14px;
  transition: all 0.2s;
}
.form-textarea { resize: vertical; min-height: 140px; font-family: inherit; }
.form-select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236A7490' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--brand-700);
  box-shadow: 0 0 0 2px rgba(30, 71, 197, 0.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-400); }

.form-check {
  display: flex; gap: 10px; align-items: flex-start;
  margin: 20px 0 28px;
  font-size: 13px; color: var(--gray-700);
  line-height: 1.6;
}
.form-check input { margin-top: 4px; accent-color: var(--brand-700); }
.form-check small { display: block; color: var(--gray-500); margin-top: 4px; font-size: 11px; }

.form-status {
  margin-left: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--brand-700);
}

.map-section {
  background: var(--gray-50);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 48px;
}
.map-box {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  height: 520px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(10, 19, 48, 0.06);
}
.map-iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(0.92);
}
.map-card {
  position: absolute;
  top: 32px;
  left: 32px;
  width: 360px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(10, 19, 48, 0.18);
  padding: 32px 28px;
  z-index: 2;
}
.map-card-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--brand-700);
  letter-spacing: 0.25em; text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}
.map-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 24px;
}
.map-card-body {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-bottom: 24px;
}
.map-card-row {
  display: flex; gap: 14px;
  font-size: 13px; color: var(--gray-700);
  line-height: 1.6;
  padding: 8px 0;
}
.map-card-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--gray-500);
  letter-spacing: 0.15em; text-transform: uppercase;
  min-width: 64px;
  padding-top: 3px;
  flex-shrink: 0;
}
.map-card .map-links {
  display: flex; gap: 6px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.btn-outline-sm {
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .map-box { height: auto; display: flex; flex-direction: column; }
  .map-iframe { position: relative; inset: auto; height: 360px; }
  .map-card {
    position: relative;
    top: auto; left: auto; width: auto;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--border);
  }
}

/* ==================== REVEAL ANIMATION ==================== */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; max-width: 700px; margin: 0 auto; }
}
@media (max-width: 900px) {
  nav { padding: 14px 24px; }
  nav.scrolled { padding: 10px 24px; }
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 20px 24px; gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(10,19,48,0.08);
  }
  .nav-toggle { display: block; }
  section { padding: 80px 24px; }
  .hero { padding: 120px 24px 80px; }
  .hero.hero-image { padding: 120px 24px 0; }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 24px 0; padding: 32px 0 40px; margin-top: 60px;
  }
  .hero-stat { padding: 0 20px; }
  .hero-stat:nth-child(2n) { border-right: none; }
  .hero-stat-num { font-size: 32px; }
  .why-section { padding: 80px 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .coverage { padding: 60px 24px; }
  .coverage-grid { grid-template-columns: 1fr; gap: 32px; }
  .coverage-divider { width: 60px; height: 1px; margin: 0 auto; }
  .page-header { padding: 140px 24px 80px; }
  .partners { padding: 40px 24px; }
  .partners-inner { grid-template-columns: 1fr; gap: 20px; }
  .partners-list { gap: 20px; justify-content: flex-start; }
  .cats-header { grid-template-columns: 1fr; gap: 32px; }
  .cats-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .office-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .tab-grid { grid-template-columns: 1fr; gap: 40px; }
  .philo-grid { grid-template-columns: 1fr; }
  .products-section { padding: 60px 24px 80px; }
  .cta-section { padding: 80px 24px; }
  footer { padding: 60px 24px 30px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .map-section { padding: 60px 24px; }
  .tabs-bar { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .tab-btn { padding: 16px 20px; flex-shrink: 0; font-size: 13px; }
  .form-card { padding: 32px 24px; }
  .modal-header { padding: 24px; }
  .modal-body { padding: 24px; }
  .modal-footer { padding: 16px 24px; }
  .modal-gallery.count-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .service-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-img { aspect-ratio: 16 / 10; }
  .product-body { padding: 22px 20px; }
  .product-card h3 { font-size: 17px; }
  .modal-gallery.count-2, .modal-gallery.count-3 { grid-template-columns: 1fr; }
}

/* ============================================================ */
/* Contact CTA Card (폼 대체 - 이메일/전화 안내)                 */
/* ============================================================ */
.contact-cta-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-cta-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--ink-900, #0A1330);
  margin: 0;
}

.contact-cta-card .form-desc {
  color: var(--gray-700, #404964);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.cta-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-option-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  background: var(--gray-50, #F9FAFC);
  border: 1px solid var(--border, #E5E8F0);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.cta-option-card:hover {
  background: #fff;
  border-color: var(--brand-700, #1E47C5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 71, 197, 0.08);
}

.cta-option-card .cta-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white, #fff);
  border: 1px solid var(--border, #E5E8F0);
  border-radius: 10px;
  color: var(--brand-700, #1E47C5);
}

.cta-option-card .cta-content {
  flex: 1;
}

.cta-option-card .cta-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gray-500, #6A7490);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cta-option-card .cta-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-900, #0A1330);
  margin-bottom: 2px;
}

.cta-option-card .cta-title.mono {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
}

.cta-option-card .cta-sub {
  font-size: 13px;
  color: var(--gray-500, #6A7490);
}

.cta-note {
  margin-top: 8px;
  padding: 18px 20px;
  background: rgba(30, 71, 197, 0.04);
  border-left: 3px solid var(--brand-700, #1E47C5);
  border-radius: 6px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--gray-700, #404964);
}

.cta-note strong {
  color: var(--ink-900, #0A1330);
  font-weight: 600;
}

@media (max-width: 600px) {
  .cta-option-card {
    padding: 18px 18px;
    gap: 16px;
  }
  .cta-option-card .cta-icon {
    width: 48px;
    height: 48px;
  }
  .cta-option-card .cta-title {
    font-size: 15px;
  }
}

/* ============================================================
   NEWS — Index Section + List Page + Detail Page
   ============================================================ */

/* ---------- Index Page: News Section ---------- */
.news-section {
  padding: 120px 0 100px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.news-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: end;
}
.news-header-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.news-all-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-500);
  padding: 10px 0;
  border-bottom: 1px solid var(--accent-500);
  transition: gap 0.25s ease;
}
.news-all-link:hover { gap: 14px; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.news-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(10, 19, 48, 0.08);
  border-color: var(--border-strong);
}
.news-card-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-100);
}
.news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.news-card:hover .news-card-thumb img {
  transform: scale(1.04);
}
.news-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.news-card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent-500);
  font-weight: 600;
}
.news-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--brand-100);
  color: var(--accent-500);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2px;
  text-transform: uppercase;
}
.news-card-date {
  font-size: 11.5px;
  color: var(--gray-500);
  margin-left: auto;
}
.news-card-title {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink-900);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.news-card-summary {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-700);
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-arrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-500);
  letter-spacing: 0.02em;
}

/* ---------- News List Page: Page Head ---------- */
.page-head {
  padding: 180px 0 70px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
}
.page-head-inner {
  max-width: 880px;
}
.page-title {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin-top: 24px;
}
.page-title .accent { color: var(--accent-500); }
.page-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-top: 28px;
  max-width: 640px;
}
.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  font-size: 13px;
  color: var(--gray-500);
}

/* ---------- News List Page: List ---------- */
.news-list-section {
  padding: 80px 0 120px;
  background: var(--white);
}
.news-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.news-list-row {
  display: grid;
  grid-template-columns: 80px 200px 1fr 40px;
  gap: 32px;
  padding: 32px 8px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background 0.25s ease, padding 0.25s ease;
}
.news-list-row:hover {
  background: var(--gray-50);
  padding-left: 20px;
  padding-right: 20px;
}
.news-list-num {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
}
.news-list-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-100);
  border-radius: 3px;
}
.news-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.news-list-row:hover .news-list-thumb img {
  transform: scale(1.05);
}
.news-list-content {
  min-width: 0;
}
.news-list-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.news-list-date {
  font-size: 11.5px;
  color: var(--gray-500);
}
.news-list-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink-900);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.news-list-summary {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-700);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-list-arrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  color: var(--gray-400);
  text-align: right;
  transition: color 0.25s ease, transform 0.25s ease;
}
.news-list-row:hover .news-list-arrow {
  color: var(--accent-500);
  transform: translateX(6px);
}

/* ---------- News Detail Page ---------- */
.news-detail {
  padding: 80px 0 100px;
  background: var(--white);
}
.news-detail-hero {
  max-width: 960px;
  margin: 0 auto 60px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  background: var(--gray-100);
}
.news-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-detail-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--ink-800);
}
.news-detail-body p {
  margin-bottom: 24px;
}
.news-detail-body h2 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin: 48px 0 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.news-detail-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.news-detail-body ul {
  margin: 0 0 28px;
  padding-left: 0;
  list-style: none;
}
.news-detail-body ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--ink-800);
}
.news-detail-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 12px;
  height: 1px;
  background: var(--accent-500);
}
.news-detail-body blockquote {
  margin: 36px 0;
  padding: 24px 28px;
  background: var(--brand-50);
  border-left: 3px solid var(--accent-500);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-800);
  font-style: italic;
  border-radius: 0 4px 4px 0;
}

/* ---------- News Detail: Prev/Next Nav ---------- */
.news-detail-nav {
  max-width: 960px;
  margin: 80px auto 0;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}
.news-nav-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.news-nav-link.next { text-align: right; align-items: flex-end; }
.news-nav-link:not(.disabled):hover {
  border-color: var(--accent-500);
  background: var(--brand-50);
}
.news-nav-link.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.news-nav-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.news-nav-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-900);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-nav-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-700);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.25s ease;
}
.news-nav-all:hover {
  color: var(--accent-500);
  border-color: var(--accent-500);
  background: var(--brand-50);
}

/* ---------- Not Found ---------- */
.news-notfound {
  padding: 120px 0 140px;
  background: var(--white);
}
.news-notfound-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.news-notfound-inner h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.news-notfound-inner p {
  font-size: 15px;
  color: var(--gray-700);
  margin-bottom: 32px;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .news-section { padding: 80px 0 70px; }
  .news-header {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .page-title { font-size: 38px; }
  .page-head { padding: 140px 0 50px; }
  .news-list-row {
    grid-template-columns: 140px 1fr;
    gap: 20px;
    padding: 24px 8px;
  }
  .news-list-num { display: none; }
  .news-list-arrow { display: none; }
  .news-list-title { font-size: 17px; }
  .news-detail-body { font-size: 15.5px; }
  .news-detail-body h2 { font-size: 20px; }
  .news-detail-nav {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }
  .news-nav-all {
    order: -1;
    padding: 14px 24px;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .news-list-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .news-list-thumb { max-width: 100%; }
  .page-title { font-size: 32px; }
}



/* ============================================================
   PRODUCT CARD — Brand Logo (in .product-more footer)
   ============================================================ */

/* .product-more를 3-column 정렬로 재정의:
   View Details  ←──→  arrow  ←──→  Brand Logo
   ──────────────────────────────────────────── */
.product-more {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* "View Details" 텍스트는 그대로 왼쪽 */
.product-more > span:not(.arrow):not(.card-brand) {
  flex: 0 0 auto;
}

/* 화살표는 텍스트 바로 옆 */
.product-more .arrow {
  flex: 0 0 auto;
  margin-right: auto;  /* 이후 요소(브랜드 로고)를 오른쪽 끝으로 밀어냄 */
}

/* 브랜드 로고 링크 박스 */
.card-brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  min-height: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
  z-index: 2;
  line-height: 0;
}

.card-brand:hover {
  border-color: var(--brand-700);
  background: var(--gray-50);
  transform: translateY(-1px);
}

.card-brand-logo {
  width: auto;
  height: auto;
  max-height: 38px;
  max-width: 150px;
  display: block;
  object-fit: contain;
}

/* 모바일 */
@media (max-width: 640px) {
  .card-brand {
    padding: 6px 10px;
    min-height: 42px;
  }
  .card-brand-logo {
    max-height: 32px;
    max-width: 130px;
  }
}
