/* ============================================
   AURA — Premium Air Conditioner Design System
   ============================================ */

:root {
  --bg: #FAFBFC;
  --bg-elevated: #FFFFFF;
  --bg-dark: #0A1220;
  --bg-dark-2: #0F1A2E;
  --bg-tint: #EEF4FB;

  --ink: #0A1220;
  --ink-2: #1F2937;
  --ink-3: #4B5563;
  --ink-4: #6B7280;
  --ink-5: #9CA3AF;
  --line: #E5E9F0;
  --line-2: #EEF1F6;

  --accent: #0EA5E9;
  --accent-deep: #0369A1;
  --accent-soft: #BAE6FD;
  --accent-tint: #E0F2FE;
  --accent-glow: #7DD3FC;

  --warm: #F59E0B;
  --cool: #38BDF8;
  --eco: #10B981;
  --danger: #EF4444;

  --font-sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-display: "Pretendard Variable", Pretendard, sans-serif;
  --font-mono: "Pretendard Variable", Pretendard, -apple-system, sans-serif;

  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(10,18,32,.04), 0 1px 3px rgba(10,18,32,.06);
  --shadow-md: 0 6px 18px -6px rgba(10,18,32,.08), 0 2px 6px rgba(10,18,32,.04);
  --shadow-lg: 0 24px 60px -20px rgba(10,18,32,.18), 0 8px 24px -12px rgba(10,18,32,.08);
  --shadow-glow: 0 20px 60px -20px rgba(14,165,233,.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv01";
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
a { color: inherit; text-decoration: none; }

/* Type scale */
.display-xl { font-size: clamp(42px, 5.5vw, 76px); line-height: 1; letter-spacing: -0.04em; font-weight: 700; }
.display-lg { font-size: clamp(44px, 5.4vw, 76px); line-height: 1; letter-spacing: -0.035em; font-weight: 700; }
.display-md { font-size: clamp(34px, 3.6vw, 52px); line-height: 1.05; letter-spacing: -0.03em; font-weight: 700; }
.display-sm { font-size: clamp(26px, 2.4vw, 36px); line-height: 1.15; letter-spacing: -0.02em; font-weight: 600; }
.title-lg { font-size: 22px; letter-spacing: -0.01em; font-weight: 600; }
.title-md { font-size: 18px; letter-spacing: -0.005em; font-weight: 600; }
.body-lg { font-size: 18px; line-height: 1.55; color: var(--ink-2); }
.body { font-size: 15px; line-height: 1.6; color: var(--ink-3); }
.body-sm { font-size: 13px; line-height: 1.55; color: var(--ink-4); }
.eyebrow {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; color: var(--accent-deep);
}
.mono { font-family: var(--font-mono); font-feature-settings: "tnum"; }

/* Layout */
.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 1080px; margin: 0 auto; padding: 0 32px; }

.section { padding: 120px 0; position: relative; }
.section-sm { padding: 80px 0; position: relative; }
.section-dark {
  background: var(--bg-dark); color: #F4F6FA;
  position: relative; overflow: hidden;
}
.section-dark::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(600px 400px at 10% 20%, rgba(14,165,233,.08) 0%, transparent 70%),
    radial-gradient(500px 300px at 90% 80%, rgba(139,92,246,.06) 0%, transparent 70%),
    linear-gradient(rgba(125,211,252,.04) 1px, transparent 1px) 0 0/60px 60px,
    linear-gradient(90deg, rgba(125,211,252,.04) 1px, transparent 1px) 0 0/60px 60px;
}
#products {
  background: var(--bg-dark) url('/assets/img/products-bg.jpg') center/cover no-repeat;
}
#products::before {
  background:
    linear-gradient(180deg, rgba(10,18,32,.88) 0%, rgba(10,18,32,.75) 40%, rgba(10,18,32,.9) 100%),
    linear-gradient(rgba(125,211,252,.03) 1px, transparent 1px) 0 0/60px 60px,
    linear-gradient(90deg, rgba(125,211,252,.03) 1px, transparent 1px) 0 0/60px 60px;
}
.section-dark > .container { position: relative; z-index: 1; }
.section-dark .body, .section-dark .body-lg, .section-dark .body-sm { color: #B8C0CC; }
.section-dark .eyebrow { color: var(--accent-glow); }
.section-tint { background: var(--bg-tint); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 48px; padding: 0 22px;
  border-radius: var(--r-pill);
  font-weight: 600; font-size: 15px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #1F2937; box-shadow: var(--shadow-md); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-deep); box-shadow: var(--shadow-glow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--bg-elevated); border-color: var(--ink-5); }
.btn-dark-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.18); }
.btn-dark-ghost:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.04); }
.btn-sm { height: 38px; padding: 0 16px; font-size: 13px; }
.btn-lg { height: 56px; padding: 0 28px; font-size: 16px; }

/* Cards */
.card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-2);
}

