/* =====================================================
   KTM Website — Shared Design System
   Brand: Sky #1FB7EA · Red #ED1C24 · Navy #0B1F3F
   Font: Pretendard
   ===================================================== */

:root {
  --sky: #1FB7EA;
  --sky-dark: #1496c2;
  --red: #ED1C24;
  --navy: #0B1F3F;
  --navy-2: #13294f;
  --bg-light: #F7F9FB;
  --bg-soft: #EEF3F7;
  --gray: #6B7280;
  --gray-dark: #374151;
  --line: #E5E7EB;
  --white: #ffffff;
  --maxw: 1180px;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(11,31,63,0.06);
  --shadow-md: 0 10px 30px rgba(11,31,63,0.10);
  --shadow-lg: 0 24px 60px rgba(11,31,63,0.16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== LOGO ===== */
.logo {
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  display: inline-flex;
  font-size: 28px;
}
.logo .k { color: var(--sky); }
.logo .t { color: var(--red); }
.logo .m { color: var(--navy); }
.logo.on-dark .m { color: #fff; }

/* ===== NAVBAR ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s, background .25s;
}
.nav.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}
.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-menu a {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-dark);
  transition: color .2s;
  position: relative;
}
.nav-menu a:hover { color: var(--sky); }
.nav-menu a.active { color: var(--navy); }
.nav-menu a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 3px;
  background: var(--sky);
  border-radius: 3px;
}
/* dropdown (고객지원) */
.nav-item { position: relative; display: flex; align-items: center; padding: 24px 0; }
.nav-parent { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--gray-dark); transition: color .2s; }
.nav-parent:hover, .nav-item:hover .nav-parent { color: var(--sky); }
.nav-parent.active { color: var(--navy); }
.nav-parent.active::after { content: ''; position: absolute; left: 0; right: 18px; bottom: 16px; height: 3px; background: var(--sky); border-radius: 3px; }
.caret { font-size: 9px; opacity: .6; transition: transform .25s; }
.nav-item:hover .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-md); padding: 8px; min-width: 188px;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s; z-index: 1001;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(2px); }
.dropdown a { padding: 12px 16px; border-radius: 8px; font-size: 15px; font-weight: 600; color: var(--gray-dark); white-space: nowrap; }
.dropdown a:hover { background: var(--bg-light); color: var(--sky); }

/* ===== 블로그·언론보도 임시 숨김 (콘텐츠 준비 전) =====
   다시 노출하려면 아래 두 줄만 삭제하면 됩니다. HTML/페이지는 그대로 보존됨. */
.nav-item:has(> a[href="blog.html"]) { display: none; }
.footer-col a[href="blog.html"], .footer-col a[href="press.html"] { display: none; }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 11px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--sky); transform: translateY(-1px); }
/* 메뉴 안의 '견적 문의'는 모바일 드롭다운 전용 — PC에선 숨김(우측 끝 버튼만 노출) */
.nav-menu .mobile-cta { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: .3s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: transform .15s, background .2s, box-shadow .2s;
}
.btn-primary { background: var(--sky); color: #fff; box-shadow: 0 8px 20px rgba(31,183,234,0.35); }
.btn-primary:hover { background: var(--sky-dark); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); }
.btn-outline { background: #fff; color: var(--navy); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--sky); color: var(--sky); }

/* ===== SECTION SHELL ===== */
.section { padding: 110px 0; }
.section.tight { padding: 80px 0; }
.section.bg-light { background: var(--bg-light); }
.section.bg-navy { background: var(--navy); color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--sky);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section.bg-navy .eyebrow { color: var(--sky); }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -1.5px;
  color: var(--navy);
}
.section.bg-navy .section-title { color: #fff; }
.section-title .sky { color: var(--sky); }
.section-title .red { color: var(--red); }
.section-lead {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--gray);
  line-height: 1.8;
  margin-top: 18px;
  max-width: 640px;
}
.section.bg-navy .section-lead { color: rgba(255,255,255,0.75); }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(8,20,40,0.92) 0%, rgba(11,31,63,0.78) 45%, rgba(11,31,63,0.45) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 120px 0 80px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31,183,234,0.18);
  border: 1px solid rgba(31,183,234,0.45);
  color: #bfeaff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -2.5px;
  margin-bottom: 26px;
}
.hero h1 .hl-sky {
  background: linear-gradient(transparent 62%, rgba(31,183,234,0.55) 62%);
  padding: 0 4px;
}
.hero h1 .hl-red { color: #ff5c62; }
.hero p.sub {
  font-size: clamp(16px, 2vw, 21px);
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 2px;
  text-align: center;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translate(-50%,0);} 50%{transform:translate(-50%,8px);} }

