/* ============================================================
   하수구천국24시 — Landing Site Stylesheet
   ============================================================ */

:root {
  --navy-950: #070f1e;
  --navy-900: #0b1a30;
  --navy-800: #0f2544;
  --navy-700: #163457;
  --navy-600: #204877;
  --ink: #0f1626;
  --slate-700: #3c4658;
  --slate-500: #66718a;
  --slate-400: #8b95ab;
  --slate-200: #dde1e9;
  --paper: #f6f7fa;
  --paper-dim: #eef0f5;
  --white: #ffffff;
  --accent: #ff7a2f;
  --accent-dark: #e35f16;
  --accent-light: #ffa268;
  --accent-soft: #fff1e6;
  --teal: #15b3a3;
  --line: #e6e9f0;
  --line-dark: rgba(255, 255, 255, 0.12);

  --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 32px rgba(11, 26, 48, 0.10);
  --shadow-lg: 0 24px 60px rgba(7, 15, 30, 0.18);
  --shadow-accent: 0 14px 34px rgba(227, 95, 22, 0.30);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --container: 1180px;
  --header-h: 84px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

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

section { position: relative; }

.section-pad { padding: 120px 0; }
@media (max-width: 900px) { .section-pad { padding: 80px 0; } }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.section-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.on-dark .section-tag { background: rgba(255,255,255,0.1); color: var(--accent-light); }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { max-width: 680px; margin-left: auto; margin-right: auto; text-align: center; }

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.32;
  color: var(--navy-900);
}
.on-dark .section-title { color: var(--white); text-shadow: 0 6px 28px rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.45); }
/* Premium heading accents — reused across dark and light sections */
.hl-shine {
  background: linear-gradient(90deg, #ffffff, var(--accent-light) 50%, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent-light);
}
.hl-warm {
  color: #ffb87a;
  text-shadow: 0 0 26px rgba(255,122,47,0.55), 0 6px 24px rgba(0,0,0,0.5);
  letter-spacing: -0.01em;
}
.hl-grad {
  background: linear-gradient(90deg, var(--navy-900), var(--accent-dark) 65%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent-dark);
  text-shadow: 0 2px 18px rgba(227,95,22,0.14);
}

.section-desc {
  margin-top: 16px;
  font-size: 1.03rem;
  color: var(--slate-500);
  line-height: 1.75;
}
.on-dark .section-desc { color: rgba(255,255,255,0.72); }
.area-desc-accent { color: #6fe3d4; font-weight: 600; }

.accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color .22s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn-kakao {
  background: #FEE500;
  color: #391B1B;
  box-shadow: 0 12px 28px rgba(254, 229, 0, 0.28);
}
.btn-kakao:hover { transform: translateY(-2px); filter: brightness(0.97); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--slate-200);
}
.btn-outline-dark:hover { border-color: var(--navy-800); background: var(--paper-dim); }

.btn-block { width: 100%; }
.btn-lg { padding: 18px 30px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }

.site-header.scrolled {
  background: rgba(9, 18, 34, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(5, 10, 20, 0.25);
  height: 72px;
}

.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.18rem; color: var(--white); letter-spacing: -0.01em; }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(227,95,22,0.4);
}
.brand-mark svg { width: 20px; height: 20px; }
.brand small { display: block; font-size: 0.66rem; font-weight: 600; color: var(--accent-light); letter-spacing: 0.08em; }

.nav-desktop { display: flex; align-items: center; gap: 38px; }
.nav-desktop a {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-desktop a:hover { color: #fff; }
.nav-desktop a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -3px;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-desktop a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  color: #fff; font-weight: 700; font-size: 0.95rem;
}
.header-phone svg { width: 17px; height: 17px; color: var(--accent-light); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: #fff;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 980px) {
  .nav-desktop, .header-phone-text { display: none; }
  .nav-toggle { display: flex; }
}

/* Mobile nav drawer */
.nav-mobile {
  position: fixed; inset: 0;
  background: var(--navy-950);
  z-index: 600;
  display: flex; flex-direction: column;
  padding: 26px 28px 40px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 44px; }
.nav-mobile-close { width: 40px; height: 40px; color: #fff; display: flex; align-items: center; justify-content: center; }
.nav-mobile-close svg { width: 24px; height: 24px; }
.nav-mobile a {
  display: block; color: #fff; font-size: 1.4rem; font-weight: 700;
  padding: 16px 0; border-bottom: 1px solid var(--line-dark);
}
.nav-mobile-cta { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-950);
  padding-top: var(--header-h);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,12,24,0.55) 0%, rgba(7,14,27,0.72) 55%, rgba(7,14,27,0.94) 100%),
    linear-gradient(90deg, rgba(6,12,24,0.75) 0%, rgba(6,12,24,0.25) 55%, rgba(6,12,24,0.55) 100%);
}