/* Chips */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  height: 28px; padding: 0 12px;
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 500;
  background: var(--bg-tint); color: var(--ink-3);
  border: 1px solid var(--line);
}
.chip-accent { background: var(--accent-tint); color: var(--accent-deep); border-color: var(--accent-soft); }
.chip-eco { background: #ECFDF5; color: #047857; border-color: #A7F3D0; }

.hr { height: 1px; background: var(--line); border: 0; margin: 0; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; display: inline-block; }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulseGlow { 0%,100% { box-shadow: 0 0 0 0 rgba(14,165,233,.4); } 50% { box-shadow: 0 0 0 12px rgba(14,165,233,0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes scrollIndicator { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(14px); opacity: 0; } }
@keyframes spinSlow { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.fade-in { animation: fadeUp .8s ease both; }
::selection { background: var(--accent); color: #fff; }


/* ==========================================
   HEADER / NAV
   ========================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,.85);
  border-bottom-color: var(--line);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
}
.site-header.header-transparent .brand-logo { filter: brightness(0) invert(1); }
.site-header.header-transparent .gnb a { color: rgba(255,255,255,.7); }
.site-header.header-transparent .gnb a:hover,
.site-header.header-transparent .gnb a.active { color: #fff; background: rgba(255,255,255,.1); }
.site-header.header-transparent .header-phone { color: #fff; }
.site-header.header-transparent .header-phone i { color: var(--accent-glow); }
.site-header.header-transparent .mobile-toggle span { background: #fff; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
  max-width: 1320px; margin: 0 auto; padding: 0 32px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 18px; letter-spacing: -0.02em;
}
.brand-logo {
  height: 32px; width: auto;
}
.gnb {
  display: flex; align-items: center; gap: 2px;
}
.gnb a {
  padding: 8px 16px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 500; color: var(--ink-3);
  background: transparent;
  transition: background .15s ease, color .15s ease;
}
.gnb a:hover,
.gnb a.active {
  color: var(--ink); font-weight: 700;
  background: var(--bg-tint);
}
.gnb .nav-cta { display: none; }
.header-cta {
  display: flex; align-items: center; gap: 10px;
}
.header-phone {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700; color: var(--ink);
  padding: 0 6px; letter-spacing: -0.01em;
}
.header-phone i { color: var(--accent-deep); font-size: 14px; }
.header-phone span { font-family: var(--font-mono); }

/* Mobile nav */
.mobile-toggle {
  display: none; background: none; border: 0;
  width: 40px; height: 40px; border-radius: 10px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; cursor: pointer; transition: background .2s;
}
.mobile-toggle:hover { background: var(--bg-tint); }
.mobile-toggle span {
  display: block; width: 20px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: .3s;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-nav {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(24px);
  z-index: 48;
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav-inner {
  display: flex; flex-direction: column; justify-content: space-between;
  height: 100%; padding: 80px 28px 32px;
}
.mobile-nav-links {
  display: flex; flex-direction: column; gap: 2px;
}
.mobile-nav-links a {
  display: flex; align-items: center; padding: 14px 16px;
  border-radius: 12px; font-size: 17px; font-weight: 500;
  color: var(--ink-2); letter-spacing: -0.01em;
  transition: background .15s, color .15s;
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: var(--bg-tint); color: var(--accent-deep);
}
.mobile-nav-links a.active { font-weight: 700; }
.mobile-nav-bottom {
  display: flex; flex-direction: column; gap: 16px;
  padding-top: 20px; border-top: 1px solid var(--line);
}
.mobile-nav-contact {
  display: flex; justify-content: center; gap: 24px;
}
.mobile-nav-contact a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; color: var(--ink-3); font-weight: 500;
}
.mobile-nav-contact i { color: var(--accent); font-size: 14px; }

main { padding-top: 0; }


/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px; padding-bottom: 80px;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 80% 0%, #E0F2FE 0%, transparent 60%),
    radial-gradient(900px 600px at 10% 100%, #F0F9FF 0%, transparent 50%),
    var(--bg);
}

/* Hero — full-screen video background */
.hero-video-bg {
  background: none;
}
.hero-video-backdrop {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-backdrop video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,18,32,.72) 0%, rgba(10,18,32,.55) 50%, rgba(10,18,32,.78) 100%);
}
.hero-video-bg .hero-content {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  min-height: calc(100vh - 200px);
}
.hero-video-bg .hero-copy {
  max-width: 700px;
}
.hero-video-bg .hero-title { color: #fff; }
.hero-video-bg .hero-title .accent-light { color: var(--accent-glow); }
.hero-video-bg .hero-desc { color: rgba(255,255,255,.75); }
.hero-video-bg .hero-stat-num { color: #fff; }
.hero-video-bg .hero-stat-label { color: rgba(255,255,255,.5); }
.hero-video-bg .hero-trust-row { border-top-color: rgba(255,255,255,.15); }
.hero-video-bg .hero-brands-label { color: rgba(255,255,255,.4); }
.hero-video-bg .hero-brands-list span {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
}
.hero-video-bg .hero-scroll { color: rgba(255,255,255,.4); }
.hero-video-bg .hero-scroll-bar { background: rgba(255,255,255,.15); }

.hero-badge-dark {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.85); backdrop-filter: blur(8px);
}
.hero-badge-dark .dot { color: #34D399; }
.btn-light-ghost {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.25);
}
.btn-light-ghost:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.06);
}
.br-pc { display: inline; }

.hero-copy { display: flex; flex-direction: column; gap: 24px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  height: 32px; padding: 0 14px; border-radius: var(--r-pill);
  background: var(--bg-elevated); border: 1px solid var(--line);
  font-size: 12px; font-weight: 500; color: var(--ink-3);
  width: fit-content;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot { color: #10B981; }
.hero-title { margin: 0; }
.hero-title .accent { color: var(--accent); }
.hero-desc {
  max-width: 540px; margin: 0; color: var(--ink-3); font-size: 19px;
  line-height: 1.55;
}
.hero-ctas { display: flex; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
.hero-trust-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 24px; padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-stat-num {
  font-size: 28px; font-weight: 700; letter-spacing: -0.03em;
  color: var(--ink); line-height: 1;
}
.hero-stat-label { font-size: 12px; color: var(--ink-4); margin-top: 6px; }
.hero-brands { margin-top: 16px; }
.hero-brands-label {
  font-size: 11px; color: var(--ink-4); letter-spacing: 0.14em;
  font-weight: 600; margin-bottom: 12px;
}
.hero-brands-list { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-brands-list span {
  height: 30px; padding: 0 14px; border-radius: var(--r-pill);
  background: var(--bg-elevated); border: 1px solid var(--line);
  display: inline-flex; align-items: center;
  font-size: 12px; font-weight: 600; color: var(--ink-2);
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--ink-4); font-size: 11px; letter-spacing: 0.2em;
  z-index: 1;
}
.hero-scroll-bar {
  width: 1px; height: 28px; background: var(--line);
  position: relative; overflow: hidden;
}
.hero-scroll-bar::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 14px; background: var(--accent);
  animation: scrollIndicator 1.6s ease-in-out infinite;
}

/* Hero scene (AC illustration) */
.hero-scene {
  position: relative; width: 100%; aspect-ratio: 1 / 1.05;
  display: grid; place-items: center;
}
.hero-scene-glow {
  position: absolute; inset: 0;
  background: radial-gradient(closest-side, rgba(125,211,252,.25), transparent 70%);
  filter: blur(20px);
}
.hero-scene-wall {
  position: absolute; left: 8%; right: 8%; top: 10%; bottom: 20%;
  background: linear-gradient(180deg, #FAFBFC 0%, #F4F6FA 100%);
  border-radius: 28px; border: 1px solid rgba(10,18,32,.08);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.hero-scene-wall-pattern {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(10,18,32,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(10,18,32,.03) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-ac-unit {
  position: absolute; top: 28px; left: 50%; transform: translateX(-50%);
  width: 62%; height: 78px;
  border-radius: 14px 14px 12px 12px;
  background: linear-gradient(180deg, #FFFFFF 0%, #E5E9F0 100%);
  border: 1px solid rgba(10,18,32,.08);
  box-shadow: 0 12px 24px -8px rgba(10,18,32,.18), inset 0 1px 0 rgba(255,255,255,.9);
  overflow: hidden;
}
.hero-ac-display {
  position: absolute; top: 12px; left: 16px;
  width: 56px; height: 22px; border-radius: 4px;
  background: #0A1220; display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: #7DD3FC;
}
.hero-ac-brand {
  position: absolute; top: 16px; right: 16px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.2em; color: rgba(10,18,32,.4);
}
.hero-ac-grille {
  position: absolute; left: 12px; right: 12px; bottom: 8px; height: 28px;
  border-radius: 6px;
  background: repeating-linear-gradient(90deg, rgba(10,18,32,.06) 0 1px, transparent 1px 4px), linear-gradient(180deg, #FAFBFC, #EEF1F6);
  border: 1px solid rgba(10,18,32,.06);
}
.hero-pipe-1 {
  position: absolute; top: 100px; right: 16%;
  width: 4px; height: 55%;
  background: linear-gradient(180deg, rgba(10,18,32,.15), rgba(10,18,32,.08));
  border-radius: 2px;
}
.hero-pipe-2 {
  position: absolute; top: 105px; right: calc(16% + 8px);
  width: 4px; height: 55%;
  background: linear-gradient(180deg, rgba(10,18,32,.1), rgba(10,18,32,.05));
  border-radius: 2px;
}
.hero-floor { position: absolute; left: 0; right: 0; bottom: 20%; height: 1px; background: rgba(10,18,32,.1); }
.hero-toolbox {
  position: absolute; right: 12%; bottom: 22%;
  width: 20%; height: 36px;
}
.hero-toolbox-body {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #DC2626, #991B1B);
  border-radius: 6px 6px 4px 4px; border: 1px solid rgba(10,18,32,.2);
}
.hero-toolbox-handle {
  position: absolute; top: -8px; left: 30%; right: 30%; height: 8px;
  border: 2px solid rgba(10,18,32,.4); border-bottom: 0; border-radius: 8px 8px 0 0;
}
.hero-toolbox-line {
  position: absolute; left: 10px; right: 10px; top: 60%; height: 2px; background: rgba(10,18,32,.4);
}

/* Floating chips */
.float-chip {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: 18px;
  background: var(--bg-elevated); border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.float-chip-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center; color: #fff;
}
.float-chip-sub { font-size: 11px; color: var(--ink-4); line-height: 1; }
.float-chip-main { font-size: 16px; font-weight: 700; line-height: 1.3; }
.float-chip-1 { top: 14%; left: 0; animation: float 4s ease-in-out infinite; }
.float-chip-2 { top: 44%; right: -2%; animation: float 4.5s ease-in-out .5s infinite; }
.float-chip-3 { bottom: 8%; left: 6%; animation: float 5s ease-in-out 1s infinite; }


/* ==========================================
   SERVICES SECTION
   ========================================== */
.svc-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px; gap: 32px; flex-wrap: wrap;
}
.svc-header-actions { display: flex; gap: 12px; }
.svc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.svc-grid-3 { grid-template-columns: repeat(3, 1fr); }
.svc-card {
  background: var(--bg-elevated); border: 1px solid var(--line);
  border-radius: 22px; padding: 24px;
  display: flex; flex-direction: column;
  transition: all .25s ease, transform .25s ease; cursor: pointer;
  position: relative; overflow: hidden;
  color: var(--ink);
}
.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--accent-soft);
}
.svc-card.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 24px 60px -20px rgba(14,165,233,.22);
}
.svc-badge {
  position: absolute; top: 16px; left: 16px;
  height: 22px; padding: 0 9px; border-radius: var(--r-pill);
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em;
  display: inline-flex; align-items: center;
  background: var(--accent); color: #fff;
}
.svc-badge-inline {
  display: inline-flex; align-items: center;
  height: 20px; padding: 0 8px; border-radius: var(--r-pill);
  font-size: 10px; font-weight: 700; letter-spacing: 0.02em;
  background: var(--accent); color: #fff;
  vertical-align: middle; margin-left: 6px;
}
.svc-badge-dark { background: #0A1220; }
.svc-icon {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; font-size: 20px;
}
.svc-code {
  font-size: 11px; color: var(--ink-4); letter-spacing: 0.12em;
  font-weight: 600; margin-bottom: 6px;
}
.svc-name {
  font-size: 20px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 6px;
  color: var(--ink);
}
.svc-series {
  font-size: 12px; color: var(--ink-4); margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.svc-summary {
  font-size: 13px; color: var(--ink-3); line-height: 1.55;
  margin-bottom: 16px;
}
.svc-features {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px;
}
.svc-feat-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 500; color: var(--ink-3);
  padding: 4px 10px; border-radius: var(--r-pill);
  background: var(--bg-tint); border: 1px solid var(--line-2);
}
.svc-feat-tag i { font-size: 9px; color: var(--accent); }
.svc-models-label {
  font-size: 10px; color: var(--ink-5); letter-spacing: 0.1em;
  font-weight: 600; text-transform: uppercase; margin-bottom: 4px;
}
.svc-models {
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  margin-bottom: 16px; letter-spacing: -0.01em;
}
.svc-price-row {
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line-2);
  display: flex; align-items: flex-end; justify-content: space-between;
}
.svc-from { font-size: 10px; color: var(--ink-5); letter-spacing: 0.12em; font-weight: 600; margin-bottom: 2px; }
.svc-price { font-size: 19px; font-weight: 700; font-family: var(--font-mono); letter-spacing: -0.02em; }
.svc-price small { font-size: 12px; margin-left: 2px; color: var(--ink-4); }
.svc-price-free { font-size: 17px; font-weight: 700; color: #10B981; }
.svc-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-tint); color: var(--ink-3);
  display: grid; place-items: center; transition: all .2s ease;
  font-size: 13px;
}
.svc-card.active .svc-arrow { background: var(--accent); color: #fff; }


/* ==========================================
   FEATURED SERVICE (DARK)
   ========================================== */
.featured-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.featured-visual {
  position: relative;
  background: linear-gradient(180deg, #0F1A2E 0%, #050811 100%);
  border-radius: 32px; padding: 40px; min-height: 540px;
  display: grid; place-items: center; overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.featured-visual-grid {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(125,211,252,.06) 1px, transparent 1px) 0 0/40px 40px,
    linear-gradient(90deg, rgba(125,211,252,.06) 1px, transparent 1px) 0 0/40px 40px;
}
.featured-visual-glow {
  position: absolute; left: 50%; top: 50%;
  width: 380px; height: 380px; transform: translate(-50%, -50%);
  filter: blur(20px);
}
.featured-big-icon {
  width: 200px; height: 200px; border-radius: 40px;
  display: grid; place-items: center; color: #fff; font-size: 88px;
}
.featured-options {
  display: flex; gap: 12px; justify-content: center; margin-top: 24px;
  flex-wrap: wrap;
}
.featured-option {
  font-size: 12px; font-weight: 600;
  padding: 8px 14px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
}
.featured-svc-label {
  position: absolute; top: 24px; left: 24px;
  font-size: 11px; letter-spacing: 0.2em; color: rgba(255,255,255,.5); font-weight: 600;
}
.featured-detail .eyebrow { color: var(--accent-glow); }
.featured-detail h3 { margin: 12px 0 16px; color: #F4F6FA; }
.featured-detail .featured-desc { font-size: 18px; color: #B8C0CC; margin: 0 0 32px; line-height: 1.6; }
.featured-includes-label {
  font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: 0.16em;
  font-weight: 700; margin-bottom: 12px;
}
.featured-includes { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.featured-include-item {
  display: flex; align-items: center; gap: 12px; color: #E5E9F0; font-size: 15px;
}
.featured-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(16,185,129,.15); display: grid; place-items: center; color: #34D399;
  font-size: 13px;
}
.featured-bottom {
  display: flex; align-items: center; gap: 16px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08);
}
.featured-price-label { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.featured-price {
  font-size: 36px; font-weight: 700; font-family: var(--font-mono);
  letter-spacing: -0.02em; color: #F4F6FA;
}
.featured-price small { font-size: 16px; color: rgba(255,255,255,.5); margin-left: 4px; }
.featured-price-free { font-size: 36px; font-weight: 700; color: #34D399; letter-spacing: -0.02em; }


/* ==========================================
   WHY-US / TECH
   ========================================== */
.why-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; margin-bottom: 56px; align-items: end;
}
.why-header-desc { text-align: right; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border-radius: 24px; overflow: hidden;
  border: 1px solid var(--line);
}
.why-cell {
  background: var(--bg-elevated); padding: 40px 32px;
  display: flex; flex-direction: column;
  transition: background .2s ease;
  position: relative; overflow: hidden;
}
.why-cell:hover { background: var(--bg-tint); }
.why-icon-box {
  position: absolute; top: 24px; right: 24px;
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center;
  font-size: 24px;
}
.why-icon-emerald { background: #ECFDF5; color: #059669; }
.why-icon-sky { background: #E0F2FE; color: #0284C7; }
.why-icon-indigo { background: #EEF2FF; color: #4F46E5; }
.why-icon-cyan { background: #ECFEFF; color: #0891B2; }
.why-icon-green { background: #F0FDF4; color: #16A34A; }
.why-icon-blue { background: #EFF6FF; color: #2563EB; }
.why-stat {
  margin-top: 0; margin-bottom: 6px;
  font-size: 32px; font-weight: 700; letter-spacing: -0.03em;
  font-family: var(--font-mono); color: var(--accent-deep);
}
.why-stat-label {
  font-size: 11px; color: var(--ink-4); letter-spacing: 0.12em;
  margin-bottom: 14px; text-transform: uppercase; font-weight: 600;
}
.why-title { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 8px; }
.why-body { font-size: 13px; color: var(--ink-3); line-height: 1.6; }


/* ==========================================
   PRICING TABLE
   ========================================== */
.pricing-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start; margin-bottom: 40px;
}
.pricing-info-box {
  display: flex; flex-direction: column; gap: 12px;
  padding: 20px; background: var(--bg-tint); border-radius: 16px;
  border: 1px solid var(--line);
}
.pricing-info-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600;
}
.pricing-info-item i { color: var(--accent-deep); font-size: 16px; }
.pricing-table {
  background: var(--bg-elevated); border-radius: 20px;
  border: 1px solid var(--line); overflow: hidden;
}
.pricing-table-header {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  padding: 16px 24px; background: var(--bg-tint);
  border-bottom: 1px solid var(--line);
  font-size: 11px; color: var(--ink-4); letter-spacing: 0.12em;
  font-weight: 700; text-transform: uppercase;
}
.pricing-table-header > div:not(:first-child) { text-align: right; }
.pricing-row {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  padding: 20px 24px; align-items: center;
}
.pricing-row:not(:last-child) { border-bottom: 1px solid var(--line-2); }
.pricing-row-type { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.pricing-row-note { font-size: 12px; color: var(--ink-4); }
.pricing-val {
  text-align: right; font-size: 15px; font-family: var(--font-mono); font-weight: 600;
}
.pricing-val small { font-size: 12px; color: var(--ink-4); }
.pricing-val-full {
  text-align: right; font-size: 16px; font-family: var(--font-mono);
  font-weight: 700; color: var(--accent-deep);
}
.pricing-val-full small { font-size: 12px; color: var(--ink-4); }
.pricing-addons {
  background: var(--bg-tint); padding: 20px 24px;
  border-top: 1px solid var(--line);
}
.pricing-addons-label {
  font-size: 11px; color: var(--ink-4); letter-spacing: 0.12em;
  font-weight: 700; margin-bottom: 10px; text-transform: uppercase;
}
.pricing-addons-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px; font-size: 13px; color: var(--ink-3);
}
.pricing-addons-grid strong {
  font-family: var(--font-mono); color: var(--ink);
}


/* ==========================================
   REVIEWS
   ========================================== */
.reviews-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; gap: 32px; flex-wrap: wrap;
}
.reviews-overall-num {
  font-size: 56px; font-weight: 700; letter-spacing: -0.04em;
  font-family: var(--font-mono); line-height: 1;
}
.reviews-overall-num span { font-size: 22px; color: var(--ink-4); margin-left: 4px; }
.reviews-stars { display: flex; gap: 2px; margin-top: 8px; justify-content: flex-end; }
.reviews-stars i { color: var(--ink-5); font-size: 14px; }
.reviews-stars i.active { color: #F59E0B; }
.reviews-count { margin-top: 6px; font-size: 12px; color: var(--ink-4); }
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.review-card {
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
}
.review-card .reviews-stars { justify-content: flex-start; }
.review-text {
  font-size: 15px; line-height: 1.65; color: var(--ink-2); margin: 0; flex: 1;
}
.review-bottom {
  padding-top: 14px; border-top: 1px solid var(--line-2);
  display: flex; justify-content: space-between; align-items: center;
}
.review-name { font-size: 14px; font-weight: 600; }
.review-role { font-size: 12px; color: var(--ink-4); margin-top: 2px; }

/* Review stats bar */
.reviews-stats {
  margin-top: 40px; padding: 32px;
  background: var(--bg-elevated); border-radius: 20px; border: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 48px; align-items: center;
}
.reviews-reuse-num { font-size: 36px; font-weight: 700; letter-spacing: -0.03em; }
.reviews-reuse-num span { font-size: 18px; color: var(--ink-4); }
.reviews-bar-row { display: flex; align-items: center; gap: 12px; font-size: 12px; }
.reviews-bar-label { width: 28px; color: var(--ink-4); font-family: var(--font-mono); }
.reviews-bar-track { flex: 1; height: 8px; background: var(--bg-tint); border-radius: 4px; overflow: hidden; }
.reviews-bar-fill { height: 100%; background: var(--accent); border-radius: 4px; }
.reviews-bar-count { width: 56px; text-align: right; color: var(--ink-4); font-family: var(--font-mono); }


/* ==========================================
   PROCESS
   ========================================== */
.process-section-header {
  text-align: center; max-width: 720px; margin: 0 auto 64px;
}
.process-card {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: var(--bg-elevated); border: 1px solid var(--line);
  border-radius: 24px; overflow: hidden;
}
.process-step {
  padding: 32px; position: relative;
  display: flex; flex-direction: column;
}
.process-step:not(:last-child) { border-right: 1px solid var(--line); }
.process-step-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-tint); color: var(--accent-deep);
  display: grid; place-items: center; font-size: 20px;
  position: absolute; top: 28px; right: 28px;
}
.process-step-num {
  font-size: 11px; color: var(--accent-deep); letter-spacing: 0.2em;
  font-weight: 700; margin-bottom: 8px;
}
.process-step h3 {
  font-size: 20px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 10px;
}
.process-step p {
  font-size: 14px; color: var(--ink-3); line-height: 1.55; margin: 0 0 20px;
  flex: 1;
}
.process-time-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; background: var(--bg-tint); border-radius: var(--r-pill);
  font-size: 12px; font-weight: 600; color: var(--ink-2); font-family: var(--font-mono);
  align-self: flex-start;
}
.process-time-chip i { color: var(--accent); font-size: 12px; }
.process-arrow {
  position: absolute; right: -10px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--bg-elevated); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink-5); z-index: 2;
  font-size: 10px;
}


/* ==========================================
   FAQ
   ========================================== */
.faq-layout {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px;
}
.faq-left-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%; text-align: left; padding: 28px 0;
  background: transparent; border: 0;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink);
}
.faq-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-tint); color: var(--ink-3);
  display: grid; place-items: center; flex-shrink: 0;
  transition: all .25s ease; font-size: 16px;
}
.faq-item.open .faq-toggle {
  background: var(--ink); color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding-bottom: 28px; padding-right: 56px;
  font-size: 15px; color: var(--ink-3); line-height: 1.7;
}


/* ==========================================
   SERVICE AREA
   ========================================== */
.area-layout {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center;
}
.area-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.area-card { padding: 24px; display: flex; align-items: center; gap: 16px; }
.area-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; font-size: 20px;
}
.area-icon-primary { background: var(--accent-tint); color: var(--accent-deep); }
.area-icon-default { background: var(--bg-tint); color: var(--ink-3); }
.area-name { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.area-detail { font-size: 12px; color: var(--ink-4); }
.area-time-primary { font-weight: 600; color: var(--accent-deep); }
.area-time-default { font-weight: 600; color: var(--ink-3); }


/* ==========================================
   CONTACT CTA
   ========================================== */
.cta-simple {
  padding: 80px 0;
}
.cta-simple-inner {
  text-align: center;
  max-width: 640px; margin: 0 auto;
}
.cta-simple-sub {
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; color: var(--accent-glow); margin: 0 0 16px;
}
.cta-simple-title {
  font-size: clamp(28px, 3.6vw, 44px); font-weight: 700;
  line-height: 1.15; letter-spacing: -0.03em;
  color: #F4F6FA; margin: 0 0 32px;
}
.cta-simple-title .accent-light { color: var(--accent-glow); }
.cta-simple-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta-simple-note {
  font-size: 13px; color: rgba(255,255,255,.4); margin: 0;
}
.cta-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center;
}
.cta-title { margin: 0 0 24px; color: #F4F6FA; font-size: clamp(32px, 4vw, 52px); }
.cta-title .accent-light { color: #7DD3FC; }
.cta-desc { color: #B8C0CC; max-width: 480px; margin-bottom: 32px; font-size: 18px; line-height: 1.55; }
.cta-call-row {
  display: flex; gap: 16px; align-items: center; margin-bottom: 16px;
}
.cta-call-note { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; }
.cta-form-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px; padding: 32px;
  backdrop-filter: blur(8px);
}
.cta-form-title { font-size: 18px; font-weight: 600; color: #F4F6FA; margin-bottom: 4px; }
.cta-form-sub { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 24px; }
.cta-form { display: flex; flex-direction: column; gap: 12px; }
.cta-input {
  height: 48px; padding: 0 16px; border-radius: 12px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  color: #F4F6FA; font-size: 14px; outline: none; width: 100%;
}
.cta-input::placeholder { color: rgba(255,255,255,.4); }
.cta-input:focus { border-color: var(--accent); }
select.cta-input { appearance: none; cursor: pointer; }
select.cta-input option { background: var(--bg-dark); color: #F4F6FA; }
.cta-form .btn { margin-top: 8px; width: 100%; justify-content: center; }
.cta-form-disclaimer {
  font-size: 11px; color: rgba(255,255,255,.4); line-height: 1.6; margin-top: 6px;
}


/* ==========================================
   SUB PAGE HERO
   ========================================== */
.page-hero {
  background: var(--bg-dark); color: #F4F6FA;
  padding: 120px 0 60px;
  position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: rgba(10,18,32,.65);
}
.page-hero:not([style*="background-image"])::before {
  background:
    radial-gradient(600px 300px at 20% 60%, rgba(14,165,233,.1) 0%, transparent 70%),
    radial-gradient(400px 200px at 80% 30%, rgba(125,211,252,.06) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--accent-glow); margin-bottom: 12px; }
.page-hero h1 {
  font-size: clamp(32px, 4vw, 48px); font-weight: 700;
  letter-spacing: -0.03em; margin: 0 0 16px; line-height: 1.1;
}
.page-hero p {
  font-size: 17px; color: #B8C0CC; max-width: 560px;
  line-height: 1.55; margin: 0;
}
.page-hero-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 16px;
}
.page-hero-header h1 { margin: 0; }
.page-hero-blog {
  background: #03C75A; border-color: #03C75A; color: #fff;
  white-space: nowrap;
}
.page-hero-blog:hover { background: #02b351; border-color: #02b351; }

/* ==========================================
   COMPANY PAGE
   ========================================== */
.company-greeting {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.company-greeting-text h2 {
  font-size: clamp(26px, 3vw, 36px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.25; margin: 0 0 24px;
}
.company-greeting-text .greeting-lead {
  font-size: 17px; color: var(--ink-2); line-height: 1.65; margin: 0 0 24px;
}
.company-greeting-text .greeting-body {
  font-size: 15px; color: var(--ink-3); line-height: 1.7; margin: 0 0 16px;
}
.company-quote {
  padding: 24px 28px; border-left: 3px solid var(--accent);
  background: var(--bg-tint); border-radius: 0 14px 14px 0;
  font-size: 16px; color: var(--ink-2); line-height: 1.65;
  margin: 28px 0;
}
.company-img-placeholder {
  width: 100%; aspect-ratio: 4/3; border-radius: 24px;
  background: var(--bg-tint); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink-5); font-size: 48px;
}
.company-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.company-stat-card {
  background: var(--bg-elevated); border: 1px solid var(--line);
  border-radius: 18px; padding: 28px 24px; text-align: center;
}
.company-stat-num {
  font-size: 28px; font-weight: 700; color: var(--accent-deep);
  letter-spacing: -0.03em; margin-bottom: 4px;
}
.company-stat-label {
  font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 4px;
}
.company-stat-desc {
  font-size: 12px; color: var(--ink-4);
}
.company-ceo-sign {
  display: flex; align-items: center; gap: 12px;
  margin-top: 36px;
}
.company-ceo-sign .ceo-role {
  font-size: 13px; color: var(--ink-4); font-weight: 500;
}
.company-ceo-sign .ceo-name {
  font-size: 20px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.02em;
  padding-left: 12px; border-left: 2px solid var(--accent);
}
.org-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.org-card {
  background: var(--bg-elevated); border: 1px solid var(--line);
  border-radius: 18px; padding: 28px 24px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.org-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.org-card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; font-size: 20px; margin-bottom: 16px;
}
.org-card h3 {
  font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 8px;
}
.org-card p {
  font-size: 13px; color: var(--ink-3); line-height: 1.6; margin: 0;
}
.company-info-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.company-info-item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; background: var(--bg-elevated);
  border: 1px solid var(--line); border-radius: 14px;
}
.company-info-item i {
  color: var(--accent-deep); font-size: 16px; width: 20px; text-align: center;
}
.company-info-item dt {
  font-size: 11px; color: var(--ink-4); margin-bottom: 2px;
}
.company-info-item dd {
  font-size: 14px; font-weight: 600; color: var(--ink); margin: 0;
  word-break: keep-all; overflow-wrap: break-word;
}
.company-info-full { grid-column: span 2; }


/* ==========================================
   NOTICE PAGE
   ========================================== */
.notice-list {
  border-top: 2px solid var(--ink);
}
.notice-item {
  display: flex; align-items: center; gap: 24px;
  padding: 24px 20px; border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .2s ease, padding .2s ease;
}
.notice-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--accent);
  transform: scaleY(0); transform-origin: center;
  transition: transform .25s ease;
}
.notice-item:hover { background: var(--bg-tint); padding-left: 28px; }
.notice-item:hover::before { transform: scaleY(1); }
.notice-item:hover .notice-title { color: var(--accent-deep); }
.notice-item:hover .notice-arrow { opacity: 1; transform: translateX(0); }

.notice-num {
  flex-shrink: 0; width: 48px;
  font-size: 20px; font-weight: 700; color: var(--ink-4);
  font-family: 'Inter', sans-serif; letter-spacing: -0.02em;
  text-align: center;
}
.notice-body { flex: 1; min-width: 0; }
.notice-title-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 6px;
}
.notice-title {
  font-size: 16px; font-weight: 600; color: var(--ink);
  letter-spacing: -0.02em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  min-width: 0;
  transition: color .2s ease;
}
.notice-badge {
  flex-shrink: 0;
  display: inline-block; padding: 2px 8px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
}
.notice-attach-icon {
  flex-shrink: 0;
  font-size: 12px; color: var(--ink-4);
}
.notice-meta {
  display: flex; gap: 12px;
  font-size: 13px; color: var(--ink-4);
}
.notice-meta i { font-size: 11px; margin-right: 4px; }
.notice-arrow {
  flex-shrink: 0; width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%; background: var(--accent);
  color: #fff; font-size: 12px;
  opacity: 0; transform: translateX(-8px);
  transition: opacity .2s ease, transform .2s ease;
}
@media (max-width: 768px) {
  .notice-item { gap: 14px; padding: 18px 12px; }
  .notice-item:hover { padding-left: 16px; }
  .notice-num { width: 32px; font-size: 16px; }
  .notice-title { font-size: 15px; }
  .notice-arrow { display: none; }
}
.notice-detail-header {
  border-bottom: 2px solid var(--ink); padding-bottom: 20px; margin-bottom: 32px;
}
.notice-detail-title {
  font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 8px;
}
.notice-detail-date {
  font-size: 13px; color: var(--ink-4);
}
.notice-detail-body {
  font-size: 15px; line-height: 1.75; color: var(--ink-2);
  min-height: 200px;
}
.notice-detail-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 16px 0; }
.notice-detail-body h1, .notice-detail-body h2, .notice-detail-body h3 { margin: 24px 0 12px; font-weight: 700; }
.notice-detail-body ul, .notice-detail-body ol { padding-left: 24px; margin: 12px 0; }
.notice-detail-body blockquote { border-left: 3px solid var(--accent); padding-left: 16px; margin: 16px 0; color: var(--ink-3); }
.notice-detail-body a { color: var(--accent-deep); text-decoration: underline; }
.notice-attachments {
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line);
}
.notice-attachments h4 {
  font-size: 14px; font-weight: 600; margin: 0 0 12px; color: var(--ink-2);
}
.notice-attachments ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.notice-attachments a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; color: var(--accent-deep); padding: 8px 14px;
  background: var(--bg-tint); border-radius: 8px;
}
.notice-attachments a:hover { background: var(--accent-tint); }
.pagination {
  display: flex; justify-content: center; gap: 4px; margin-top: 40px;
}
.page-num {
  width: 36px; height: 36px; border-radius: 8px;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 500; color: var(--ink-3);
  border: 1px solid var(--line);
  transition: all .15s ease;
}
.page-num:hover { background: var(--bg-tint); }
.page-num.active {
  background: var(--accent); color: #fff; border-color: var(--accent);
}


/* ==========================================
   CTA LIGHT (Footer shared)
   ========================================== */
.cta-light {
  padding: 72px 0;
  background: linear-gradient(135deg, #E0F2FE 0%, #F0F9FF 50%, #EEF4FB 100%);
  border-top: 1px solid var(--accent-soft);
}
.cta-light-inner {
  text-align: center; max-width: 560px; margin: 0 auto;
}
.cta-light-title {
  font-size: clamp(22px, 2.8vw, 30px); font-weight: 700;
  line-height: 1.2; letter-spacing: -0.02em;
  color: var(--ink); margin: 12px 0 12px;
}
.cta-light-desc {
  font-size: 15px; color: var(--ink-3); line-height: 1.55; margin: 0 0 28px;
}
.cta-light-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 16px;
}
.cta-light-note {
  font-size: 12px; color: var(--ink-5); margin: 0;
}


/* ==========================================
   PROCESS TIMELINE (Sub page)
   ========================================== */
.process-timeline {
  position: relative; max-width: 720px; margin: 0 auto;
}
.timeline-item {
  display: flex; gap: 28px; position: relative;
}
.timeline-marker {
  display: flex; flex-direction: column; align-items: center; flex-shrink: 0;
}
.timeline-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent-tint); color: var(--accent-deep);
  display: grid; place-items: center; font-size: 18px;
  position: relative; z-index: 1;
}
.timeline-line {
  width: 2px; flex: 1; background: var(--line);
  margin: 8px 0;
}
.timeline-content {
  flex: 1; margin-bottom: 20px;
}
.timeline-step-num {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: var(--accent); margin-bottom: 6px;
}


