/* =========================================================
   동서오토미션 - 공통 스타일시트
   자동변속기(미션) 전문 수리점
   ========================================================= */

:root {
  --navy: #0d2b52;
  --navy-light: #16407a;
  --blue: #1f6fd1;
  --blue-soft: #eaf2fc;
  --accent: #34b34a;       /* 미션 선반의 그린 포인트 */
  --accent-dark: #25913a;
  --ink: #1c2530;
  --gray: #5b6675;
  --line: #e4e8ee;
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --max: 1180px;
  --radius: 12px;
  --shadow: 0 8px 28px rgba(13, 43, 82, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- 상단 알림 바 ---------- */
.topbar {
  background: var(--navy);
  color: #cfe0f5;
  font-size: 13px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
}
.topbar a { color: #cfe0f5; }
.topbar .topbar-right span { margin-left: 18px; }

/* ---------- 헤더 / 내비게이션 ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.logo .mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}
.logo small { display: block; font-size: 11px; color: var(--gray); font-weight: 600; letter-spacing: 0; }

.menu {
  display: flex;
  gap: 4px;
}
.menu > li > a {
  display: block;
  padding: 12px 18px;
  font-weight: 600;
  color: var(--ink);
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.menu > li > a:hover,
.menu > li > a.active {
  color: var(--blue);
  background: var(--blue-soft);
}
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 700;
}
.nav-cta:hover { background: var(--accent-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ---------- 히어로 ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--blue) 100%);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(52,179,74,.35), transparent 70%);
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
}
.hero h1 {
  font-size: 42px;
  line-height: 1.25;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.hero h1 .hl { color: #7fe08f; }
.hero p { font-size: 17px; color: #d4e2f5; margin-bottom: 28px; max-width: 520px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.hero-badges span {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: 7px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  aspect-ratio: 4/3;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- 버튼 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 0;
  transition: transform .15s, background .2s, box-shadow .2s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.22); }
.btn-line { background: #fff; color: var(--navy); border: 1px solid var(--line); }
.btn-line:hover { border-color: var(--blue); color: var(--blue); }

/* ---------- 섹션 공통 ---------- */
.section { padding: 80px 0; }
.section.soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 50px; }
.section-head .eyebrow {
  display: inline-block;
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-head h2 { font-size: 32px; letter-spacing: -1px; margin-bottom: 14px; }
.section-head p { color: var(--gray); font-size: 16px; }

/* ---------- 빠른 서비스 카드 ---------- */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quick-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform .2s, border-color .2s;
}
.quick-card:hover { transform: translateY(-6px); border-color: var(--blue); }
.quick-card .ico {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.quick-card h3 { font-size: 19px; margin-bottom: 10px; }
.quick-card p { color: var(--gray); font-size: 15px; }
.quick-card .more { display: inline-block; margin-top: 16px; color: var(--blue); font-weight: 700; font-size: 14px; }

/* ---------- 특징 / 강점 ---------- */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.feature-split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-list { display: grid; gap: 18px; margin-top: 24px; }
.feature-item { display: flex; gap: 14px; }
.feature-item .num {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
}
.feature-item h4 { font-size: 17px; margin-bottom: 3px; }
.feature-item p { color: var(--gray); font-size: 14px; }

/* ---------- 통계 ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat .v { font-size: 40px; font-weight: 800; color: var(--navy); letter-spacing: -1px; }
.stat .v span { color: var(--accent); }
.stat .l { color: var(--gray); font-weight: 600; margin-top: 6px; }

/* ---------- 갤러리 ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery figure {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; left: 0; bottom: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: #fff; padding: 18px 16px 12px; font-weight: 600; font-size: 14px;
}

/* ---------- CTA 배너 ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy), var(--blue));
  color: #fff;
  border-radius: 18px;
  padding: 50px;
  text-align: center;
}
.cta-banner h2 { font-size: 30px; margin-bottom: 12px; letter-spacing: -1px; }
.cta-banner p { color: #d4e2f5; margin-bottom: 26px; }
.cta-banner .phone { font-size: 34px; font-weight: 800; margin-bottom: 22px; }

/* ---------- 페이지 헤더(서브) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  padding: 70px 0;
  text-align: center;
}
.page-hero h1 { font-size: 36px; letter-spacing: -1px; margin-bottom: 10px; }
.page-hero p { color: #cfe0f5; }
.breadcrumb { margin-top: 14px; font-size: 13px; color: #9fb8d6; }
.breadcrumb a:hover { color: #fff; }

/* ---------- 일반 콘텐츠 ---------- */
.prose h2 { font-size: 26px; margin: 0 0 16px; letter-spacing: -.5px; }
.prose h3 { font-size: 20px; margin: 28px 0 12px; color: var(--navy); }
.prose p { color: var(--gray); margin-bottom: 14px; }
.lead {
  font-size: 19px; color: var(--ink); line-height: 1.7;
  border-left: 4px solid var(--accent); padding-left: 20px; margin-bottom: 28px;
}

/* ---------- 정보 테이블 ---------- */
.info-table { width: 100%; border-collapse: collapse; margin: 10px 0; }
.info-table th, .info-table td {
  text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--line); font-size: 15px;
}
.info-table th { width: 160px; background: var(--bg-soft); color: var(--navy); font-weight: 700; }

/* ---------- 증상/카드 리스트 ---------- */
.card-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.symptom-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.symptom-card h4 { color: var(--navy); font-size: 17px; margin-bottom: 8px; display: flex; gap: 10px; align-items: center; }
.symptom-card h4 .dot { width: 9px; height: 9px; background: var(--accent); border-radius: 50%; }
.symptom-card p { color: var(--gray); font-size: 14px; }

/* ---------- 프로세스 단계 ---------- */
.process-steps { display: grid; gap: 18px; }
.step {
  display: grid; grid-template-columns: 70px 1fr; gap: 22px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 26px; box-shadow: var(--shadow);
}
.step .step-no {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff; font-weight: 800; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
}
.step h4 { font-size: 18px; margin-bottom: 6px; }
.step p { color: var(--gray); font-size: 15px; }

/* ---------- 장비 그리드 ---------- */
.equip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.equip-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow);
}
.equip-card .tag {
  display: inline-block; font-size: 12px; font-weight: 700; color: var(--accent-dark);
  background: #e7f6ea; padding: 5px 12px; border-radius: 20px; margin-bottom: 14px;
}
.equip-card h4 { font-size: 18px; margin-bottom: 8px; }
.equip-card p { color: var(--gray); font-size: 14px; }