.hero-content { position: relative; z-index: 2; padding: 70px 0 110px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  padding: 9px 18px 9px 14px;
  border-radius: var(--radius-pill);
  color: #fff; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 28px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 4px rgba(74,222,128,0.25); }

.hero-title {
  font-size: clamp(2.3rem, 5.2vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.22;
  max-width: 820px;
}
.hero-title .line-accent { color: var(--accent-light); }

.hero-desc {
  margin-top: 26px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  line-height: 1.75;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 42px; }

.hero-stats {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 44px;
  max-width: 700px;
}
.hero-stat-num { font-size: clamp(1.5rem, 2.4vw, 2.1rem); font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.hero-stat-num span { color: var(--accent-light); }
.hero-stat-label { margin-top: 6px; font-size: 0.82rem; color: rgba(255,255,255,0.6); font-weight: 500; }

@media (max-width: 820px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
}

.scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem; letter-spacing: 0.1em;
}
.scroll-cue .stick { width: 1px; height: 30px; background: linear-gradient(180deg, rgba(255,255,255,0.7), transparent); animation: scrollcue 1.8s infinite; }
@keyframes scrollcue { 0% { transform: scaleY(0); transform-origin: top; opacity: 0;} 40% { transform: scaleY(1); transform-origin: top; opacity: 1;} 60% { transform: scaleY(1); transform-origin: bottom; opacity: 1;} 100% { transform: scaleY(0); transform-origin: bottom; opacity: 0;} }

/* ---------- Trust bar ---------- */
.trust-bar {
  position: relative; z-index: 3;
  margin-top: -64px;
  padding-bottom: 0;
}
.trust-bar-inner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--navy-900) 0%, var(--navy-950) 68%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(7, 15, 30, 0.38), 0 2px 0 rgba(255, 255, 255, 0.04) inset;
  padding: 44px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-bar-inner::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-light) 30%, var(--teal) 70%, transparent);
  opacity: 0.85;
}
.trust-bar-inner::after {
  content: ""; position: absolute; top: -60%; right: -10%; width: 55%; padding-top: 55%;
  background: radial-gradient(circle, rgba(255, 122, 47, 0.16), transparent 70%);
  pointer-events: none;
}
.trust-item {
  position: relative;
  display: flex; align-items: center; gap: 16px; padding: 4px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.35s ease;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { transform: translateY(-3px); }
.trust-icon {
  width: 52px; height: 52px; border-radius: 15px; flex-shrink: 0;
  background: linear-gradient(145deg, var(--accent-light), var(--accent-dark));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 22px rgba(227, 95, 22, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}
.trust-icon svg { width: 24px; height: 24px; }
.trust-title { font-weight: 700; font-size: 0.98rem; letter-spacing: 0.01em; color: var(--white); }
.trust-sub { font-size: 0.8rem; color: rgba(221, 225, 233, 0.62); margin-top: 3px; }

@media (max-width: 980px) {
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item { border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 20px; }
}
@media (max-width: 560px) {
  .trust-bar { margin-top: -40px; }
  .trust-bar-inner { grid-template-columns: 1fr; padding: 32px 24px; }
  .trust-item { border-right: none; }
}

/* ---------- About ---------- */
.about { background: var(--paper); padding-top: 180px; }
@media (max-width: 560px) { .about { padding-top: 130px; } }
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: center; }
@media (max-width: 940px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

.about-media { position: relative; }
.about-media .frame-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.about-media .frame-main img { width: 100%; height: 100%; object-fit: cover; }
.about-media .frame-float {
  position: absolute; right: -30px; bottom: -34px;
  width: 54%; aspect-ratio: 5/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.about-media .frame-float img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 560px) { .about-media .frame-float { width: 60%; right: -12px; bottom: -24px; border-width: 4px; } }

.about-badge {
  position: absolute; top: -22px; left: -22px;
  background: var(--navy-900); color: #fff;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about-badge .num { font-size: 1.7rem; font-weight: 800; color: var(--accent-light); }
.about-badge .txt { font-size: 0.78rem; color: rgba(255,255,255,0.72); margin-top: 2px; }

.about-list { margin-top: 30px; display: grid; gap: 18px; }
.about-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-ic {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent-soft); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.check-ic svg { width: 14px; height: 14px; }
.about-list b { color: var(--navy-900); font-weight: 700; }
.about-list p { color: var(--slate-500); font-size: 0.94rem; margin-top: 2px; }

.about-cta { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Response Time ---------- */
.response { background: var(--paper); }

.response-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--navy-900) 0%, var(--navy-950) 70%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 52px 56px 56px;
}
.response-panel::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-light) 30%, var(--teal) 70%, transparent);
  opacity: 0.85;
}
.response-panel::after {
  content: ""; position: absolute; bottom: -35%; left: -12%; width: 55%; padding-top: 55%;
  background: radial-gradient(circle, rgba(21, 179, 163, 0.14), transparent 70%);
  pointer-events: none;
}

