/* ============================================================
   BOANZON — Design System
   Light editorial-tech · Pretendard · Electric blue accent
   ============================================================ */

:root {
  /* Color tokens */
  --paper: #F6F5F1;
  --paper-2: #EFEEE8;
  --card: #FFFFFF;
  --ink: #101114;
  --ink-70: rgba(16, 17, 20, 0.7);
  --ink-50: rgba(16, 17, 20, 0.5);
  --ink-60: rgba(16, 17, 20, 0.62);
  --ink-30: rgba(16, 17, 20, 0.3);
  --ink-12: rgba(16, 17, 20, 0.12);
  --ink-08: rgba(16, 17, 20, 0.08);
  --accent: #2B3CF0;
  --accent-deep: #1E2BB8;
  --accent-soft: #E8EAFE;
  --brand: #2B3CF0; /* 로고 등 테마와 무관하게 고정되는 브랜드 컬러 */
  --accent-glow: rgba(43, 60, 240, 0.28);
  --accent-glow-strong: rgba(43, 60, 240, 0.35);
  --ring: rgba(43, 60, 240, 0.14);
  --live: #17C964;
  --warn: #FF4D2E;

  /* Type */
  --font-sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", "Malgun Gothic", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", "Cascadia Mono", Consolas, monospace;

  /* Scale */
  --w-max: 1440px;
  --pad-x: clamp(20px, 4vw, 64px);
  --radius: 20px;
  --radius-lg: 28px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.8s;

  /* Header glass tint — follows page theme */
  --glass: rgba(246, 245, 241, 0.82);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  word-break: keep-all;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--accent); color: #fff; }

/* ---------- Utilities ---------- */
.wrap { max-width: var(--w-max); margin-inline: auto; padding-inline: var(--pad-x); }
.mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Section shell */
.section { padding-block: clamp(80px, 10vw, 150px); position: relative; }
.section[id], [id] { scroll-margin-top: 132px; }
.section-head { margin-bottom: clamp(40px, 6vw, 80px); }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink-60); margin-bottom: 24px;
}
.section-label::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.section-title {
  font-size: clamp(2.2rem, 5.2vw, 4.6rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.035em;
}
.section-title .thin { font-weight: 300; color: var(--ink-50); }
.section-title .accent { color: var(--accent); }
.section-desc {
  margin-top: 24px; font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--ink-70); max-width: 620px; line-height: 1.75;
}

/* Reveal animation (JS adds .in)
   JS가 꺼져 있거나 아직 실행되지 않았을 때 콘텐츠가 사라지지 않도록,
   .js 클래스(head 인라인 스크립트가 부여)가 있을 때만 숨긴다. */
.js .reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.js .reveal.in { opacity: 1; transform: none; }

/* 첫 화면(LCP 대상)은 애니메이션 대상에서 제외 — 즉시 렌더 */
.js .hero h1.reveal,
.js .hero .hero-sub.reveal,
.js .page-hero h1.reveal,
.js .page-hero .hero-sub.reveal,
.js .page-hero .breadcrumb.reveal {
  opacity: 1; transform: none; transition: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .marquee-track, .ticker-track { animation: none !important; }
  .ticker, .marquee { overflow-x: auto; }
  .ticker-track[aria-hidden], .marquee-track[aria-hidden] { display: none; }
  .soc-live .dot, .hero-eyebrow .dot { animation: none !important; }
  .theme-services .stat-callout .big::after { animation: none !important; }
}

/* Skip link */
.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 300;
  background: var(--ink); color: #fff;
  padding: 12px 20px; border-radius: 10px; font-weight: 600; font-size: 0.9rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px;
  font-weight: 600; font-size: 0.98rem; letter-spacing: -0.01em;
  transition: transform 0.35s var(--ease-out), background 0.3s, color 0.3s, box-shadow 0.35s;
  will-change: transform;
}
.btn svg { transition: transform 0.35s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--accent); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px var(--accent-glow); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 14px 30px var(--accent-glow-strong); }
.btn-ghost { border: 1px solid var(--ink-12); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.15); }
.btn-outline-light { border: 1px solid rgba(255,255,255,0.4); color: #fff; }
.btn-outline-light:hover { border-color: #fff; transform: translateY(-2px); }
@media (max-width: 420px) {
  .btn { padding: 14px 22px; font-size: 0.9rem; }
}

/* ============================================================
   Header
   ============================================================ */
.header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  transition: transform 0.45s var(--ease-out), box-shadow 0.3s;
}
/* blur lives on a pseudo-element: backdrop-filter on .header itself would
   turn it into the containing block for the fixed-position mobile nav */
.header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--glass);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.header.scrolled { box-shadow: 0 1px 0 var(--ink-08); }
.header.hidden { transform: translateY(-100%); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 32px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.02em; font-size: 1.25rem; }
.logo .logo-mark { color: var(--brand); }
.logo .logo-kr { font-size: 0.78rem; font-weight: 500; color: var(--ink-50); letter-spacing: 0.02em; }
.logo img { height: 38px; width: auto; display: block; }
.footer .logo img { height: 46px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 10px 16px; border-radius: 999px; font-size: 0.95rem; font-weight: 500;
  color: var(--ink-70); transition: color 0.25s, background 0.25s;
}
.nav a:hover { color: var(--ink); background: var(--ink-08); }
.nav a.active { color: var(--ink); font-weight: 700; }

