/* ═══ Primary: 딥 슬레이트 #1e3a5f — 건설·시공·전문가 업종 ═══ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;700;800&display=swap');

:root {
  --primary: #1e3a5f;
  --primary-hover: #2c5282;
  --accent: #2c6fad;
  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --card-radius: 0.75rem;
  --btn-radius: 0.375rem;
  --shadow: 0 4px 16px rgba(30,58,95,0.10);
  --shadow-hover: 0 12px 32px rgba(30,58,95,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  word-break: keep-all;
  overflow-wrap: break-word;
  line-height: 1.7;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── 공통 섹션 ── */
section { padding: 5rem 0; }
section:nth-of-type(even) { background: var(--bg-alt); }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--primary);
  background: rgba(30,58,95,0.08);
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-desc {
  color: var(--text-muted);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
  line-height: 1.8;
}

/* ── 애니메이션 ── */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.fade-in-up.is-visible { opacity: 1; transform: translateY(0); }

/* ── 버튼 ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--btn-radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-white:hover { background: var(--bg-alt); }

/* ── HEADER ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  height: 64px;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-wrap { display: flex; align-items: center; gap: 0.6rem; }
.logo-wrap img { height: 38px; width: auto; }
.logo-text { font-size: 1.05rem; font-weight: 800; color: var(--primary); }

/* ── SERVICE 섹션 ── */
.service-section { background: var(--bg-alt); padding: 5rem 0 4rem; margin-top: 64px; }
.service-intro { text-align: center; margin-bottom: 3rem; }
.service-intro .section-title { text-align: center; }
.service-intro p { color: var(--text-muted); font-weight: 300; max-width: 580px; margin: 0 auto; line-height: 1.85; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: block;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--primary); }
.service-card-img { aspect-ratio: 3/4; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-body { padding: 1rem; }
.service-card-body h3 { font-size: 0.9rem; font-weight: 800; margin-bottom: 0.3rem; }
.service-card-body p { font-size: 0.78rem; font-weight: 300; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.service-card-more { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); margin-top: 0.4rem; display: block; transition: color 0.3s; }
.service-card:hover .service-card-more { color: var(--primary); }

/* ── HERO ── */
.hero-section { background: #000; padding: 0; }
.hero-slider-wrap { position: relative; overflow: hidden; height: 640px; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.6) 100%); }
@media (max-width: 768px) { .hero-slider-wrap { height: 520px; } }
@media (max-width: 480px) { .hero-slider-wrap { height: 440px; } }

.hero-indicators { display: flex; justify-content: center; gap: 0.5rem; padding: 0.75rem 0; position: absolute; bottom: 0; left: 0; right: 0; z-index: 11; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; transition: background 0.3s; }
.hero-dot.active { background: #fff; }

.hero-text-area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  width: 100%;
  padding: 0 1.5rem;
}
.hero-brand { font-size: 0.8rem; font-weight: 400; color: rgba(255,255,255,0.8); margin-bottom: 0.5rem; }
.hero-keyword { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 0.75rem; }
.hero-desc { color: rgba(255,255,255,0.85); font-weight: 300; margin-bottom: 1.5rem; line-height: 1.8; }
.hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.5rem; justify-content: center; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.hero-tag { font-size: 0.78rem; color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.15); padding: 0.25rem 0.75rem; border-radius: 2rem; border: 1px solid rgba(255,255,255,0.2); }