.response-kicker {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 44px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.response-kicker-badge {
  display: inline-flex; align-items: center;
  font-size: 0.85rem; font-weight: 800; letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 22px rgba(227, 95, 22, 0.35);
}
.response-kicker-text { font-size: 0.88rem; color: rgba(255, 255, 255, 0.55); font-weight: 600; }

.response-map {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .response-map { grid-template-columns: 1fr; justify-items: center; gap: 48px; }
}

.response-rings {
  position: relative;
  width: 280px; height: 280px;
  flex-shrink: 0;
}
.ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.1); }
.ring-1 { inset: 0; background: radial-gradient(circle, rgba(255, 255, 255, 0.03), transparent 72%); }
.ring-2 { inset: 17%; border-color: rgba(255, 122, 47, 0.22); }
.ring-3 { inset: 37%; border-color: rgba(255, 122, 47, 0.5); background: rgba(255, 122, 47, 0.1); }

.response-hub {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 10px 26px rgba(227, 95, 22, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.14) inset;
  z-index: 3;
}
.response-hub svg { width: 24px; height: 24px; }
.response-hub::before {
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  border: 1.5px solid var(--accent-light);
  animation: radarping 2.6s ease-out infinite;
}
@keyframes radarping {
  0% { transform: scale(0.85); opacity: 0.75; }
  100% { transform: scale(2.1); opacity: 0; }
}

.response-radius-label {
  position: absolute; left: 50%; bottom: -6px; transform: translateX(-50%);
  text-align: center;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.5;
}