.header-cta { display: flex; align-items: center; gap: 16px; }
.soc-live {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em;
  color: var(--ink-60);
}
.soc-live .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--live);
  box-shadow: 0 0 0 0 rgba(23, 201, 100, 0.5);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(23, 201, 100, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(23, 201, 100, 0); }
  100% { box-shadow: 0 0 0 0 rgba(23, 201, 100, 0); }
}
.header .btn { padding: 11px 22px; font-size: 0.9rem; }

/* Mobile nav */
.nav-toggle { display: none; width: 44px; height: 44px; position: relative; z-index: 110; }
.nav-toggle span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: var(--ink);
  transition: transform 0.35s var(--ease-out), opacity 0.25s, top 0.35s var(--ease-out);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-open .nav-toggle span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

@media (max-width: 1120px) {
  .nav {
    position: fixed; inset: 0; z-index: 105;
    flex-direction: column; justify-content: center; gap: 8px;
    background: var(--paper);
    opacity: 0; pointer-events: none; visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
  }
  .nav a { font-size: 1.6rem; font-weight: 700; padding: 12px 24px; }
  .nav-open .nav { opacity: 1; pointer-events: auto; visibility: visible; }
  .nav-toggle { display: block; }
  .header-cta .btn, .soc-live { display: none; }
}

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,0.85); overflow: hidden; }
.footer a { transition: color 0.25s; }
.footer a:hover { color: #fff; }
.footer-cta { padding-block: clamp(70px, 9vw, 130px); border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-cta-inner { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 40px; }
.footer-cta h2 {
  font-size: clamp(2.4rem, 5.5vw, 5rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.035em; color: #fff;
}
.footer-cta h2 .accent { color: #7C89FF; }
.footer-main {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px; padding-block: 64px;
}
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.92rem; margin-top: 18px; max-width: 320px; }
.footer-col h3 { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.footer-col li { margin-bottom: 12px; font-size: 0.95rem; color: rgba(255,255,255,0.7); }
.footer-meta {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-block: 28px; display: flex; flex-wrap: wrap; gap: 12px 32px;
  justify-content: space-between; font-size: 0.82rem; color: rgba(255,255,255,0.6);
}
.footer-wordmark {
  font-weight: 900; letter-spacing: -0.04em; line-height: 0.9;
  font-size: clamp(4rem, 14vw, 15rem); color: rgba(255,255,255,0.06);
  text-align: center; user-select: none; padding-bottom: 20px;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding-top: clamp(140px, 18vh, 200px);
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--ink-08) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink-08) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 30%, transparent 75%);
  opacity: 0.55;
}
.hero-eyebrow {
  display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px 12px;
  padding: 9px 18px; border-radius: 999px;
  border: 1px solid var(--ink-12); background: rgba(255,255,255,0.6);
  font-size: 0.85rem; font-weight: 600; color: var(--ink-70);
  margin-bottom: 36px;
}
.hero-eyebrow a { white-space: nowrap; }
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--live); animation: pulse 2.2s infinite; }
.hero h1 {
  font-size: clamp(2.8rem, 7.2vw, 6.4rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.04em;
  max-width: 1100px;
}
.hero h1 .accent { color: var(--accent); }
.hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}
.hero-sub {
  margin-top: 32px; font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: var(--ink-70); max-width: 560px; line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 44px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: clamp(60px, 8vw, 100px);
  padding-top: 40px; border-top: 1px solid var(--ink-12);
}
.hero-stat .num {
  font-size: clamp(2rem, 3.6vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em;
  display: flex; align-items: baseline; gap: 4px;
}
.hero-stat .num .unit { font-size: 0.5em; font-weight: 700; color: var(--accent); }
.hero-stat .label { margin-top: 6px; font-size: 0.88rem; color: var(--ink-60); }
@media (max-width: 760px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
}

/* ---------- Threat ticker ---------- */
.ticker {
  border-block: 1px solid var(--ink-12);
  background: var(--card);
  overflow: hidden; white-space: nowrap;
  padding-block: 14px;
  display: flex;
}
.ticker:hover .ticker-track, .ticker:focus-within .ticker-track,
.marquee:hover .marquee-track, .marquee:focus-within .marquee-track {
  animation-play-state: paused;
}
.ticker-track {
  display: inline-flex; align-items: center; gap: 48px;
  padding-right: 48px;
  animation: marquee 36s linear infinite;
  flex-shrink: 0; min-width: 100%;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.08em;
  color: var(--ink-70);
}
.ticker-item strong { color: var(--accent); font-weight: 600; }
.ticker-item::before { content: "◆"; font-size: 0.55rem; color: var(--ink-30); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* ============================================================
   Bento — services
   ============================================================ */
.bento {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.bento-card {
  position: relative; overflow: hidden;
  background: var(--card); border-radius: var(--radius-lg);
  border: 1px solid var(--ink-08);
  padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column; gap: 18px;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.3s;
  min-height: 320px;
}
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(16,17,20,0.09);
  border-color: transparent;
}
.bento-card.span-7 { grid-column: span 7; }
.bento-card.span-5 { grid-column: span 5; }
.bento-card.span-6 { grid-column: span 6; }
.bento-card.span-4 { grid-column: span 4; }
.bento-card.span-8 { grid-column: span 8; }
.bento-card.span-12 { grid-column: span 12; min-height: auto; }
.bento-num {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em;
  color: var(--ink-60);
}
.bento-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
}
.bento-card h3 { font-size: clamp(1.35rem, 1.8vw, 1.7rem); font-weight: 800; letter-spacing: -0.02em; }
.bento-card p { color: var(--ink-70); font-size: 0.98rem; line-height: 1.7; max-width: 480px; }
.bento-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.bento-tags span {
  font-size: 0.78rem; font-weight: 600; color: var(--ink-60);
  border: 1px solid var(--ink-12); border-radius: 999px; padding: 6px 14px;
  background: rgba(255,255,255,0.5);
}
.bento-arrow {
  position: absolute; top: 28px; right: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--ink-12); display: grid; place-items: center;
  transition: background 0.3s, color 0.3s, transform 0.4s var(--ease-out), border-color 0.3s;
}
.bento-card.dark { background: var(--ink); border-color: transparent; color: var(--paper); }
.bento-card.dark p { color: rgba(246, 245, 241, 0.72); }
.bento-card.dark .bento-num { color: rgba(246, 245, 241, 0.55); }
.bento-card.dark .bento-icon { background: rgba(124, 137, 255, 0.16); color: #A7B1FF; }
.bento-card.dark .bento-tags span { border-color: rgba(255,255,255,0.25); color: rgba(246,245,241,0.75); background: transparent; }
.bento-card.dark .bento-arrow { border-color: rgba(255,255,255,0.25); color: #fff; }
.bento-card:hover .bento-arrow {
  background: var(--accent); color: #fff; border-color: var(--accent);
  transform: rotate(45deg);
}
@media (max-width: 900px) {
  .bento-card[class*="span-"] { grid-column: span 12; min-height: auto; }
}

/* ============================================================
   Services — 3-column colored cards (index)
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  --p: var(--accent); --p-soft: var(--accent-soft);
  position: relative; display: flex; flex-direction: column; gap: 14px;
  background: var(--card); border: 1px solid var(--ink-08);
  border-top: 4px solid var(--p);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: clamp(26px, 2.8vw, 40px);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(16, 17, 20, 0.09); }
.svc-card .svc-num { color: var(--ink-60); font-size: 0.7rem; letter-spacing: 0.14em; }
.svc-card .sol-badge { color: var(--p); background: var(--p-soft); align-self: flex-start; }
.svc-card h3 { font-size: clamp(1.4rem, 1.9vw, 1.75rem); font-weight: 800; letter-spacing: -0.02em; }
.svc-card .svc-tag { color: var(--ink-70); font-size: 0.95rem; line-height: 1.6; }
.svc-card .sol-features { margin-top: auto; padding-top: 10px; }
.svc-card .sol-features li svg { color: var(--p); }
.svc-card .bento-arrow { position: absolute; top: 24px; right: 24px; }
.svc-card:hover .bento-arrow {
  background: var(--p); border-color: var(--p); color: #fff;
  transform: rotate(45deg);
}
@media (max-width: 960px) { .svc-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Solutions — product rail cards
   ============================================================ */
.solutions-band { background: var(--paper-2); }
.sol-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.sol-card {
  background: var(--card); border-radius: var(--radius-lg);
  border: 1px solid var(--ink-08);
  padding: clamp(28px, 3vw, 44px);
  position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.sol-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(16,17,20,0.09); }
.sol-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.sol-badge {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em;
  color: var(--accent); background: var(--accent-soft);
  border-radius: 999px; padding: 7px 14px; font-weight: 600;
}
.sol-card h3 { font-size: clamp(1.5rem, 2vw, 1.9rem); font-weight: 800; letter-spacing: -0.02em; }
.sol-card .sol-tagline { color: var(--ink-60); font-size: 0.92rem; margin-top: 6px; margin-bottom: 20px; }
.sol-card p.desc { color: var(--ink-70); line-height: 1.75; font-size: 0.98rem; }
.sol-features { margin-top: 24px; display: grid; gap: 10px; }
.sol-features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.92rem; color: var(--ink-70);
}
.sol-features li svg { flex-shrink: 0; margin-top: 4px; color: var(--accent); }
@media (max-width: 860px) { .sol-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Process timeline
   ============================================================ */
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.process-step {
  background: var(--card); border: 1px solid var(--ink-08);
  border-radius: var(--radius); padding: 32px 26px;
  position: relative;
}
.process-step .p-num {
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--accent);
  letter-spacing: 0.14em; margin-bottom: 40px; display: block;
}
.process-step h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.01em; }
.process-step p { font-size: 0.9rem; color: var(--ink-70); line-height: 1.65; }
@media (max-width: 900px) { .process-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-list { grid-template-columns: 1fr; } }