/* ---------- 연락 / 약도 ---------- */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow);
}
.contact-card .row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-card .row:last-child { border-bottom: 0; }
.contact-card .row .ico { color: var(--blue); font-size: 20px; flex: 0 0 24px; }
.contact-card .row .label { font-size: 13px; color: var(--gray); }
.contact-card .row .val { font-weight: 700; color: var(--ink); }

/* ---------- 푸터 ---------- */
.footer {
  background: var(--navy);
  color: #b9c9dd;
  padding: 56px 0 28px;
  font-size: 14px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.footer .f-logo { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer a:hover { color: #fff; }
.footer li { margin-bottom: 9px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  color: #8aa1ba; font-size: 13px;
}

/* ---------- 플로팅 전화 버튼 ---------- */
.float-call {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  background: var(--accent); color: #fff;
  padding: 14px 22px; border-radius: 40px;
  font-weight: 800; box-shadow: 0 10px 26px rgba(52,179,74,.45);
  display: flex; align-items: center; gap: 9px;
}
.float-call:hover { background: var(--accent-dark); }

/* ---------- 절제된 진입 애니메이션 ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: no-preference) {
  /* 메인 히어로 : 로드 시 부드럽게 순차 등장 */
  .hero-text > h1,
  .hero-text > p,
  .hero-badges,
  .hero-actions,
  .hero-img { animation: fadeUp .7s cubic-bezier(.22,.61,.36,1) both; }
  .hero-text > h1 { animation-delay: .05s; }
  .hero-text > p  { animation-delay: .15s; }
  .hero-badges    { animation-delay: .25s; }
  .hero-actions   { animation-delay: .35s; }
  .hero-img       { animation-delay: .2s; animation-duration: .85s; }

  /* 서브 페이지 헤더 */
  .page-hero h1         { animation: fadeUp .6s ease both .05s; }
  .page-hero p          { animation: fadeUp .6s ease both .15s; }
  .page-hero .breadcrumb{ animation: fadeUp .6s ease both .22s; }
}

/* 헤더 : 스크롤 시 그림자 부드럽게 */
.header { transition: box-shadow .3s ease; }
.header.scrolled { box-shadow: 0 4px 20px rgba(13, 43, 82, 0.08); }

/* 로고 : 살짝의 반응 */
.logo .mark { transition: transform .3s ease; }
.logo:hover .mark { transform: rotate(-6deg); }

/* ---------- 라인 아이콘 시스템 ---------- */
.ic {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.14em;
  background-color: currentColor;
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
}
.ic-phone   { -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/></svg>"); mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/></svg>"); }
.ic-clock   { -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><path d='M12 6v6l4 2'/></svg>"); mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><path d='M12 6v6l4 2'/></svg>"); }
.ic-pin     { -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/><circle cx='12' cy='10' r='3'/></svg>"); mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/><circle cx='12' cy='10' r='3'/></svg>"); }
.ic-calendar{ -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2'/><path d='M16 2v4M8 2v4M3 10h18'/></svg>"); mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2'/><path d='M16 2v4M8 2v4M3 10h18'/></svg>"); }
.ic-tool    { -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M14.7 6.3a4 4 0 0 0 5.3 5.3l-7.6 7.6a2.1 2.1 0 0 1-3-3l7.6-7.6a4 4 0 0 0-5.3-5.3l3 3-1.4 3.7-3.7 1.4-3-3a4 4 0 0 0 4.4 1.6z'/></svg>"); mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M14.7 6.3a4 4 0 0 0 5.3 5.3l-7.6 7.6a2.1 2.1 0 0 1-3-3l7.6-7.6a4 4 0 0 0-5.3-5.3l3 3-1.4 3.7-3.7 1.4-3-3a4 4 0 0 0 4.4 1.6z'/></svg>"); }
.ic-map     { -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M9 3 3 6v15l6-3 6 3 6-3V3l-6 3-6-3z'/><path d='M9 3v15M15 6v15'/></svg>"); mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M9 3 3 6v15l6-3 6 3 6-3V3l-6 3-6-3z'/><path d='M9 3v15M15 6v15'/></svg>"); }
.ic-check   { -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>"); mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>"); }
.ic-wrench  { -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M14.7 6.3a4 4 0 0 0 5.3 5.3l-7.6 7.6a2.1 2.1 0 0 1-3-3l7.6-7.6a4 4 0 0 0-5.3-5.3l3 3-1.4 3.7-3.7 1.4-3-3a4 4 0 0 0 4.4 1.6z'/></svg>"); mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M14.7 6.3a4 4 0 0 0 5.3 5.3l-7.6 7.6a2.1 2.1 0 0 1-3-3l7.6-7.6a4 4 0 0 0-5.3-5.3l3 3-1.4 3.7-3.7 1.4-3-3a4 4 0 0 0 4.4 1.6z'/></svg>"); }
.ic-gear    { -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='3'/><path d='M19.4 15a1.6 1.6 0 0 0 .3 1.8l.1.1a2 2 0 1 1-2.8 2.8l-.1-.1a1.6 1.6 0 0 0-1.8-.3 1.6 1.6 0 0 0-1 1.5V21a2 2 0 1 1-4 0v-.1a1.6 1.6 0 0 0-1-1.5 1.6 1.6 0 0 0-1.8.3l-.1.1a2 2 0 1 1-2.8-2.8l.1-.1a1.6 1.6 0 0 0 .3-1.8 1.6 1.6 0 0 0-1.5-1H3a2 2 0 1 1 0-4h.1a1.6 1.6 0 0 0 1.5-1 1.6 1.6 0 0 0-.3-1.8l-.1-.1a2 2 0 1 1 2.8-2.8l.1.1a1.6 1.6 0 0 0 1.8.3H9a1.6 1.6 0 0 0 1-1.5V3a2 2 0 1 1 4 0v.1a1.6 1.6 0 0 0 1 1.5 1.6 1.6 0 0 0 1.8-.3l.1-.1a2 2 0 1 1 2.8 2.8l-.1.1a1.6 1.6 0 0 0-.3 1.8V9a1.6 1.6 0 0 0 1.5 1H21a2 2 0 1 1 0 4h-.1a1.6 1.6 0 0 0-1.5 1z'/></svg>"); mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='3'/><path d='M19.4 15a1.6 1.6 0 0 0 .3 1.8l.1.1a2 2 0 1 1-2.8 2.8l-.1-.1a1.6 1.6 0 0 0-1.8-.3 1.6 1.6 0 0 0-1 1.5V21a2 2 0 1 1-4 0v-.1a1.6 1.6 0 0 0-1-1.5 1.6 1.6 0 0 0-1.8.3l-.1.1a2 2 0 1 1-2.8-2.8l.1-.1a1.6 1.6 0 0 0 .3-1.8 1.6 1.6 0 0 0-1.5-1H3a2 2 0 1 1 0-4h.1a1.6 1.6 0 0 0 1.5-1 1.6 1.6 0 0 0-.3-1.8l-.1-.1a2 2 0 1 1 2.8-2.8l.1.1a1.6 1.6 0 0 0 1.8.3H9a1.6 1.6 0 0 0 1-1.5V3a2 2 0 1 1 4 0v.1a1.6 1.6 0 0 0 1 1.5 1.6 1.6 0 0 0 1.8-.3l.1-.1a2 2 0 1 1 2.8 2.8l-.1.1a1.6 1.6 0 0 0-.3 1.8V9a1.6 1.6 0 0 0 1.5 1H21a2 2 0 1 1 0 4h-.1a1.6 1.6 0 0 0-1.5 1z'/></svg>"); }
.ic-monitor { -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='3' width='20' height='14' rx='2'/><path d='M8 21h8M12 17v4'/></svg>"); mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='3' width='20' height='14' rx='2'/><path d='M8 21h8M12 17v4'/></svg>"); }
.ic-search  { -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='8'/><path d='m21 21-4.3-4.3'/></svg>"); mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='8'/><path d='m21 21-4.3-4.3'/></svg>"); }
.ic-refresh { -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M23 4v6h-6M1 20v-6h6'/><path d='M3.5 9a9 9 0 0 1 14.9-3.4L23 10M1 14l4.6 4.4A9 9 0 0 0 20.5 15'/></svg>"); mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M23 4v6h-6M1 20v-6h6'/><path d='M3.5 9a9 9 0 0 1 14.9-3.4L23 10M1 14l4.6 4.4A9 9 0 0 0 20.5 15'/></svg>"); }
.ic-droplet { -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 2.7 6.3 8.4a8 8 0 1 0 11.4 0z'/></svg>"); mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 2.7 6.3 8.4a8 8 0 1 0 11.4 0z'/></svg>"); }
.ic-cpu     { -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='5' y='5' width='14' height='14' rx='2'/><rect x='9' y='9' width='6' height='6'/><path d='M9 2v3M15 2v3M9 19v3M15 19v3M2 9h3M2 15h3M19 9h3M19 15h3'/></svg>"); mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='5' y='5' width='14' height='14' rx='2'/><rect x='9' y='9' width='6' height='6'/><path d='M9 2v3M15 2v3M9 19v3M15 19v3M2 9h3M2 15h3M19 9h3M19 15h3'/></svg>"); }
.ic-car     { -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 13l2-5a3 3 0 0 1 2.8-2h8.4A3 3 0 0 1 19 8l2 5v5a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1H6v1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1z'/><circle cx='7.5' cy='16.5' r='.5'/><circle cx='16.5' cy='16.5' r='.5'/></svg>"); mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 13l2-5a3 3 0 0 1 2.8-2h8.4A3 3 0 0 1 19 8l2 5v5a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1H6v1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1z'/><circle cx='7.5' cy='16.5' r='.5'/><circle cx='16.5' cy='16.5' r='.5'/></svg>"); }

/* 광고전화 사절 — 주변 색에 녹아드는 절제된 주석 톤 */
.ad-no {
  display: inline-block;
  font-size: 0.74em;
  font-weight: 600;
  color: currentColor;
  opacity: 0.66;
  background: transparent;
  border: 1px solid currentColor;
  border-color: color-mix(in srgb, currentColor 28%, transparent);
  padding: 1px 7px;
  border-radius: 999px;
  margin-left: 7px;
  vertical-align: middle;
  white-space: nowrap;
  letter-spacing: -0.2px;
}

/* 아이콘이 들어간 요소 정렬 보정 */
.topbar .topbar-right span,
.contact-card .row .ico,
.footer li { display: inline-flex; align-items: center; gap: 7px; }
.footer li { display: flex; }

/* ---------- 반응형 ---------- */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 50px; padding-bottom: 50px; }
  .hero h1 { font-size: 32px; }
  .quick-grid, .equip-grid, .gallery { grid-template-columns: 1fr 1fr; }
  .feature-split, .contact-split { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* 태블릿/좁은 화면: 가로 메뉴가 넘치기 전에 햄버거로 전환 */
@media (max-width: 820px) {
  .menu {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px 16px 16px; box-shadow: var(--shadow);
    display: none;
  }
  .menu.open { display: flex; }
  .menu > li > a { padding: 14px 8px; border-radius: 0; border-bottom: 1px solid var(--line); }
  .menu > li:last-child > a.nav-cta { text-align: center; margin-top: 6px; }
  .hamburger { display: flex; }
}
@media (max-width: 640px) {
  .quick-grid, .gallery, .equip-grid, .card-list, .stats { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .cta-banner { padding: 36px 22px; }
  .step { grid-template-columns: 1fr; }
  .topbar .topbar-right span:not(:last-child) { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}