.response-tiers { display: grid; width: 100%; }
.response-tier {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.response-tier:first-child { padding-top: 0; }
.response-tier:last-child { padding-bottom: 0; border-bottom: none; }

.tier-badge {
  flex-shrink: 0;
  width: 100px;
  text-align: center;
  padding: 14px 8px 12px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--tier-color);
}
.tier-num { display: block; font-size: 1.65rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.tier-unit { display: block; margin-top: 2px; font-size: 0.72rem; font-weight: 600; color: rgba(255, 255, 255, 0.5); }

.tier-region { font-weight: 800; font-size: 1.06rem; color: #fff; letter-spacing: -0.01em; }
.tier-desc { margin-top: 6px; font-size: 0.88rem; color: rgba(255, 255, 255, 0.6); line-height: 1.7; }

.response-note { margin-top: 22px; font-size: 0.82rem; color: var(--slate-400); text-align: center; }

@media (max-width: 640px) {
  .response-panel { padding: 40px 24px 44px; }
  .response-tier { flex-direction: column; align-items: flex-start; gap: 14px; }
  .tier-badge { display: flex; align-items: baseline; gap: 8px; width: auto; padding: 8px 16px; }
  .tier-num { font-size: 1.3rem; }
  .tier-unit { margin-top: 0; }
}

/* ---------- Services ---------- */
.services { background: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.service-card:hover, .service-card:focus-visible { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover img { transform: scale(1.08); }
.service-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,14,27,0) 35%, rgba(7,14,27,0.88) 100%);
}
.service-card-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px; }
.service-num { font-size: 0.75rem; font-weight: 700; color: var(--accent-light); letter-spacing: 0.05em; margin-bottom: 8px; display: block; }
.service-card-title { color: #fff; font-weight: 800; font-size: 1.12rem; letter-spacing: -0.01em; }
.service-card-desc { color: rgba(255,255,255,0.72); font-size: 0.85rem; margin-top: 6px; line-height: 1.5; }

.service-card-view {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(7, 14, 27, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff; font-size: 0.76rem; font-weight: 700;
  padding: 8px 14px 8px 10px;
  border-radius: var(--radius-pill);
  opacity: 0; transform: translateY(-6px);
  transition: opacity .3s ease, transform .3s ease, background .3s ease;
  pointer-events: none;
}
.service-card-view svg { width: 15px; height: 15px; flex-shrink: 0; }
.service-card:hover .service-card-view,
.service-card:focus-visible .service-card-view { opacity: 1; transform: translateY(0); }
.service-card:hover .service-card-view { background: var(--accent-dark); border-color: transparent; }

.services-more { text-align: center; margin-top: 46px; }

/* ---------- Service gallery lightbox ---------- */
.svc-modal {
  position: fixed; inset: 0; z-index: 900;
  display: flex; align-items: center; justify-content: center;
  padding: 28px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.svc-modal.open { opacity: 1; visibility: visible; }
.svc-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(6, 10, 20, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.svc-modal-panel {
  position: relative; z-index: 2;
  width: 100%; max-width: 860px;
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  background: var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .35s ease;
}
.svc-modal.open .svc-modal-panel { transform: translateY(0) scale(1); opacity: 1; }

.svc-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 4;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(7, 14, 27, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.svc-modal-close:hover { background: var(--accent); transform: rotate(90deg); }
.svc-modal-close svg { width: 17px; height: 17px; }

.svc-modal-stage {
  position: relative;
  background: var(--navy-900);
  height: clamp(320px, 60vh, 620px);
}
.svc-modal-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; transition: opacity .28s ease; }
.svc-modal-img.show { opacity: 1; }

.svc-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(7, 14, 27, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.svc-nav:hover { background: var(--accent); }
.svc-nav svg { width: 19px; height: 19px; }
.svc-nav.prev { left: 18px; }
.svc-nav.next { right: 18px; }

.svc-modal-counter {
  position: absolute; left: 18px; bottom: 16px; z-index: 3;
  background: rgba(7, 14, 27, 0.6);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem; font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}

.svc-modal-thumbs {
  display: flex; gap: 10px;
  padding: 16px 24px;
  overflow-x: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.svc-modal-thumbs::-webkit-scrollbar { height: 4px; }
.svc-modal-thumbs button {
  flex-shrink: 0;
  width: 68px; height: 50px;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  opacity: 0.5;
  transition: opacity .2s ease, border-color .2s ease;
}
.svc-modal-thumbs button.active { opacity: 1; border-color: var(--accent-light); }
.svc-modal-thumbs button:hover { opacity: 0.85; }
.svc-modal-thumbs img { width: 100%; height: 100%; object-fit: cover; display: block; }

.svc-modal-info { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; padding: 26px 28px 30px; }
.svc-modal-num { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; color: var(--accent-light); margin-bottom: 8px; }
.svc-modal-text h3 { font-size: 1.3rem; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.svc-modal-text p { margin-top: 8px; font-size: 0.92rem; color: rgba(255, 255, 255, 0.62); line-height: 1.7; max-width: 480px; }
.svc-modal-cta { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.svc-modal-cta .btn { padding: 13px 20px; font-size: 0.9rem; }

@media (max-width: 640px) {
  .svc-modal { padding: 0; }
  .svc-modal-panel { max-width: none; max-height: 100vh; height: 100%; border-radius: 0; }
  .svc-modal-stage { height: 46vh; }
  .svc-modal-info { flex-direction: column; align-items: stretch; padding: 22px 20px 26px; }
  .svc-modal-cta { width: 100%; }
  .svc-modal-cta .btn { flex: 1; }
}

/* ---------- Process ---------- */
.process { background: var(--paper-dim); }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.process-grid::before {
  content: "";
  position: absolute; top: 34px; left: 10%; right: 10%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--slate-200) 0 10px, transparent 10px 18px);
}
@media (max-width: 980px) { .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; } .process-grid::before { display: none; } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

.process-step { position: relative; padding: 0 16px; text-align: center; }
.process-step-num {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.3rem; color: var(--navy-800);
  margin: 0 auto 20px;
  position: relative; z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
}
.process-step:hover .process-step-num { background: var(--accent); border-color: var(--accent); color: #fff; }
.process-step-title { font-weight: 800; font-size: 1.02rem; color: var(--navy-900); }
.process-step-desc { margin-top: 8px; font-size: 0.87rem; color: var(--slate-500); line-height: 1.6; }

/* ---------- Emergency full-bleed ---------- */
.emergency {
  position: relative;
  min-height: 560px;
  display: flex; align-items: center;
  background: var(--navy-950);
  overflow: hidden;
}
.emergency img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.emergency::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6,11,22,0.96) 15%, rgba(6,11,22,0.65) 60%, rgba(6,11,22,0.4) 100%);
}
.emergency-content { position: relative; z-index: 2; max-width: 640px; padding: 90px 0; }
.emergency-title { font-size: clamp(1.8rem, 3.4vw, 2.7rem); font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1.35; }
.emergency-desc { margin-top: 20px; color: rgba(255,255,255,0.72); font-size: 1.03rem; line-height: 1.75; }
.emergency-cta { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }
.emergency-phone-big {
  margin-top: 30px; display: inline-flex; align-items: baseline; gap: 10px; color: #fff;
}
.emergency-phone-big .num { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.01em; }
.emergency-phone-big .lbl { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ---------- Gallery ---------- */
.gallery { background: var(--white); }

.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin: -8px 0 32px; }
.gallery-chip {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--slate-500);
  font-size: 0.86rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.gallery-chip:hover { border-color: var(--accent-light); color: var(--accent-dark); }
.gallery-chip.on { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}
.g-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}
.g-item.show { opacity: 1; transform: translateY(0) scale(1); }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.g-item:hover { box-shadow: var(--shadow-lg); }
.g-item:hover img { transform: scale(1.08); }

.g-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start;
  padding: 16px;
  background: linear-gradient(180deg, rgba(7,15,30,0) 45%, rgba(7,15,30,0.82) 100%);
  opacity: 0; transition: opacity 0.3s ease;
  text-align: left;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-cap { color: #fff; font-size: 0.86rem; font-weight: 700; line-height: 1.4; }

.g-zoom {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.16); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; color: #fff;
  opacity: 0; transform: scale(0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.g-zoom svg { width: 16px; height: 16px; }
.g-item:hover .g-zoom { opacity: 1; transform: scale(1); }

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .g-overlay { opacity: 1; background: linear-gradient(180deg, rgba(7,15,30,0) 55%, rgba(7,15,30,0.78) 100%); }
  .g-zoom { opacity: 1; transform: scale(1); }
}

/* ---------- Equipment / Team ---------- */
.equip { background: var(--navy-950); overflow: hidden; }
.equip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 940px) { .equip-grid { grid-template-columns: 1fr; gap: 44px; } }

.equip-media { display: grid; grid-template-columns: 1.2fr 1fr; gap: 18px; }
.equip-media .tall,
.equip-media .short {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s ease;
}
.equip-media .tall { grid-row: span 2; }
.equip-media .short { aspect-ratio: 1/1; }
.equip-media .tall:hover,
.equip-media .short:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 122, 47, 0.35) inset;
}
.equip-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.brand-strip { display: flex; align-items: center; gap: 26px; margin-top: 36px; flex-wrap: wrap; }
.brand-strip span {
  font-weight: 800; font-size: 0.95rem; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
  padding: 10px 0;
}

.equip-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 40px; }
.equip-stat { background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark); border-radius: var(--radius-md); padding: 22px 18px; text-align: center; }
.equip-stat .n { font-size: 1.5rem; font-weight: 800; color: var(--accent-light); }
.equip-stat .l { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 6px; }
@media (max-width: 560px) { .equip-stats { grid-template-columns: 1fr; } }