/* ============================================================
   Logo / client marquee
   ============================================================ */
.marquee { overflow: hidden; display: flex; }
.marquee-track {
  display: inline-flex; align-items: center; gap: clamp(40px, 6vw, 90px);
  padding-right: clamp(40px, 6vw, 90px);
  animation: marquee 30s linear infinite;
  flex-shrink: 0; min-width: 100%;
}
.marquee-item {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem); font-weight: 700;
  color: var(--ink-50); letter-spacing: -0.01em; white-space: nowrap;
  transition: color 0.3s;
}
.marquee-item:hover { color: var(--ink); }

/* ============================================================
   Big statement section
   ============================================================ */
.statement {
  font-size: clamp(1.6rem, 3.6vw, 3.2rem);
  font-weight: 700; line-height: 1.3; letter-spacing: -0.03em;
  max-width: 1080px;
}
.statement .dim { color: var(--ink-50); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: var(--accent); color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(48px, 6vw, 90px);
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.cta-band h2 {
  font-size: clamp(2rem, 4.6vw, 4rem); font-weight: 800;
  letter-spacing: -0.035em; line-height: 1.12; max-width: 720px;
  position: relative; z-index: 1;
}
.cta-band p { margin-top: 20px; color: rgba(255,255,255,0.8); max-width: 520px; position: relative; z-index: 1; }
.cta-band .hero-actions { position: relative; z-index: 1; }

/* ============================================================
   Threat stats
   ============================================================ */
.threat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.threat-card {
  background: var(--card); border: 1px solid var(--ink-08);
  border-radius: var(--radius-lg); padding: clamp(26px, 2.6vw, 38px);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.threat-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(16,17,20,0.09); }
.t-num {
  font-size: clamp(2.6rem, 4vw, 3.8rem); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1; color: var(--accent);
  display: flex; align-items: baseline; gap: 2px;
  font-variant-numeric: tabular-nums;
}
.t-unit { font-size: 0.45em; font-weight: 700; }
.t-title { font-weight: 700; font-size: 1.02rem; letter-spacing: -0.01em; margin-top: 8px; }
.t-desc { font-size: 0.9rem; color: var(--ink-70); line-height: 1.65; }
.t-src { color: var(--ink-60); margin-top: auto; padding-top: 12px; }
@media (max-width: 1024px) { .threat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .threat-grid { grid-template-columns: 1fr; } }

/* ---------- Zone naming strip ---------- */
.zone-naming {
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: 14px;
  padding: 18px 26px; border: 1px dashed var(--ink-30); border-radius: 16px;
  background: rgba(255,255,255,0.55);
  font-size: 0.78rem; letter-spacing: 0.1em; color: var(--ink-70);
}
.zone-naming .plus { color: var(--accent); font-weight: 600; }
.zone-naming em {
  display: block; font-style: normal; color: var(--ink-60);
  font-size: 0.85em; margin-top: 2px; letter-spacing: 0.06em;
}

/* ---------- Suite highlight card ---------- */
.suite-card {
  margin-top: 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  background: var(--ink); color: var(--paper);
  border-radius: var(--radius-lg); padding: clamp(30px, 3.4vw, 48px);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.suite-card:hover { transform: translateY(-6px); box-shadow: 0 28px 56px rgba(16,17,20,0.25); }
.suite-card h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem); font-weight: 800;
  letter-spacing: -0.02em; margin: 16px 0 12px;
}
.suite-card h3 .thin { font-weight: 400; color: rgba(246,245,241,0.6); }
.suite-card p { color: rgba(246,245,241,0.75); max-width: 640px; line-height: 1.7; font-size: 0.98rem; }
.suite-card .sol-badge { background: rgba(124, 137, 255, 0.18); color: #A7B1FF; }
.suite-card .btn { flex-shrink: 0; background: var(--paper); color: var(--ink); }
.suite-card:hover .btn { background: var(--accent); color: #fff; }
@media (max-width: 760px) { .suite-card { flex-direction: column; align-items: flex-start; } }

/* ---------- Process outputs ---------- */
.p-out {
  margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--ink-12);
  color: var(--accent) !important; font-size: 0.68rem !important;
}

/* ============================================================
   Page hero (subpages)
   ============================================================ */
.page-hero {
  padding-top: clamp(140px, 16vh, 190px);
  padding-bottom: clamp(40px, 6vw, 80px);
  position: relative; overflow: hidden;
}
.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.06;
}
.page-hero .breadcrumb {
  display: flex; gap: 8px; align-items: center;
  margin-bottom: 28px; color: var(--ink-60); font-size: 0.85rem;
}
.page-hero .breadcrumb a:hover { color: var(--ink); }
.page-hero .hero-sub { margin-top: 28px; }