/* ==========================================
   REVIEWS LIST (Sub page)
   ========================================== */
.review-list-card {
  padding: 28px 0; border-bottom: 1px solid var(--line);
}
.review-list-card:first-child { padding-top: 0; }
.review-list-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.review-stars { display: flex; gap: 2px; }
.review-stars i { font-size: 14px; color: var(--line); }
.review-stars i.active { color: var(--warm); }
.review-list-date { font-size: 13px; color: var(--ink-5); }
.review-text {
  font-size: 15px; line-height: 1.7; color: var(--ink-2); margin: 0 0 12px;
}
.review-author {
  display: flex; align-items: center; gap: 8px;
}
.review-name {
  font-size: 14px; font-weight: 600; color: var(--ink);
}
.review-service {
  font-size: 12px; color: var(--accent-deep); background: var(--accent-tint);
  padding: 2px 8px; border-radius: 999px;
}


/* ==========================================
   CONSULT FORM (Sub page)
   ========================================== */
.consult-wrap {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px;
  align-items: start;
}
.consult-info h2 {
  font-size: clamp(24px, 2.8vw, 32px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.25;
  margin: 0 0 16px;
}
.consult-info > p {
  font-size: 15px; color: var(--ink-3); line-height: 1.6; margin: 0 0 32px;
}
.consult-contact-list {
  display: flex; flex-direction: column; gap: 14px;
}
.consult-contact-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--ink-2);
}
.consult-contact-item i {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent-tint); color: var(--accent-deep);
  display: grid; place-items: center; font-size: 14px; flex-shrink: 0;
}
.consult-form {
  display: flex; flex-direction: column; gap: 16px;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px; font-weight: 600; color: var(--ink-2);
}
.form-group label .required { color: var(--danger); }
.form-control {
  height: 48px; padding: 0 16px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--bg-elevated);
  font-size: 14px; color: var(--ink); outline: none;
  transition: border-color .15s;
}
.form-control:focus { border-color: var(--accent); }
textarea.form-control { height: auto; padding: 14px 16px; resize: vertical; }
select.form-control { appearance: none; cursor: pointer; }
.form-check {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--ink-3); line-height: 1.5;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0;
  accent-color: var(--accent);
}
.form-submit {
  width: 100%; height: 52px; justify-content: center;
  font-size: 16px; font-weight: 600;
}
.form-notice {
  font-size: 13px; color: var(--ink-4); margin-top: 8px;
}
.form-notice i { margin-right: 4px; }
.alert-error {
  padding: 14px 18px; border-radius: 10px;
  background: #FEF2F2; border: 1px solid #FECACA;
  color: #DC2626; font-size: 14px; font-weight: 500;
}