/* ---------- Team ---------- */
.team { background: var(--paper); }
.team-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
@media (max-width: 940px) { .team-wrap { grid-template-columns: 1fr; gap: 36px; } }
.team-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.team-photo img { width: 100%; object-fit: cover; }

.team-points { display: grid; gap: 22px; }
.team-point { display: flex; gap: 18px; padding: 22px; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.team-point-ic {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: var(--navy-900); color: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
}
.team-point-ic svg { width: 22px; height: 22px; }
.team-point h4 { font-weight: 800; color: var(--navy-900); font-size: 1.02rem; }
.team-point p { margin-top: 6px; font-size: 0.9rem; color: var(--slate-500); line-height: 1.6; }

/* ---------- Service Area ---------- */
.area { position: relative; background: var(--navy-900); overflow: hidden; }
.area img.bgimg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.area::before { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(4,9,18,0.84), rgba(4,9,18,0.92) 45%, rgba(4,9,18,0.97)); }
.area-content { position: relative; z-index: 2; }
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
@media (max-width: 860px) { .area-grid { grid-template-columns: 1fr; } }
.area-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  padding: 30px 26px;
}
.area-card .tag { display:inline-block; font-size:0.74rem; font-weight:700; color: var(--accent-light); background: rgba(255,122,47,0.14); padding: 5px 12px; border-radius: var(--radius-pill); margin-bottom: 14px; }
.area-card h4 { color: #fff; font-size: 1.15rem; font-weight: 800; }
.area-card p { margin-top: 10px; color: rgba(255,255,255,0.62); font-size: 0.9rem; line-height: 1.7; }
.area-ribbon {
  margin-top: 40px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
  background: linear-gradient(120deg, var(--accent-dark), var(--accent));
  border-radius: var(--radius-md);
  padding: 26px 32px;
  box-shadow: var(--shadow-accent);
}
.area-ribbon-text { color: #fff; }
.area-ribbon-text b { font-size: 1.15rem; font-weight: 800; display:block; }
.area-ribbon-text span { font-size: 0.88rem; opacity: 0.9; }

/* ---------- Reviews ---------- */
.reviews { background: var(--white); overflow: hidden; }

.review-stats {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap;
  margin: -8px 0 44px;
}
.review-stats .rs-score { font-size: 2rem; font-weight: 800; color: var(--navy-900); line-height: 1; }
.review-stats .rs-stars { display: flex; gap: 2px; color: var(--accent); }
.review-stats .rs-stars svg { width: 17px; height: 17px; }
.review-stats .rs-divider { width: 1px; height: 18px; background: var(--line); }
.review-stats .rs-count { font-size: 0.85rem; color: var(--slate-500); }

.review-slider-wrap { position: relative; }
.review-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 4px 28px;
  margin: 0 -4px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}
.review-track::-webkit-scrollbar { display: none; }
.review-track.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }

.review-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  min-width: 0;
}
@media (max-width: 980px) { .review-slide { flex-basis: calc((100% - 24px) / 2); } }
@media (max-width: 640px) { .review-slide { flex-basis: 86%; } }

.review-card-lux {
  position: relative;
  height: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.review-card-lux::before {
  content: '\201C';
  position: absolute; top: 10px; right: 22px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.6rem;
  color: var(--accent-soft);
  line-height: 1;
  pointer-events: none;
}
.review-card-lux:hover { box-shadow: var(--shadow-lg); border-color: var(--accent-light); transform: translateY(-4px); }

.rv-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.rv-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy-800); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem; flex-shrink: 0;
}
.rv-who { min-width: 0; }
.rv-name { font-weight: 700; font-size: 0.9rem; color: var(--navy-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rv-meta { font-size: 0.76rem; color: var(--slate-400); margin-top: 2px; }

.rv-stars { display: flex; gap: 2px; color: var(--accent); margin-bottom: 14px; }
.rv-stars svg { width: 14px; height: 14px; }
.rv-stars svg.off { color: var(--line); }

.rv-text {
  color: var(--slate-700); font-size: 0.92rem; line-height: 1.72;
  flex: 1;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}

.rv-photo { display: inline-flex; align-items: center; gap: 9px; width: fit-content; }
.rv-photo img {
  width: 52px; height: 52px; object-fit: cover;
  border-radius: 10px; border: 1px solid var(--line);
}
.rv-photo span { font-size: 0.74rem; color: var(--slate-400); font-weight: 600; }

.review-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-900); z-index: 2;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.review-nav:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.review-nav svg { width: 20px; height: 20px; }
.review-nav.prev { left: -22px; }
.review-nav.next { right: -22px; }
@media (max-width: 1180px) { .review-nav.prev { left: -6px; } .review-nav.next { right: -6px; } }
@media (max-width: 640px) { .review-nav { display: none; } }

.review-progress { max-width: 220px; margin: 4px auto 0; height: 3px; background: var(--line); border-radius: 999px; overflow: hidden; }
.review-progress-bar { height: 100%; width: 12%; background: var(--accent); border-radius: 999px; transition: width 0.2s ease; }

.review-note { margin-top: 36px; font-size: 0.82rem; color: var(--slate-400); text-align: center; }

/* ---------- Estimate ---------- */
.estimate-card {
  display: grid;
  grid-template-columns: 1fr 380px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.estimate-left { padding: 48px 46px; display: grid; gap: 34px; align-content: start; }
.estimate-field-label { font-size: 0.95rem; font-weight: 700; color: var(--navy-900); margin-bottom: 14px; }
.estimate-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.estimate-chip {
  font-family: inherit; font-size: 0.92rem; font-weight: 600; color: var(--slate-500);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 11px 20px; cursor: pointer; transition: all 0.22s ease;
}
.estimate-chip:hover { border-color: var(--accent-light); color: var(--accent-dark); }
.estimate-chip.on {
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
  color: var(--white); border-color: transparent; font-weight: 700;
  box-shadow: 0 10px 22px rgba(227, 95, 22, 0.28);
}
.estimate-notes { border-top: 1px solid var(--line); padding-top: 24px; display: grid; gap: 8px; font-size: 0.86rem; line-height: 1.7; color: var(--slate-500); }

.estimate-right {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-950) 75%);
  padding: 48px 38px; display: grid; gap: 24px; align-content: start;
}
.estimate-right::after {
  content: ""; position: absolute; top: -50%; right: -20%; width: 70%; padding-top: 70%;
  background: radial-gradient(circle, rgba(255, 122, 47, 0.18), transparent 70%);
  pointer-events: none;
}
.estimate-right-label { position: relative; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; color: var(--accent-light); text-transform: uppercase; }
.estimate-range { position: relative; font-size: 2.4rem; font-weight: 800; letter-spacing: -0.02em; color: var(--white); line-height: 1.15; }
.estimate-range-note { position: relative; margin-top: 8px; font-size: 0.86rem; color: rgba(255,255,255,0.6); }
.estimate-rows { position: relative; display: grid; gap: 12px; border-top: 1px solid rgba(255,255,255,0.14); padding-top: 20px; font-size: 0.9rem; }
.estimate-rows div { display: flex; justify-content: space-between; gap: 12px; }
.estimate-rows span { color: rgba(255,255,255,0.5); }
.estimate-rows strong { position: relative; color: var(--white); font-weight: 700; }
.estimate-right .btn-primary { position: relative; }