/* ============================================================
   Subpage components
   ============================================================ */

/* Sticky anchor subnav */
.subnav {
  position: sticky; top: 72px; z-index: 50;
  background: var(--glass);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-block: 1px solid var(--ink-08);
}
.subnav-inner { display: flex; gap: 4px; overflow-x: auto; padding-block: 10px; scrollbar-width: none; }
.subnav-inner::-webkit-scrollbar { display: none; }
.subnav a {
  padding: 9px 18px; border-radius: 999px; white-space: nowrap;
  font-size: 0.88rem; font-weight: 600; color: var(--ink-60);
  transition: color 0.25s, background 0.25s;
}
.subnav a:hover { color: var(--ink); background: var(--ink-08); }
.subnav a.current { color: #fff; background: var(--ink); }

/* Detail section: sticky left title + right content */
.detail { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 5vw, 80px); }
.detail-left { position: relative; }
.detail-left-sticky { position: sticky; top: 140px; }
.detail-left .mono-label { color: var(--accent); margin-bottom: 20px; display: block; }
.detail-left h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 20px;
}
.detail-left .pain {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem); font-weight: 600;
  color: var(--ink-70); line-height: 1.6; letter-spacing: -0.01em;
}
.detail-right { display: flex; flex-direction: column; gap: 28px; }
@media (max-width: 900px) {
  .detail { grid-template-columns: 1fr; }
  .detail-left-sticky { position: static; }
}