/* ===== STATS BAR ===== */
.stats {
  background: var(--navy);
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat {
  padding: 48px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat:last-child { border-right: none; }
.stat .num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--sky);
  line-height: 1;
}
.stat .num small { font-size: 0.45em; font-weight: 700; color: #fff; margin-left: 2px; }
.stat .label { margin-top: 12px; font-size: 15px; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ===== MANIFESTO STRIP ===== */
.manifesto {
  text-align: center;
}
.manifesto .quote {
  font-size: clamp(22px, 3.4vw, 38px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -1px;
  color: var(--navy);
  max-width: 880px;
  margin: 0 auto;
}
.manifesto .quote .red { color: var(--red); }
.manifesto .quote .sky { color: var(--sky); }
.manifesto .sign {
  margin-top: 28px;
  font-size: 16px;
  color: var(--gray);
  font-weight: 600;
}

/* ===== CARD GRIDS ===== */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .kicker {
  font-size: 13px; font-weight: 800; letter-spacing: 2px; color: var(--red);
  margin-bottom: 14px;
}
.card h3 {
  font-size: 21px; font-weight: 800; letter-spacing: -0.5px; color: var(--navy);
  margin-bottom: 12px; line-height: 1.35;
}
.card p { font-size: 15px; color: var(--gray); line-height: 1.75; }
.card .ico {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 20px;
}

/* deficit card (problem) */
.deficit {
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 30px 28px;
  background: #fff;
  height: 100%;
}
.deficit .num { font-size: 13px; font-weight: 900; color: var(--red); letter-spacing: 3px; margin-bottom: 10px; }
.deficit h3 { font-size: 22px; font-weight: 900; letter-spacing: -0.5px; color: var(--navy); margin-bottom: 14px; }
.deficit .q {
  font-size: 15px; color: var(--gray-dark); font-style: italic; line-height: 1.6;
  border-left: 3px solid var(--sky); padding-left: 14px;
}

/* ===== SPLIT (image + text) ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse .split-text { order: 2; }
.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-text h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 900; letter-spacing: -1.5px; line-height: 1.3; color: var(--navy);
  margin-bottom: 18px;
}
.split-text h2 .sky { color: var(--sky); }
.split-text h2 .red { color: var(--red); }
.split-text p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 14px; }

.feature-list { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.feature-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 16px; color: var(--gray-dark); line-height: 1.6;
}
.feature-list li .chk {
  flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(31,183,234,0.12); color: var(--sky);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; margin-top: 2px;
}
.feature-list li strong { color: var(--navy); font-weight: 700; }

/* ===== PROMISE (5 things we never do) ===== */
.promise-list { display: flex; flex-direction: column; gap: 14px; }
.promise {
  display: flex; gap: 22px; align-items: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 26px 30px;
  transition: background .2s, border-color .2s;
}
.promise:hover { background: rgba(255,255,255,0.09); border-color: rgba(31,183,234,0.4); }
.promise .pn {
  flex-shrink: 0;
  font-size: 30px; font-weight: 900; color: var(--sky);
  letter-spacing: -1px; line-height: 1; width: 48px;
}
.promise h4 { font-size: 19px; font-weight: 800; color: #fff; margin-bottom: 6px; letter-spacing: -0.5px; }
.promise p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.7; }
.promise p .em { color: #bfeaff; font-weight: 700; }
.never-tag {
  display: inline-block;
  font-size: 14px; font-weight: 700; color: #ff8a8e;
  border: 1px solid rgba(255,90,95,0.5);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 20px;
}

/* ===== SERVICE CARDS ===== */
.svc-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card .thumb { aspect-ratio: 16/11; overflow: hidden; }
.svc-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.svc-card:hover .thumb img { transform: scale(1.05); }
.svc-card .body { padding: 28px 26px 32px; flex: 1; display: flex; flex-direction: column; }
.svc-card .body .no { font-size: 14px; font-weight: 900; color: var(--sky); letter-spacing: 2px; margin-bottom: 10px; }
.svc-card .body h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.5px; }
.svc-card .body .tag { font-size: 14px; color: var(--sky-dark); font-weight: 600; margin-bottom: 14px; }
.svc-card .body p { font-size: 15px; color: var(--gray); line-height: 1.7; }

/* ===== CAPABILITY GROUPS ===== */
.cap-group {
  display: grid;
  grid-template-columns: 180px 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  background: #fff;
}
.cap-group .cat {
  background: var(--navy); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 30px 16px; gap: 8px;
}
.cap-group:nth-child(1) .cat { background: var(--sky); }
.cap-group:nth-child(3) .cat { background: var(--red); }
.cap-group .cat .ico { font-size: 34px; }
.cap-group .cat .name { font-size: 17px; font-weight: 800; letter-spacing: -0.5px; }
.cap-group .items { padding: 24px 30px; display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.cap-group .item { display: flex; gap: 12px; align-items: baseline; font-size: 15.5px; line-height: 1.55; }
.cap-group .item .dot { color: var(--red); font-weight: 900; flex-shrink: 0; }
.cap-group .item .t { font-weight: 800; color: var(--navy); }
.cap-group .item .d { color: var(--gray); }

/* ===== COMPARISON TABLE ===== */
.vs-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.vs-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 640px; }
.vs-table th, .vs-table td { padding: 18px 20px; text-align: left; font-size: 15px; vertical-align: middle; }
.vs-table thead th { background: var(--navy); color: #fff; font-weight: 800; font-size: 16px; }
.vs-table thead th.ktm { background: var(--sky); }
.vs-table tbody tr { border-bottom: 1px solid var(--line); }
.vs-table tbody tr:nth-child(even) { background: var(--bg-light); }
.vs-table .col-label { font-weight: 800; color: var(--navy); width: 18%; }
.vs-table .col-other { color: var(--gray); width: 40%; text-decoration: line-through; text-decoration-color: rgba(237,28,36,0.35); }
.vs-table .col-ktm { color: var(--navy); font-weight: 700; width: 42%; background: rgba(31,183,234,0.07); }

/* ===== GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 520px;
}
.gallery .g {
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery .g.main { grid-row: 1 / 3; }
.gallery .g img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery .g:hover img { transform: scale(1.06); }

/* ===== REPORT / PROOF ===== */
.report-mockup {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.report-items { display: flex; flex-direction: column; gap: 18px; }
.report-item { display: flex; gap: 18px; align-items: flex-start; }
.report-item .ico {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 12px;
  background: rgba(31,183,234,0.12); color: var(--sky);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.report-item h4 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.report-item p { font-size: 15px; color: var(--gray); line-height: 1.7; }

/* ===== CTA BAND ===== */
.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.cta-band .cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .cta-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,31,63,0.88), rgba(8,20,40,0.92)); }
.cta-band .inner { position: relative; z-index: 2; padding: 110px 0; }
.cta-band h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900; letter-spacing: -1.5px; line-height: 1.35; margin-bottom: 18px;
}
.cta-band h2 .hl { color: var(--sky); }
.cta-band p { font-size: 18px; color: rgba(255,255,255,0.82); margin-bottom: 36px; line-height: 1.7; }
.cta-band .tel {
  font-size: clamp(30px, 5vw, 46px); font-weight: 900; letter-spacing: -1px; margin-bottom: 30px;
}
.cta-band .tag {
  margin-top: 40px; font-size: 18px; font-weight: 800; font-style: italic; color: #fff;
}

/* ===== FOOTER ===== */
.footer {
  background: #081428;
  color: rgba(255,255,255,0.6);
  padding: 64px 0 36px;
  font-size: 14px;
}
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.footer .logo { font-size: 30px; margin-bottom: 16px; }
.footer-brand p { max-width: 320px; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h5 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; letter-spacing: 1px; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,0.6); margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--sky); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.4);
}