@media (max-width: 860px) {
  .estimate-card { grid-template-columns: 1fr; }
  .estimate-left { padding: 36px 28px; }
  .estimate-right { padding: 36px 28px; }
}

/* ---------- FAQ ---------- */
.faq { background: var(--paper-dim); }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--line); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px; text-align: left; font-weight: 700; color: var(--navy-900); font-size: 0.98rem;
}
.faq-q .qtext { display:flex; gap: 14px; align-items:flex-start; }
.faq-q .qtext .qmark { color: var(--accent); font-weight: 800; }
.faq-q .plus { width: 26px; height: 26px; border-radius: 50%; background: var(--paper-dim); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition: transform .3s ease, background .3s ease; }
.faq-q .plus svg { width: 13px; height: 13px; color: var(--navy-700); }
.faq-item.open .faq-q .plus { background: var(--accent); transform: rotate(135deg); }
.faq-item.open .faq-q .plus svg { color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 26px 24px 60px; color: var(--slate-500); font-size: 0.92rem; line-height: 1.75; }

/* ---------- Booking ---------- */
.booking { background: var(--navy-950); position: relative; overflow: hidden; }
.booking::before {
  content: ""; position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,47,0.16), transparent 70%);
  top: -300px; right: -200px;
}
.booking-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; }
@media (max-width: 940px) { .booking-grid { grid-template-columns: 1fr; gap: 40px; } }