/* Stat callout */
.stat-callout {
  background: var(--accent-soft); border-radius: var(--radius);
  padding: 26px 30px; border-left: 4px solid var(--accent);
}
.stat-callout .big { font-size: clamp(1.8rem, 2.6vw, 2.4rem); font-weight: 800; letter-spacing: -0.03em; color: var(--accent); line-height: 1.15; }
.stat-callout p { color: var(--ink-70); font-size: 0.95rem; margin-top: 8px; line-height: 1.65; }
.stat-callout .src { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; color: var(--ink-60); margin-top: 12px; text-transform: uppercase; }

/* Feature blocks (제공 항목) */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.feature-item {
  background: var(--card); border: 1px solid var(--ink-08); border-radius: var(--radius);
  padding: 24px;
}
.feature-item .f-num { font-family: var(--font-mono); font-size: 0.68rem; color: var(--accent); letter-spacing: 0.12em; display: block; margin-bottom: 14px; }
.feature-item h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.feature-item p { font-size: 0.88rem; color: var(--ink-70); line-height: 1.6; }
@media (max-width: 620px) { .feature-grid { grid-template-columns: 1fr; } }

/* Checklist (이런 상황이라면) */
.check-panel {
  background: var(--card); border: 1px solid var(--ink-08);
  border-radius: var(--radius); padding: 28px 30px;
}
.check-panel h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 18px; color: var(--ink-70); }
.check-panel li {
  display: flex; gap: 12px; align-items: flex-start;
  padding-block: 10px; font-size: 0.95rem; color: var(--ink-70);
  border-top: 1px dashed var(--ink-12);
}
.check-panel li:first-of-type { border-top: 0; }
.check-panel li svg { flex-shrink: 0; margin-top: 5px; color: var(--accent); }