/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background: var(--bg-dark); color: #B8C0CC;
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 48px; margin-bottom: 30px;
}
.footer-links-group {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.footer-brand-row {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.footer-logo {
  height: 36px; width: auto;
  filter: brightness(0) invert(1);
}
.footer-desc {
  font-size: 13px; line-height: 1.7; margin-bottom: 20px; max-width: 320px;
}
.footer-contact-inline {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 10px;
}
.footer-contact-inline a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,.7);
}
.footer-contact-inline a:hover { color: #fff; }
.footer-contact-inline i { color: var(--accent-glow); font-size: 13px; }
.footer-address {
  font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.5;
}
.footer-address i { color: rgba(255,255,255,.3); margin-right: 4px; font-size: 11px; }
.footer-links h4 {
  font-size: 12px; color: #F4F6FA; font-weight: 700;
  letter-spacing: 0.16em; margin: 0 0 16px; text-transform: uppercase;
}
.footer-links ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-links ul li a { font-size: 13px; color: #B8C0CC; }
.footer-links ul li a:hover { color: #F4F6FA; }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom-left { font-size: 12px; color: rgba(255,255,255,.5); }
.footer-bottom-right { display: flex; gap: 20px; font-size: 12px; }
.footer-bottom-right a { color: rgba(255,255,255,.5); }
.footer-bottom-right a.strong { color: rgba(255,255,255,.85); font-weight: 600; }


/* ==========================================
   FLOATING MENU
   ========================================== */
.floating-menu {
  position: fixed; bottom: 28px; right: 28px;
  display: flex; flex-direction: column; gap: 10px; z-index: 40;
}
.floating-menu a, .floating-menu button {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  border: 0; transition: transform .2s, box-shadow .2s;
  font-size: 20px; cursor: pointer;
}
.floating-menu a:hover, .floating-menu button:hover {
  transform: translateY(-2px); box-shadow: var(--shadow-lg);
}
.float-blog { background: #03C75A; color: #fff; }
.float-kakao { background: #FEE500; color: #3C1E1E; }
.float-phone { background: var(--accent); color: #fff; }
.float-top {
  background: var(--bg-elevated); color: var(--ink-3);
  border: 1px solid var(--line); opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .2s;
}
.float-top.show { opacity: 1; pointer-events: auto; }


/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-layout { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-stats { grid-template-columns: 1fr 2fr; }
  .reviews-stats > div:last-child { grid-column: 1 / -1; text-align: center; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .area-layout { grid-template-columns: 1fr; gap: 40px; }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .featured-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-header { grid-template-columns: 1fr; gap: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .consult-wrap { grid-template-columns: 1fr; gap: 40px; }
  .company-greeting { grid-template-columns: 1fr; gap: 40px; }
  .company-stats { grid-template-columns: repeat(2, 1fr); }
  .org-grid { grid-template-columns: repeat(2, 1fr); }
  .company-info-grid { grid-template-columns: repeat(2, 1fr); }
  .company-info-full { grid-column: span 2; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .section-tint { padding: 56px 0; }
  .display-xl { font-size: clamp(36px, 9vw, 56px); }
  .display-lg { font-size: clamp(32px, 7vw, 44px); }
  .display-md { font-size: clamp(24px, 5vw, 32px); }
  .display-sm { font-size: clamp(20px, 4vw, 28px); }
  .body-lg { font-size: 15px; }
  .eyebrow { font-size: 11px; }

  .gnb, .header-cta { display: none; }
  .mobile-toggle { display: flex; }

  .hero { min-height: auto; padding-top: 100px; padding-bottom: 60px; }
  .hero-video-bg { min-height: 100vh; padding-top: 100px; padding-bottom: 60px; }
  .hero-video-bg .hero-content { min-height: calc(100vh - 160px); }
  .hero-trust-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero-scroll { display: none; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .br-pc { display: none; }

  .svc-grid { grid-template-columns: 1fr; }
  .svc-header { flex-direction: column; align-items: flex-start; }
  .svc-header-actions { width: 100%; }
  .svc-header-actions .btn { flex: 1; justify-content: center; }

  .featured-grid { grid-template-columns: 1fr; }
  .featured-visual { min-height: 360px; }

  .why-grid { grid-template-columns: 1fr; }
  .why-header { grid-template-columns: 1fr; margin-bottom: 32px; gap: 16px; }
  .why-header-desc { text-align: left; }
  .why-cell { padding: 24px 20px; }
  .why-stat { font-size: 26px; }
  .why-body { font-size: 13px; }

  .pricing-table-header,
  .pricing-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .pricing-table-header > div:nth-child(3),
  .pricing-table-header > div:nth-child(4),
  .pricing-row > div:nth-child(3),
  .pricing-row > div:nth-child(4) { display: none; }
  .pricing-addons-grid { grid-template-columns: 1fr; }

  .reviews-header { flex-direction: column; align-items: flex-start; margin-bottom: 24px; }
  .reviews-header .display-md { margin-bottom: 8px !important; }
  .reviews-grid { grid-template-columns: 1fr; gap: 12px; }
  .reviews-stats { grid-template-columns: 1fr; gap: 24px; }

  .process-card { grid-template-columns: 1fr; }
  .process-step { padding: 24px 20px; }
  .process-step:not(:last-child) { border-right: 0; border-bottom: 1px solid var(--line); }
  .process-arrow { display: none; }

  .faq-layout { grid-template-columns: 1fr; gap: 24px; }
  .faq-question { font-size: 14px; padding: 16px 0; }
  .faq-left-actions { gap: 8px; }

  .area-layout { grid-template-columns: 1fr; gap: 32px; }
  .area-grid { grid-template-columns: 1fr; }

  .cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-call-row { flex-direction: column; align-items: flex-start; }
  .cta-call-row .btn { width: 100%; justify-content: center; }

  .site-footer { padding: 48px 0 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 20px; }
  .footer-desc { margin-bottom: 12px; }
  .footer-links-group { gap: 16px; }
  .footer-links h4 { margin-bottom: 10px; }
  .footer-links ul { gap: 6px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  .floating-menu { bottom: 20px; right: 16px; }
  .floating-menu a, .floating-menu button { width: 46px; height: 46px; font-size: 18px; }

  .page-hero { padding: 100px 0 48px; }
  .page-hero h1 { font-size: clamp(28px, 6vw, 40px); }

  .timeline-item { gap: 20px; }
  .timeline-icon { width: 40px; height: 40px; font-size: 16px; }

  .consult-wrap { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }

  .company-greeting { grid-template-columns: 1fr; gap: 32px; }
  .company-stats { grid-template-columns: 1fr; }
  .org-grid { grid-template-columns: 1fr; }
  .company-info-grid {
    display: flex; flex-direction: column; gap: 0;
    background: var(--bg-elevated); border: 1px solid var(--line);
    border-radius: 16px; overflow: hidden;
  }
  .company-info-item {
    border-radius: 0; border: 0;
    border-bottom: 1px solid var(--line-2);
    padding: 14px 20px; background: transparent;
  }
  .company-info-item:last-child { border-bottom: 0; }
  .company-info-full { grid-column: span 1; }

  .cta-light { padding: 56px 0; }
  .cta-light-actions { flex-direction: column; }
  .cta-light-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 360px) {
  .container { padding: 0 16px; }
  .section { padding: 60px 0; }
  .display-xl { font-size: 32px; line-height: 1.05; }
  .display-lg { font-size: 28px; line-height: 1.08; }
  .display-md { font-size: 24px; line-height: 1.1; }

  .hero { padding-top: 88px; padding-bottom: 48px; }
  .hero-badge { font-size: 11px; padding: 0 12px; height: 28px; }
  .hero-desc { font-size: 15px; }
  .hero-ctas .btn { height: 48px; font-size: 14px; padding: 0 20px; }
  .hero-trust-row { gap: 12px; margin-top: 20px; padding-top: 20px; }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-label { font-size: 11px; }
  .hero-brands-list span { font-size: 11px; height: 26px; padding: 0 10px; }

  .header-inner { height: 56px; padding: 0 16px; }
  .brand { font-size: 16px; gap: 8px; }
  .brand-mark { width: 28px; height: 28px; font-size: 13px; }
  .mobile-nav-inner { padding: 72px 24px 28px; }

  .svc-card { padding: 20px; min-height: 280px; border-radius: 18px; }
  .svc-icon { width: 48px; height: 48px; border-radius: 12px; font-size: 22px; }
  .svc-name { font-size: 18px; }
  .svc-price { font-size: 17px; }

  .featured-visual { min-height: 280px; padding: 24px; border-radius: 24px; }
  .featured-big-icon { width: 140px; height: 140px; border-radius: 28px; font-size: 60px; }
  .featured-option { font-size: 11px; padding: 6px 10px; }
  .featured-detail h3 { font-size: 28px; }
  .featured-price { font-size: 28px; }
  .featured-bottom { flex-wrap: wrap; gap: 12px; }
  .featured-bottom .btn { width: 100%; justify-content: center; }

  .why-cell { padding: 28px 20px; }
  .why-stat { font-size: 26px; }
  .why-title { font-size: 16px; }
  .why-body { font-size: 12px; }

  .pricing-table-header { padding: 12px 16px; font-size: 10px; }
  .pricing-row { padding: 16px; }
  .pricing-row-type { font-size: 13px; }
  .pricing-val { font-size: 14px; }
  .pricing-addons { padding: 16px; }

  .review-card { padding: 20px; }
  .review-text { font-size: 14px; }
  .reviews-overall-num { font-size: 40px; }
  .reviews-stats { padding: 20px; gap: 20px; }
  .reviews-reuse-num { font-size: 28px; }

  .process-step { padding: 24px; }
  .process-step h3 { font-size: 18px; }
  .process-step-icon { width: 36px; height: 36px; border-radius: 10px; font-size: 16px; top: 20px; right: 20px; }

  .faq-question { font-size: 14px; padding: 16px 0; gap: 16px; }
  .faq-toggle { width: 28px; height: 28px; font-size: 14px; }
  .faq-answer-inner { font-size: 13px; padding-right: 0; }

  .area-card { padding: 18px; gap: 12px; }
  .area-icon { width: 38px; height: 38px; border-radius: 10px; font-size: 16px; }

  .cta-section { padding: 60px 0; }
  .cta-form-box { padding: 24px; border-radius: 20px; }
  .cta-input { height: 44px; font-size: 13px; }

  .page-hero { padding: 88px 0 40px; }
  .page-hero h1 { font-size: 28px; }
  .page-hero p { font-size: 14px; }

  .timeline-item { gap: 16px; }
  .timeline-icon { width: 36px; height: 36px; font-size: 14px; }
  .timeline-content { padding: 20px !important; }

  .form-control { height: 44px; font-size: 13px; }

  .cta-light { padding: 48px 0; }
  .cta-light-title { font-size: 20px; }

  .site-footer { padding: 40px 0 20px; }
  .footer-top { gap: 16px; }
  .footer-links-group { gap: 12px; }
  .footer-contact-inline { margin-bottom: 6px; }
  .floating-menu { bottom: 16px; right: 12px; }
  .floating-menu a, .floating-menu button { width: 42px; height: 42px; font-size: 16px; }
}

@media (max-width: 320px) {
  .container { padding: 0 12px; }
  .section { padding: 48px 0; }
  .display-xl { font-size: 28px; }
  .display-md { font-size: 22px; }
  .display-sm { font-size: 20px; }
  .body-lg { font-size: 15px; }

  .header-inner { height: 52px; padding: 0 12px; }
  .brand-logo { height: 22px; }
  .mobile-nav-inner { padding: 64px 16px 24px; }
  .mobile-nav-links a { font-size: 15px; padding: 12px 12px; }

  .hero-video-bg { padding-top: 80px; padding-bottom: 40px; }
  .hero-title { font-size: 28px; }
  .hero-desc { font-size: 14px; }
  .hero-badge { font-size: 10px; padding: 0 10px; height: 26px; }
  .hero-trust-row { gap: 8px; }
  .hero-stat-num { font-size: 20px; }

  .page-hero { padding: 80px 0 32px; }
  .page-hero h1 { font-size: 24px; }
  .page-hero p { font-size: 13px; }

  .why-cell { padding: 24px 16px; }
  .why-icon-box { width: 44px; height: 44px; font-size: 16px; top: 16px; right: 16px; }
  .why-stat { font-size: 24px; }

  .svc-card { padding: 16px; min-height: auto; }

  .process-step { padding: 20px; }
  .process-step-icon { width: 32px; height: 32px; font-size: 14px; top: 16px; right: 16px; }

  .timeline-item { gap: 12px; }
  .timeline-icon { width: 32px; height: 32px; font-size: 13px; }
  .timeline-content { padding: 16px !important; }
  .timeline-content h3 { font-size: 16px; }
  .timeline-content p { font-size: 13px; }

  .review-list-card { padding: 20px 0; }
  .review-text { font-size: 13px; }
  .review-stars i { font-size: 12px; }

  .form-control { height: 42px; font-size: 12px; }
  .form-submit { height: 48px; font-size: 14px; }
  .consult-contact-item { font-size: 13px; }
  .consult-contact-item i { width: 32px; height: 32px; font-size: 13px; }

  .company-stat-num { font-size: 24px; }
  .org-card { padding: 20px; }

  .faq-question { font-size: 13px; padding: 14px 0; }
  .faq-answer-inner { font-size: 12px; }

  .cta-light { padding: 40px 0; }
  .cta-light-title { font-size: 18px; }
  .cta-light-desc { font-size: 13px; }

  .btn-lg { height: 46px; font-size: 14px; padding: 0 20px; }
  .btn-sm { height: 32px; font-size: 12px; }

  .footer-desc { font-size: 12px; }
  .footer-contact-inline { gap: 10px; }
  .footer-contact-inline a { font-size: 12px; }
  .footer-links h4 { font-size: 11px; }
  .footer-links ul li a { font-size: 12px; }
  .footer-bottom-left { font-size: 11px; }
}

/* ==========================================
   SITE POPUP
   ========================================== */
.site-popup {
  position: fixed; inset: 0;
  display: none; align-items: center; justify-content: center;
  padding: 16px;
  pointer-events: none;
}
.site-popup.show { display: flex; }
.site-popup-center { z-index: 1000; }
.site-popup-bottom { z-index: 999; align-items: flex-end; justify-content: flex-end; padding: 0 24px 24px; }
.site-popup-top { z-index: 998; align-items: flex-start; padding: 0; }
.site-popup-overlay {
  position: absolute; inset: 0; background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(2px);
  pointer-events: auto;
}
.site-popup-box {
  position: relative; z-index: 1;
  width: 100%; max-width: 420px;
  background: #fff; border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  animation: popupIn .25s ease-out;
  pointer-events: auto;
}
.site-popup-slides { position: relative; }
.site-popup-slide { display: none; }
.site-popup-slide.active { display: block; }
.site-popup-nav {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 10px 16px; border-top: 1px solid var(--line);
  background: #fff;
}
.site-popup-prev, .site-popup-next {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-tint); border: none; cursor: pointer;
  display: grid; place-items: center;
  color: var(--ink-2); font-size: 11px;
  transition: background .15s ease, color .15s ease;
}
.site-popup-prev:hover, .site-popup-next:hover { background: var(--accent-soft); color: var(--accent-deep); }
.site-popup-counter {
  font-size: 12px; color: var(--ink-3); font-weight: 500;
  font-family: 'Inter', sans-serif;
}
@keyframes popupIn {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.site-popup-close {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.9); border: none;
  display: grid; place-items: center; cursor: pointer;
  color: var(--ink); font-size: 14px;
  transition: background .15s ease;
}
.site-popup-close:hover { background: #fff; }
.site-popup-link {
  display: block; color: inherit; text-decoration: none;
}
.site-popup-image {
  display: block; width: 100%; height: auto;
}
.site-popup-text { padding: 20px 24px; }
.site-popup-title {
  font-size: 18px; font-weight: 700; letter-spacing: -0.02em;
  margin: 0 0 8px; color: var(--ink);
}
.site-popup-content {
  font-size: 14px; line-height: 1.6; color: var(--ink-3); margin: 0;
}
.site-popup-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; background: var(--bg-tint);
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.site-popup-foot label {
  display: flex; align-items: center; gap: 6px; color: var(--ink-3); cursor: pointer;
}
.site-popup-foot input { accent-color: var(--accent); }
.site-popup-foot button {
  background: none; border: none; color: var(--ink-2);
  font-size: 13px; font-weight: 500; cursor: pointer; padding: 4px 8px;
}
.site-popup-foot button:hover { color: var(--ink); }

.site-popup-bottom .site-popup-box { max-width: 360px; }

.site-popup-top .site-popup-box {
  max-width: 100%; border-radius: 0;
  background: var(--ink); color: #fff;
  animation: none;
}
.site-popup-top .site-popup-slide { display: none; }
.site-popup-top .site-popup-slide.active { display: flex; align-items: center; }
.site-popup-top .site-popup-link {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 24px; flex: 1;
}
.site-popup-top .site-popup-image {
  width: 40px; height: 40px; object-fit: cover; border-radius: 6px;
}
.site-popup-top .site-popup-text {
  padding: 0; display: flex; align-items: center; gap: 12px;
}
.site-popup-top .site-popup-title { color: #fff; font-size: 14px; margin: 0; }
.site-popup-top .site-popup-content { color: rgba(255,255,255,0.7); font-size: 13px; margin: 0; }
.site-popup-top .site-popup-nav {
  background: transparent; border: none; padding: 0 8px;
}
.site-popup-top .site-popup-prev, .site-popup-top .site-popup-next {
  background: rgba(255,255,255,0.1); color: #fff;
}
.site-popup-top .site-popup-counter { color: rgba(255,255,255,0.7); }
.site-popup-top .site-popup-foot {
  background: transparent; border: none; padding: 0 56px 0 0;
}
.site-popup-top .site-popup-foot label { color: rgba(255,255,255,0.6); font-size: 12px; }
.site-popup-top .site-popup-foot button { color: rgba(255,255,255,0.6); }
.site-popup-top .site-popup-close {
  top: 50%; right: 16px; transform: translateY(-50%);
  background: transparent; color: #fff;
}

@media (max-width: 480px) {
  .site-popup-box { max-width: 100%; }
  .site-popup-bottom { padding: 0 12px 12px; }
  .site-popup-top .site-popup-link { padding: 10px 16px; }
  .site-popup-top .site-popup-text { flex-direction: column; align-items: flex-start; gap: 2px; }
  .site-popup-top .site-popup-nav { display: none; }
}