/* ===== FLOATING MOBILE CTA ===== */
.float-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.float-cta .btn { width: 100%; justify-content: center; }

/* ===== PAGE HEADER (sub pages) ===== */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(31,183,234,0.22), transparent 70%);
}
.page-hero .eyebrow { color: var(--sky); }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; letter-spacing: -2px; line-height: 1.25; position: relative; }
.page-hero p { margin-top: 18px; font-size: 18px; color: rgba(255,255,255,0.75); max-width: 620px; position: relative; }
.crumb { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 18px; position: relative; }
.crumb a:hover { color: var(--sky); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact-info .item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-info .item .ico {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
  background: var(--bg-light); color: var(--sky);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.contact-info .item h4 { font-size: 14px; color: var(--gray); font-weight: 600; margin-bottom: 4px; }
.contact-info .item p { font-size: 18px; font-weight: 700; color: var(--navy); }
.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 20px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 15px; color: var(--navy); transition: border-color .2s;
  background: #fff;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--sky); }
.form-row textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--gray); margin-top: 14px; text-align: center; }

/* ===== PROCESS STEPS ===== */
.steps {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; position: relative; transition: transform .25s, box-shadow .25s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step .n {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--sky); color: #fff; font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.step h4 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 6px; letter-spacing: -0.3px; }
.step p { font-size: 13.5px; color: var(--gray); line-height: 1.6; }

/* ===== PLATFORM / TAG CHIPS ===== */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  background: #fff; border: 1px solid var(--line); border-radius: 100px;
  padding: 12px 24px; font-size: 16px; font-weight: 700; color: var(--navy);
  box-shadow: var(--shadow-sm);
}

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 840px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line); border-radius: 12px; margin-bottom: 14px;
  background: #fff; overflow: hidden; transition: box-shadow .2s, border-color .2s;
}
.faq-item.open { border-color: var(--sky); box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 26px; cursor: pointer; font-size: 17px; font-weight: 700; color: var(--navy);
  list-style: none; user-select: none;
}
.faq-q .qmark { color: var(--sky); font-weight: 900; margin-right: 8px; }
.faq-q .ic {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-light); color: var(--sky);
  display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; line-height: 1;
  transition: transform .25s, background .2s, color .2s;
}
.faq-item.open .faq-q .ic { background: var(--sky); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a .inner { padding: 0 26px 24px 50px; font-size: 15.5px; color: var(--gray); line-height: 1.8; }

/* ===== NOTICE LIST ===== */
.notice-list { max-width: 840px; margin: 0 auto; border-top: 2px solid var(--navy); }
.notice-row {
  display: flex; align-items: center; gap: 20px; padding: 22px 8px;
  border-bottom: 1px solid var(--line); transition: background .2s;
}
.notice-row:hover { background: var(--bg-light); }
.notice-row .tag {
  flex-shrink: 0; font-size: 12px; font-weight: 800; letter-spacing: 1px;
  color: var(--sky-dark); background: rgba(31,183,234,0.1); padding: 5px 12px; border-radius: 100px;
}
.notice-row .tit { flex: 1; font-size: 16px; font-weight: 600; color: var(--navy); }
.notice-row .date { flex-shrink: 0; font-size: 14px; color: var(--gray); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-menu, .nav-right .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-menu {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px; box-shadow: var(--shadow-md);
  }
  .nav.open .nav-menu a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); font-size: 17px; }
  .nav.open .nav-menu a.active::after { display: none; }
  .nav.open .nav-menu .mobile-cta { display: inline-flex; margin-top: 14px; }
  .mobile-cta { display: none; }

  /* dropdown -> static expanded list on mobile */
  .nav-item { padding: 0; width: 100%; flex-direction: column; align-items: flex-start; }
  .nav-item .caret { display: none; }
  .nav-parent.active::after { display: none; }
  .nav.open .nav-menu .nav-parent { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); font-size: 17px; }
  .nav.open .nav-menu .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-radius: 0; padding: 0; min-width: 0; width: 100%;
  }
  .nav.open .nav-menu .dropdown a { padding: 11px 0 11px 16px; font-size: 16px; color: var(--gray); border-bottom: 1px solid var(--line); }

  .section { padding: 72px 0; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-text { order: 0; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .cap-group { grid-template-columns: 1fr; }
  .cap-group .cat { flex-direction: row; gap: 12px; padding: 16px; }
  .gallery { height: auto; grid-template-columns: 1fr 1fr; }
  .gallery .g.main { grid-row: auto; grid-column: 1 / 3; aspect-ratio: 16/9; }
  .gallery .g:not(.main) { aspect-ratio: 4/3; }
  .float-cta { display: block; }
  body { padding-bottom: 72px; }
}

@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .contact-form { padding: 28px 22px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1); }
}