/* Diff strip (차별화 역량) */
.diff-list { display: grid; gap: 12px; }
.diff-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--ink-08);
  border-radius: 16px; padding: 20px 24px;
}
.diff-item .d-num {
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--accent);
  letter-spacing: 0.1em; padding-top: 4px; flex-shrink: 0;
}
.diff-item h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 4px; }
.diff-item p { font-size: 0.88rem; color: var(--ink-70); line-height: 1.6; }

/* Fact table (회사 정보) */
.fact-table { width: 100%; border-collapse: collapse; }
.fact-table th, .fact-table td {
  text-align: left; padding: 18px 8px; border-bottom: 1px solid var(--ink-12);
  vertical-align: top; font-size: 0.98rem;
}
.fact-table th { width: 180px; color: var(--ink-60); font-weight: 600; font-size: 0.88rem; }
@media (max-width: 560px) { .fact-table th { width: 110px; } }

/* Mission / Vision blocks */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mv-block {
  border-radius: var(--radius-lg); padding: clamp(30px, 3.4vw, 48px);
  background: var(--card); border: 1px solid var(--ink-08);
  min-height: 300px; display: flex; flex-direction: column;
}
.mv-block.inverse { background: var(--ink); color: var(--paper); border-color: transparent; }
.mv-block .mono { color: var(--accent); margin-bottom: auto; }
.mv-block.inverse .mono { color: #A7B1FF; }
.mv-block h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 800; letter-spacing: -0.02em; margin: 40px 0 14px; line-height: 1.3; }
.mv-block p { color: var(--ink-70); line-height: 1.75; font-size: 0.98rem; }
.mv-block.inverse p { color: rgba(246,245,241,0.72); }
@media (max-width: 760px) { .mv-grid { grid-template-columns: 1fr; } .mv-block { min-height: auto; } }

/* Value cards */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card {
  background: var(--card); border: 1px solid var(--ink-08);
  border-radius: var(--radius-lg); padding: clamp(28px, 3vw, 40px);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(16,17,20,0.09); }
.value-card .v-num { font-family: var(--font-mono); font-size: 0.72rem; color: var(--accent); letter-spacing: 0.12em; }
.value-card h3 { font-size: 1.3rem; font-weight: 800; margin: 36px 0 14px; letter-spacing: -0.02em; }
.value-card li {
  font-size: 0.92rem; color: var(--ink-70); line-height: 1.65;
  padding-block: 8px; border-top: 1px dashed var(--ink-12);
}
.value-card li:first-child { border-top: 0; }
@media (max-width: 860px) { .value-grid { grid-template-columns: 1fr; } }

/* Spec sheet (솔루션 상세) */
.spec-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 16px; margin-bottom: 28px; }
.spec-head h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; }
.spec-head .tagline { color: var(--ink-50); font-size: 1.02rem; }
.spec-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.spec-col {
  background: var(--card); border: 1px solid var(--ink-08);
  border-radius: var(--radius); padding: 26px;
}
.spec-col h3 {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-60); margin-bottom: 18px;
  padding-bottom: 12px; border-bottom: 1px solid var(--ink-08);
}
.spec-col li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.9rem; color: var(--ink-70); line-height: 1.55;
  padding-block: 7px;
}
.spec-col li svg { flex-shrink: 0; margin-top: 4px; color: var(--accent); }
.spec-col li strong { color: var(--ink); font-weight: 700; }
@media (max-width: 900px) { .spec-cols { grid-template-columns: 1fr; } }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(32px, 5vw, 72px); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.form-card {
  background: var(--card); border: 1px solid var(--ink-08);
  border-radius: var(--radius-lg); padding: clamp(28px, 3.4vw, 48px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 8px; }
.form-field label .req { color: var(--warn); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  border: 1px solid var(--ink-12); background: var(--paper);
  font-size: 0.95rem; transition: border-color 0.25s, box-shadow 0.25s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--ring);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--ink-60); margin-top: 14px; line-height: 1.6; }