.booking-side-card { background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); padding: 34px; margin-top: 28px; }
.booking-contact-row { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line-dark); }
.booking-contact-row:last-child { border-bottom: none; }
.booking-contact-ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,0.08); color: var(--accent-light); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.booking-contact-ic svg { width: 21px; height: 21px; }
.booking-contact-row .lbl { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
.booking-contact-row .val { font-size: 1.05rem; font-weight: 700; color: #fff; margin-top: 2px; }

.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 560px) { .booking-form-card { padding: 28px 22px; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.86rem; font-weight: 700; color: var(--navy-900); margin-bottom: 9px; }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--ink);
  background: var(--paper);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: #fff;
}
.field textarea { resize: vertical; min-height: 110px; }
.field-check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: var(--slate-500); }
.field-check input { width: 16px; height: 16px; margin-top: 3px; accent-color: var(--accent); }
.field-check a { color: var(--navy-800); font-weight: 700; text-decoration: underline; }

.form-note { margin-top: 16px; font-size: 0.82rem; color: var(--slate-400); text-align: center; line-height: 1.6; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success .ic { width: 60px; height: 60px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-dark); display:flex; align-items:center; justify-content:center; margin: 0 auto 18px; }
.form-success .ic svg { width: 28px; height: 28px; }
.form-success h3 { font-size: 1.2rem; font-weight: 800; color: var(--navy-900); }
.form-success p { margin-top: 10px; color: var(--slate-500); font-size: 0.92rem; }
.form-success .actions { margin-top: 24px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.6); padding: 70px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--line-dark); }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }

.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06); display:flex; align-items:center; justify-content:center; transition: background .2s ease; }
.footer-social a:hover { background: var(--accent); }
.footer-social svg { width: 17px; height: 17px; }

.footer-col h5 { color: #fff; font-size: 0.92rem; font-weight: 800; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 0.88rem; transition: color .2s ease; }
.footer-col a:hover { color: #fff; }
.footer-col li { font-size: 0.88rem; }

.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; }

/* ---------- Floating mobile CTA bar ---------- */
.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
  display: none;
  background: var(--white);
  box-shadow: 0 -8px 24px rgba(7,14,27,0.14);
}
.mobile-cta-bar-inner { display: grid; grid-template-columns: 1fr 1fr; }
.mobile-cta-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 10px; font-weight: 800; font-size: 0.95rem; }
.mobile-cta-bar a svg { width: 18px; height: 18px; }
.mobile-cta-bar .call { background: var(--navy-900); color: #fff; }
.mobile-cta-bar .kakao { background: #FEE500; color: #391B1B; }
@media (max-width: 720px) {
  .mobile-cta-bar { display: block; }
  .site-footer { padding-bottom: 100px; }
}

/* ---------- Scroll to top ---------- */
.to-top {
  position: fixed; right: 24px; bottom: 90px; z-index: 380;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy-900); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 18px; height: 18px; }
@media (max-width: 720px) { .to-top { bottom: 96px; right: 16px; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .19s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .26s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .33s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .40s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: .47s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: .54s; }