/* ── 갤러리 ── */
.gallery-section { max-width: 1200px; margin: 0 auto; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-card { border: 1px solid var(--border); border-radius: var(--card-radius); overflow: hidden; transition: all 0.3s; display: block; }
.gallery-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.card-compare { display: grid; grid-template-columns: 1fr 1fr; }
.card-compare .side { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.card-compare .side img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-card:hover .card-compare .side img { transform: scale(1.03); }
.compare-badge { position: absolute; bottom: 0.6rem; left: 0.6rem; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; padding: 0.15rem 0.5rem; border-radius: 0.2rem; color: #fff; }
.compare-badge.before { background: rgba(0,0,0,0.55); }
.compare-badge.after  { background: var(--primary); }

.gallery-card .card-body { padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.35rem; }
.card-meta { display: flex; align-items: center; gap: 0.5rem; }
.case-badge { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; background: var(--primary); color: #fff; padding: 0.15rem 0.5rem; border-radius: 0.2rem; }
.card-location { font-size: 0.75rem; color: var(--text-muted); }
.card-title { font-weight: 800; font-size: 1rem; line-height: 1.4; }
.card-more { font-size: 0.875rem; font-weight: 600; color: var(--text-muted); transition: color 0.3s; }
.gallery-card:hover .card-more { color: var(--primary); }

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } }

.why-card { background: #fff; border: 1px solid var(--border); border-radius: var(--card-radius); padding: 1.75rem 1.5rem; transition: transform 0.3s, box-shadow 0.3s; }
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.why-icon { width: 44px; height: 44px; background: rgba(30,58,95,0.08); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.why-icon svg { width: 22px; height: 22px; stroke: var(--primary); }
.why-card h3 { font-weight: 800; font-size: 1rem; margin-bottom: 0.6rem; }
.why-card p { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; line-height: 1.75; }

/* ── PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  position: relative;
}
.process-grid::before { content: ''; position: absolute; top: 28px; left: calc(12.5% + 20px); right: calc(12.5% + 20px); height: 2px; background: var(--border); z-index: 0; }
@media (max-width: 768px) { .process-grid { grid-template-columns: 1fr; } .process-grid::before { display: none; } }

.process-step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 56px; height: 56px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; letter-spacing: 0.05em; margin: 0 auto 1rem; }
.process-step h3 { font-weight: 800; font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.85rem; color: var(--text-muted); font-weight: 300; line-height: 1.7; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 2rem auto 0; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--card-radius); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 1.25rem 1.5rem; font-size: 0.95rem; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: var(--text); }
.faq-q:hover { background: var(--bg-alt); }
.faq-icon { flex-shrink: 0; width: 20px; height: 20px; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--text-muted); font-weight: 300; line-height: 1.8; }
.faq-item.open .faq-a { display: block; }

/* ── CTA ── */
/* section.cta-section 으로 명시도(0,1,1) 높여 section:nth-of-type(even) 덮어쓰기 방지 */
section.cta-section { background: var(--primary); color: #fff; text-align: center; }
section.cta-section .section-label { background: rgba(255,255,255,0.15); color: #fff; }
section.cta-section .section-title { color: #fff; max-width: 720px; }
.cta-desc { color: rgba(255,255,255,0.75); font-weight: 300; max-width: 500px; margin: 0 auto 2rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.trust-badges { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: rgba(255,255,255,0.8); }
.trust-badge svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.7); }

/* ── FOOTER ── */
#site-footer { background: var(--text); color: rgba(255,255,255,0.85); padding: 3rem 0 1.5rem; }
.footer-inner { display: grid; grid-template-columns: 1fr 180px; gap: 3rem; margin-bottom: 2rem; }
@media (max-width: 640px) { .footer-inner { grid-template-columns: 1fr; gap: 2rem; } }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.footer-logo-text { font-weight: 800; color: #fff; font-size: 1rem; }
.footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.55); font-weight: 300; line-height: 1.8; margin-bottom: 1rem; }
.footer-contact-link { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.3); display: inline-block; }
.footer-nav h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-nav a { font-size: 0.85rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: space-between; font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ── FLOATING ── */
#floating-btn {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 999;
}
.floating-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 3rem;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(30,58,95,0.35);
  transition: transform 0.2s;
}
.floating-inner:hover { transform: scale(1.05); }
.floating-inner svg { width: 18px; height: 18px; stroke: #fff; }
.pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 3rem;
  border: 2px solid var(--primary);
  animation: pulse-ring 3s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 0.6; } 70% { transform: scale(1.15); opacity: 0; } 100% { opacity: 0; } }

/* ── 비디오 섹션 ── */
.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--card-radius); background: #000; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ── LIGHTBOX ── */
.lightbox-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 9999; align-items: center; justify-content: center; }
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 0.5rem; }
.lightbox-close { position: absolute; top: 1rem; right: 1.5rem; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; }

/* ── DETAIL PAGE ── */
.detail-hero { position: relative; height: 420px; overflow: hidden; margin-top: 64px; }
.detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero-overlay { position: absolute; inset: 0; background: rgba(30,58,95,0.65); display: flex; flex-direction: column; justify-content: flex-end; padding: 3rem; }
.detail-hero-overlay .back-link { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-bottom: 0.75rem; display: inline-flex; align-items: center; gap: 0.3rem; transition: color 0.2s; }
.detail-hero-overlay .back-link:hover { color: #fff; }
.detail-hero-overlay h1 { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 800; color: #fff; line-height: 1.25; }
@media (max-width: 640px) { .detail-hero { height: 280px; } .detail-hero-overlay { padding: 2rem 1.5rem; } }

.info-bar { background: var(--primary); padding: 1.25rem 0; }
.info-bar-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 640px) { .info-bar-inner { grid-template-columns: repeat(2, 1fr); } }
.info-item label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); display: block; margin-bottom: 0.2rem; text-transform: uppercase; }
.info-item span { font-size: 0.9rem; font-weight: 700; color: #fff; }

.detail-section { padding: 4rem 0; }
.detail-section h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.detail-section .sub { color: var(--text-muted); font-weight: 300; margin-bottom: 2rem; font-size: 0.95rem; }
.img-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (max-width: 640px) { .img-gallery { grid-template-columns: 1fr; } }
.img-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--card-radius); cursor: pointer; transition: transform 0.3s; }
.img-gallery img:hover { transform: scale(1.02); }

.summary-box { background: var(--bg-alt); border-left: 4px solid var(--primary); border-radius: 0 var(--card-radius) var(--card-radius) 0; padding: 1.5rem 2rem; margin-top: 1.5rem; }
.summary-box ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.summary-box li { font-size: 0.9rem; color: var(--text-muted); padding-left: 1rem; position: relative; }
.summary-box li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 4px; height: 4px; background: var(--primary); border-radius: 50%; }