/* Contact side info */
.info-card {
  background: var(--card); border: 1px solid var(--ink-08);
  border-radius: var(--radius); padding: 28px; margin-bottom: 16px;
}
.info-card h3 { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-60); margin-bottom: 14px; }
.info-card .big-link { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 800; letter-spacing: -0.02em; transition: color 0.25s; }
.info-card .big-link:hover { color: var(--accent); }
.info-card p { color: var(--ink-70); font-size: 0.92rem; margin-top: 8px; line-height: 1.65; }
.info-card .addr { margin-top: 0; font-size: 1.02rem; font-weight: 600; color: var(--ink); }
.info-card.urgent { background: var(--ink); color: var(--paper); border-color: transparent; }
.info-card.urgent h3 { color: #A7B1FF; }
.info-card.urgent p { color: rgba(246,245,241,0.7); }

/* Messenger buttons (카카오톡·텔레그램) */
.info-card.msgr h3 {
  font-family: var(--font-sans);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 800; letter-spacing: -0.02em;
  text-transform: none; color: var(--ink);
  margin-bottom: 8px;
}
.msgr-row { display: flex; gap: 14px; margin-top: 20px; }
.msgr-btn {
  width: 58px; height: 58px; border: 0; padding: 0;
  display: grid; place-items: center; cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.msgr-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(16, 17, 20, 0.2); }
.msgr-btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.msgr-btn.kakao { background: #FEE500; color: #191919; border-radius: 16px; }
.msgr-btn.telegram {
  background: linear-gradient(180deg, #2AABEE, #229ED9);
  color: #fff; border-radius: 50%;
}

/* Map embed */
.map-embed {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--ink-08); height: 420px; background: var(--paper-2);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.5) contrast(1.02); }

/* ============================================================
   Page themes — 존마다 다른 존
   공통 셸(헤더·푸터·타이포 시스템)은 유지, 페이지별 무드만 교체
   ============================================================ */

/* ---------- Services · SOC 관제실 (teal, scanline, console) ---------- */
.theme-services {
  --accent: #0A7380;
  --accent-deep: #085F6A;
  --accent-soft: #DCEEF0;
  --accent-glow: rgba(10, 115, 128, 0.28);
  --accent-glow-strong: rgba(10, 115, 128, 0.35);
  --ring: rgba(10, 115, 128, 0.14);
  --paper: #F1F5F5;
  --paper-2: #E8EFEF;
  --glass: rgba(241, 245, 245, 0.82);
}
.theme-services .page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(11, 124, 138, 0.04) 0 1px, transparent 1px 5px);
}
.theme-services .page-hero::after {
  content: ""; position: absolute; right: -12%; top: -30%;
  width: 660px; height: 660px; border-radius: 50%; pointer-events: none;
  background: repeating-radial-gradient(circle at center, transparent 0 82px, rgba(11, 124, 138, 0.12) 82px 83px);
}
.theme-services .hero-grid-bg { display: none; }
.theme-services .stat-callout {
  background: #0C1417; border-left-color: #2BD4C2; position: relative; overflow: hidden;
}
.theme-services .stat-callout::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 4px);
}
.theme-services .stat-callout .big {
  color: #3AE0CE; letter-spacing: -0.01em;
  /* 라틴·숫자는 모노, 한글 단위는 Pretendard로 글리프별 폴백 */
  font-family: "IBM Plex Mono", "Pretendard Variable", Pretendard, ui-monospace, monospace;
}
.theme-services .stat-callout .big::after {
  content: "_"; animation: blink 1.2s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.theme-services .stat-callout p { color: rgba(246, 245, 241, 0.75); }
.theme-services .stat-callout .src { color: rgba(246, 245, 241, 0.55); }
.theme-services .detail-left .mono-label::before { content: "● "; color: #17C964; }
.theme-services .check-panel, .theme-services .feature-item, .theme-services .diff-item {
  border-color: rgba(11, 124, 138, 0.16);
}
.theme-services .suite-card { background: #0C1417; }
.theme-services .suite-card .sol-badge { background: rgba(58, 224, 206, 0.14); color: #3AE0CE; }

/* ---------- Solutions · 제품 카탈로그 (per-product color coding) ---------- */
.theme-solutions .hero-grid-bg {
  background-size: 26px 26px; opacity: 0.4;
}
#zonewaf   { --p: #2B3CF0; --p-soft: #E8EAFE; }
#zoneshield{ --p: #6D28D9; --p-soft: #EFE7FB; }
#zonelock  { --p: #C42B1C; --p-soft: #FBE9E7; }
#zonetrace { --p: #047857; --p-soft: #E1F2EB; }
#zonesuite { --p: #101114; --p-soft: #E9E9EA; }
.theme-solutions .spec-head {
  border-left: 6px solid var(--p, var(--accent));
  padding-left: clamp(18px, 2.4vw, 28px);
  flex-direction: column; align-items: flex-start; gap: 12px;
}
.theme-solutions .spec-head .pn {
  font-size: 0.68rem; letter-spacing: 0.16em; color: var(--p, var(--accent));
  order: -1;
}
.spec-logo { height: clamp(40px, 4.6vw, 54px); width: auto; display: block; }
.sol-card h3 img { height: 40px; width: auto; display: block; }
.suite-card h3 { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.suite-card h3 img { height: 40px; width: auto; display: block; }
.theme-solutions .sol-badge { color: var(--p, var(--accent)); background: var(--p-soft, var(--accent-soft)); }
.theme-solutions .stat-callout { background: var(--p-soft, var(--accent-soft)); border-left-color: var(--p, var(--accent)); }
.theme-solutions .stat-callout .big { color: var(--p, var(--accent)); }
.theme-solutions .spec-col { border-top: 3px solid var(--p, var(--accent)); border-radius: 0 0 var(--radius) var(--radius); }
.theme-solutions .spec-col h3 { color: var(--p, var(--accent)); }
.theme-solutions .spec-col li svg { color: var(--p, var(--accent)); }
.theme-solutions .section-label::before { background: var(--p, var(--accent)); }
.theme-solutions .zone-naming { border-color: var(--ink); background: var(--card); }
#zonesuite .stat-callout { background: var(--ink); border-left-color: rgba(255, 255, 255, 0.35); }
#zonesuite .stat-callout .big { color: #fff; }
#zonesuite .stat-callout p { color: rgba(246, 245, 241, 0.75); }
#zonesuite .stat-callout .src { color: rgba(246, 245, 241, 0.55); }

/* ---------- About · 에디토리얼 매거진 (serif, ivory) ---------- */
.theme-about {
  --paper: #F8F5EE;
  --paper-2: #F1ECDF;
  --glass: rgba(248, 245, 238, 0.82);
}
.theme-about .page-hero h1 { font-weight: 900; }
.theme-about .hero-grid-bg { display: none; }
.theme-about .page-hero { border-bottom: 1px solid var(--ink); }
.theme-about .section-head {
  border-top: 2px solid var(--ink); padding-top: 28px;
}
.theme-about .section-label::before { border-radius: 0; }
.theme-about .value-card { border-radius: 10px; border-top: 2px solid var(--ink); }
.theme-about .value-card .v-num {
  font-size: 2.8rem; font-weight: 900;
  letter-spacing: -0.02em; color: var(--accent); opacity: 0.22; line-height: 1;
}
.theme-about .mv-block { border-radius: 10px; }
.theme-about .fact-table th { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.theme-about .fact-table td { font-size: 1.05rem; }
.theme-about .cta-band { border-radius: 10px; }

/* ---------- Contact · 다이렉트 볼드 (blue tint, solid form) ---------- */
.theme-contact {
  --paper: #EFF3FB;
  --paper-2: #E5EBF8;
  --accent: #1D33E8;
  --accent-deep: #1626B8;
  --accent-soft: #DDE4FC;
  --accent-glow: rgba(29, 51, 232, 0.28);
  --accent-glow-strong: rgba(29, 51, 232, 0.35);
  --ring: rgba(29, 51, 232, 0.14);
  --glass: rgba(239, 243, 251, 0.82);
}
.theme-contact .page-hero::after {
  content: ""; position: absolute; right: -20%; top: -30%;
  width: 780px; height: 780px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(29, 51, 232, 0.12), transparent 62%);
}
.theme-contact .form-card {
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--accent-soft);
}
.theme-contact .info-card.urgent { background: var(--accent); }
.theme-contact .info-card.urgent h3 { color: rgba(255, 255, 255, 0.7); }
.theme-contact .info-card.urgent p { color: rgba(255, 255, 255, 0.78); }
.theme-contact .info-card.urgent .big-link:hover { color: #fff; text-decoration: underline; }
.theme-contact .info-card .big-link { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.theme-contact .process-step { border-top: 3px solid var(--accent); border-radius: 0 0 var(--radius) var(--radius); }