.process-steps-list { display: flex; flex-direction: column; gap: 1.5rem; }
.ps-item { display: flex; gap: 1.25rem; }
.ps-num { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 800; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ps-body h3 { font-weight: 800; margin-bottom: 0.3rem; }
.ps-body p { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; line-height: 1.7; }
.ps-imgs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-top: 0.75rem; }
.ps-imgs img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 0.4rem; cursor: pointer; }

/* ── NSEO 페이지 ── */
.sub-hero { margin-top: 64px; position: relative; height: 380px; overflow: hidden; }
.sub-hero img { width: 100%; height: 100%; object-fit: cover; }
.sub-hero-overlay { position: absolute; inset: 0; background: rgba(30,58,95,0.7); display: flex; flex-direction: column; justify-content: center; padding: 3rem; }
.sub-hero-overlay .section-label { margin-bottom: 0.75rem; background: rgba(255,255,255,0.15); color: #fff; }
.sub-hero-overlay h1 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 800; color: #fff; line-height: 1.25; margin-bottom: 0.75rem; }
.sub-hero-overlay p { color: rgba(255,255,255,0.8); font-weight: 300; font-size: 0.95rem; max-width: 500px; line-height: 1.75; margin-bottom: 1.5rem; }
.sub-hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
@media (max-width: 640px) { .sub-hero { height: 320px; } .sub-hero-overlay { padding: 2rem 1.5rem; } }

.nseo-body { font-weight: 300; line-height: 1.9; color: var(--text-muted); }
.nseo-body h2 { font-size: 1.5rem; font-weight: 800; color: var(--text); margin: 0 0 1rem; }
.nseo-body p { margin-bottom: 1rem; }
.nseo-step-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.nseo-step-item { display: flex; gap: 1rem; align-items: flex-start; }
.nseo-step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 800; font-size: 0.78rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.1rem; }
.nseo-step-body strong { font-weight: 700; color: var(--text); display: block; margin-bottom: 0.25rem; }
.nseo-step-body span { font-size: 0.88rem; }

.compare-table { width: 100%; border-collapse: collapse; margin-top: 1.25rem; font-size: 0.9rem; }
.compare-table th, .compare-table td { padding: 0.75rem 1rem; border: 1px solid var(--border); text-align: left; }
.compare-table th { background: var(--primary); color: #fff; font-weight: 700; }
.compare-table tr:nth-child(even) td { background: var(--bg-alt); }
.compare-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.75rem; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 768px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .related-grid { grid-template-columns: 1fr; } }
.related-card { border: 1px solid var(--border); border-radius: var(--card-radius); padding: 1.25rem; transition: all 0.3s; }
.related-card:not(.current):hover { border-color: var(--primary); transform: translateY(-2px); }
.related-card.current { background: var(--bg-alt); border-color: var(--primary); }
.related-card .r-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; color: var(--primary); text-transform: uppercase; margin-bottom: 0.4rem; }
.related-card h3 { font-size: 0.92rem; font-weight: 800; margin-bottom: 0.4rem; }
.related-card p { font-size: 0.8rem; color: var(--text-muted); font-weight: 300; line-height: 1.6; }
.related-card .current-badge { display: inline-block; margin-top: 0.5rem; font-size: 0.72rem; color: var(--primary); font-weight: 600; }

.main-cta-banner { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--card-radius); padding: 2rem; text-align: center; margin: 2rem 0; }
.main-cta-banner p { font-weight: 300; color: var(--text-muted); margin-bottom: 1rem; }

/* ── CONTACT ── */
.contact-steps { display: flex; flex-direction: column; gap: 1.5rem; max-width: 600px; margin: 2rem auto 0; }
.contact-step { display: flex; gap: 1.25rem; background: var(--bg-alt); border-radius: var(--card-radius); padding: 1.5rem; }
.contact-step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 800; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-step-body h3 { font-weight: 800; margin-bottom: 0.4rem; }
.contact-step-body p { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; line-height: 1.7; }
.contact-cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }

.notice-box { max-width: 600px; margin: 2rem auto 0; background: rgba(30,58,95,0.05); border: 1px solid rgba(30,58,95,0.15); border-radius: var(--card-radius); padding: 1.5rem 2rem; }
.notice-box h3 { font-size: 0.9rem; font-weight: 800; margin-bottom: 0.75rem; color: var(--primary); }
.notice-box ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.notice-box li { font-size: 0.85rem; color: var(--text-muted); font-weight: 300; padding-left: 1rem; position: relative; }
.notice-box li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 4px; height: 4px; background: var(--primary); border-radius: 50%; }

/* ── SITEMAP ── */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 768px) { .sitemap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .sitemap-grid { grid-template-columns: 1fr; } }
.sitemap-card { border: 1px solid var(--border); border-radius: var(--card-radius); padding: 1.5rem; }
.sitemap-card h3 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.75rem; }
.sitemap-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.sitemap-card a { font-size: 0.88rem; color: var(--text-muted); transition: color 0.2s; }
.sitemap-card a:hover { color: var(--primary); }
