/* ==========================================================================
   제우크린서브 — Stylesheet
   디자인 시스템: 신뢰형 블루 + 따뜻한 옐로우 액센트, 모바일 우선
   ========================================================================== */

/* ---------- 1. Reset & Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px; /* sticky header 높이 보정 */
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont,
    'Segoe UI', system-ui, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: keep-all;
  overflow-wrap: break-word;
}

img, svg, video { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color .18s ease; }
ul, ol { padding: 0; margin: 0; }
li { list-style: none; }

/* ---------- 2. Design Tokens ---------- */
:root {
  /* Color */
  --primary: #1A4FBA;
  --primary-dark: #0F3380;
  --primary-light: #E8F0FF;
  --primary-50: #F4F8FF;
  --accent: #FFB800;
  --accent-soft: #FFF1C4;
  --success: #10B981;
  --danger: #EF4444;

  /* Extended palette for color variety */
  --mint: #14B8A6;
  --mint-light: #D1FAE5;
  --mint-soft: #ECFDF5;
  --coral: #FF7A59;
  --coral-light: #FFE4DC;
  --coral-soft: #FFF5F1;
  --yellow: #F59E0B;
  --yellow-light: #FEF3C7;
  --yellow-soft: #FFFBEB;
  --warm-bg: linear-gradient(180deg, #FFFBF4 0%, #FFF6E8 100%);

  --text: #0F1B3D;
  --text-muted: #5A6377;
  --text-faint: #8A93A6;
  --line: #E5E9F2;
  --line-soft: #EFF2F8;
  --bg: #FFFFFF;
  --bg-soft: #F7F9FC;
  --bg-card: #FFFFFF;

  /* Typography */
  --fs-xs: 12px;
  --fs-sm: 13px;
  --fs-md: 15px;
  --fs-lg: 17px;
  --fs-xl: 20px;
  --fs-2xl: 26px;
  --fs-3xl: 34px;
  --fs-4xl: 44px;
  --fs-5xl: 56px;

  /* Spacing & Layout */
  --container-max: 1180px;
  --container-narrow: 820px;
  --header-h: 68px;
  --section-py: clamp(64px, 8vw, 120px);

  /* Effects */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(15, 27, 61, .06), 0 1px 1px rgba(15, 27, 61, .04);
  --shadow: 0 4px 16px rgba(15, 27, 61, .08), 0 2px 4px rgba(15, 27, 61, .04);
  --shadow-lg: 0 18px 40px rgba(15, 27, 61, .12), 0 6px 12px rgba(15, 27, 61, .06);
  --shadow-primary: 0 8px 24px rgba(26, 79, 186, .25);
}

/* ---------- 3. Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  padding: 0 20px;
  margin: 0 auto;
}
.container-narrow { max-width: var(--container-narrow); }

.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}
.section-soft { background: var(--bg-soft); }
.section-warm { background: var(--warm-bg); }

.section-head {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.section-head .eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 14px;
  line-height: 1.25;
  color: var(--text);
}
.section-head .section-sub {
  font-size: var(--fs-lg);
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 720px;
  line-height: 1.65;
}
.section-head .section-sub strong { color: var(--text); }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: var(--fs-md);
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .15s ease;
  text-align: center;
  white-space: nowrap;
  letter-spacing: -.01em;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 12px 28px rgba(26, 79, 186, .35); }

.btn-ghost {
  background: #fff;
  color: var(--primary);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--primary-50); border-color: var(--primary-light); color: var(--primary-dark); }

.btn-sm { padding: 9px 14px; font-size: var(--fs-sm); }
.btn-lg { padding: 16px 26px; font-size: var(--fs-lg); }
.btn-block { width: 100%; }

/* ---------- 5. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(15, 27, 61, .04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.03em;
}
.logo-mark { width: 30px; height: 30px; }
.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}
.logo-text { color: var(--text); }

.nav {
  display: none;
  gap: 28px;
}
.nav a {
  font-size: var(--fs-md);
  color: var(--text-muted);
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}
.nav a:hover { color: var(--primary); }
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width .25s ease;
}
.nav a:hover::after { width: 100%; }

.header-cta {
  display: none;
  align-items: center;
  gap: 12px;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--primary);
}
.header-phone:hover { color: var(--primary-dark); }

.menu-toggle {
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform .25s ease, opacity .25s ease;
  border-radius: 2px;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 880px) {
  .nav { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* Mobile slide-down nav */
@media (max-width: 879px) {
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 12px 20px 20px;
    gap: 0;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .2s ease;
  }
  .nav.is-open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line-soft);
    font-size: var(--fs-lg);
  }
  .nav a:last-child { border-bottom: 0; }
  .nav a::after { display: none; }
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 6vw, 80px);
  overflow: hidden;
  background:
    linear-gradient(180deg, #FAFCFF 0%, #FFFFFF 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-blob {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: 0.85;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.1fr .9fr; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: -.01em;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, .2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16, 185, 129, .2); }
  50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

.hero-title {
  font-size: clamp(32px, 5.5vw, 54px);
  line-height: 1.18;
  letter-spacing: -.03em;
  font-weight: 800;
  margin: 0 0 22px;
  color: var(--text);
}
.hero-title .hl {
  background: linear-gradient(180deg, transparent 65%, var(--accent-soft) 65%);
  padding: 0 4px;
}

.hero-sub {
  font-size: clamp(15px, 2.2vw, 18px);
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 520px;
}
.hero-sub strong { color: var(--text); font-weight: 700; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-meta {
  font-size: var(--fs-sm);
  color: var(--text-faint);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}
.hero-visual-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1deg);
}
.hero-visual-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--primary-light), transparent);
  z-index: -1;
}
.hero-illust { width: 100%; height: auto; }
.hero-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.hero-visual-tag {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) rotate(1deg);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: var(--fs-sm);
  font-weight: 600;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

/* ---------- 7. Trust Bar ---------- */
.trust-bar {
  background: linear-gradient(180deg, #fff 0%, #fff 50%, var(--bg-soft) 50%);
  padding: 0 0 32px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 720px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}
.trust-item {
  background: #fff;
  padding: 28px 20px;
  text-align: center;
}
.trust-num {
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.04em;
  line-height: 1;
}
.trust-num span {
  font-size: 16px;
  margin-left: 4px;
  color: var(--text);
  font-weight: 700;
}
.trust-text {
  margin-top: 12px;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.55;
}
.trust-text strong { color: var(--text); display: block; font-size: var(--fs-md); margin-bottom: 2px; }

/* ---------- 8. Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

/* 3-card layout override — services-grid-3 modifier */
@media (min-width: 720px) {
  .services-grid.services-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}
@media (min-width: 1080px) {
  .services-grid.services-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
@media (min-width: 1280px) {
  .services-grid.services-grid-3 {
    gap: 40px;
    max-width: 1240px;
    margin: 0 auto;
  }
}

.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}
.service-card-feature {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-primary);
}
.service-card-feature .service-icon { color: #fff; background: rgba(255, 255, 255, .15); }
.service-card-feature .service-desc,
.service-card-feature .service-points li { color: rgba(255, 255, 255, .9); }
.service-card-feature .service-price { color: #fff; }
.service-card-feature .service-price strong { color: var(--accent); }
.service-card-feature .service-points li::before { background: var(--accent); }

.service-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.service-icon svg { width: 28px; height: 28px; }

.service-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: #2A1F00;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  letter-spacing: .03em;
}
.service-card h3 {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -.02em;
}
.service-desc {
  font-size: var(--fs-md);
  color: var(--text-muted);
  margin: 0 0 16px;
  line-height: 1.65;
  flex-grow: 1;
}
.service-points {
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-points li {
  position: relative;
  padding-left: 20px;
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.service-points li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}
.service-price {
  font-size: var(--fs-md);
  color: var(--text-muted);
  border-top: 1px solid var(--line-soft);
  padding-top: 14px;
}
.service-card-feature .service-price { border-top-color: rgba(255, 255, 255, .15); }
.service-price strong {
  color: var(--primary);
  font-weight: 800;
  font-size: var(--fs-lg);
  letter-spacing: -.02em;
}

/* ---------- 9. Pricing & Calculator ---------- */
.calculator {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 48px;
}
@media (min-width: 880px) {
  .calculator { grid-template-columns: 1.4fr 1fr; }
}
.calculator-form {
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.form-group { }
.form-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--text);
}
.form-label .muted {
  font-style: normal;
  font-weight: 500;
  color: var(--text-faint);
  font-size: var(--fs-sm);
  margin-left: 6px;
}
.form-label output {
  font-weight: 800;
  font-size: var(--fs-xl);
  color: var(--primary);
  letter-spacing: -.02em;
}

/* Range slider */
.range-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary) var(--p, 25%), var(--line) var(--p, 25%), var(--line) 100%);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}
.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  background: #fff;
  border: 4px solid var(--primary);
  border-radius: 50%;
  cursor: grab;
  box-shadow: var(--shadow);
  transition: transform .15s ease;
}
.range-input::-webkit-slider-thumb:hover { transform: scale(1.1); }
.range-input::-moz-range-thumb {
  width: 26px;
  height: 26px;
  background: #fff;
  border: 4px solid var(--primary);
  border-radius: 50%;
  cursor: grab;
  box-shadow: var(--shadow);
}
.range-marks {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: var(--fs-xs);
  color: var(--text-faint);
}

/* Pills */
.radio-group, .check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.radio-pill, .check-pill {
  cursor: pointer;
  user-select: none;
}
.radio-pill input, .check-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-pill span, .check-pill span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-muted);
  background: #fff;
  transition: all .15s ease;
}
.radio-pill input:checked + span,
.check-pill input:checked + span {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  font-weight: 600;
}
.radio-pill:hover span, .check-pill:hover span {
  border-color: var(--primary);
  color: var(--primary);
}
.radio-pill input:checked + span,
.check-pill input:checked + span { color: #fff; }
.check-pill em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  margin-left: 4px;
  color: var(--accent);
}
.check-pill input:checked + span em { color: var(--accent); }

.included-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
}
.included-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.included-list svg { color: var(--success); flex-shrink: 0; }

/* Result */
.calculator-result {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.calculator-result::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 80% 20%, rgba(255, 184, 0, .15), transparent 60%);
  pointer-events: none;
}
.result-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .8;
  margin-bottom: 8px;
  position: relative;
}
.result-amount {
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 6px;
  position: relative;
}
.result-amount span {
  font-size: 22px;
  margin-left: 4px;
  font-weight: 700;
  opacity: .9;
}
.result-detail {
  font-size: var(--fs-md);
  opacity: .85;
  margin-bottom: 18px;
  position: relative;
}
.result-note {
  font-size: var(--fs-xs);
  background: rgba(255, 255, 255, .1);
  padding: 12px 14px;
  border-radius: var(--radius);
  line-height: 1.55;
  margin-bottom: 22px;
  position: relative;
}
.result-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.result-cta .btn-ghost {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-color: rgba(255, 255, 255, .25);
}
.result-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
}

/* Pricing Table */
.pricing-table-wrap {}
.pricing-table-title {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text);
  text-align: center;
}
.pricing-table-title em {
  font-style: normal;
  font-weight: 500;
  color: var(--text-faint);
  font-size: var(--fs-md);
}
.pricing-table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}
.pricing-table th, .pricing-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
  font-size: var(--fs-md);
}
.pricing-table thead th {
  background: var(--bg-soft);
  font-weight: 700;
  color: var(--text);
  font-size: var(--fs-sm);
  letter-spacing: -.01em;
}
.pricing-table tbody tr:last-child td { border-bottom: 0; }
.pricing-table tbody td:first-child { font-weight: 700; color: var(--text); }
.pricing-table tbody td strong { color: var(--primary); font-weight: 700; }
.pricing-table tbody tr:hover td { background: var(--primary-50); }
.pricing-note {
  margin-top: 14px;
  font-size: var(--fs-sm);
  color: var(--text-faint);
  text-align: center;
  line-height: 1.6;
}

/* ---------- 10. Process ---------- */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  counter-reset: step;
}
@media (min-width: 720px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .process-steps { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.process-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  position: absolute;
  top: -12px;
  left: 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--primary);
  background: #fff;
  border: 1px solid var(--primary-light);
  padding: 4px 10px;
  border-radius: 999px;
}
.step-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.step-icon svg { width: 26px; height: 26px; }
.process-step h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -.02em;
}
.process-step p {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--fs-sm);
  line-height: 1.65;
}

/* ---------- 11. Checklist ---------- */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) { .checklist-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .checklist-grid { grid-template-columns: repeat(3, 1fr); } }

.checklist-area {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.checklist-area:hover { border-color: var(--primary-light); }
.checklist-area[open] {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}
.checklist-area summary {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: var(--fs-md);
  user-select: none;
}
.checklist-area summary::-webkit-details-marker { display: none; }
.checklist-area .area-name { flex-grow: 1; color: var(--text); }
.checklist-area .area-count {
  font-size: var(--fs-xs);
  color: var(--primary);
  background: var(--primary-light);
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 700;
}
.checklist-area .chev {
  color: var(--text-faint);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.checklist-area[open] .chev { transform: rotate(180deg); color: var(--primary); }

.check-items {
  padding: 0 20px 20px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 8px;
  padding-top: 16px;
}
.check-items li {
  position: relative;
  padding-left: 22px;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.55;
}
.check-items li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 7px;
  width: 12px;
  height: 12px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2310B981" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="5 12 10 17 19 7"/></svg>') no-repeat center / contain;
}

/* ---------- 12. Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.gallery-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.gallery-placeholder {
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(26, 79, 186, .04) 12px, rgba(26, 79, 186, .04) 24px),
    var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  position: relative;
  color: var(--primary);
}
.gallery-placeholder svg { width: 40px; height: 40px; opacity: .35; }
.gallery-placeholder::after {
  content: attr(data-label);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--primary);
  background: #fff;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px dashed var(--primary-light);
  position: absolute;
  bottom: 12px;
}
.gallery-card figcaption {
  padding: 14px 18px;
  font-size: var(--fs-sm);
  color: var(--text);
  font-weight: 600;
  border-top: 1px solid var(--line-soft);
}
.gallery-note {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin: 0;
}
.gallery-note a { color: var(--primary); font-weight: 600; border-bottom: 1px dashed currentColor; }

/* ---------- 13. Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
@media (min-width: 720px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 180px;
}
.review-card-empty {
  align-items: center;
  justify-content: center;
  text-align: center;
  border-style: dashed;
  background: var(--bg-soft);
  color: var(--text-faint);
}
.review-empty-label {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 14px;
  border-radius: 999px;
}
.review-card-empty p {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.6;
}
.reviews-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- 14. FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item:hover { border-color: var(--primary-light); }
.faq-item[open] {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}
.faq-item summary {
  padding: 20px 24px;
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
  letter-spacing: -.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  flex-shrink: 0;
  color: var(--text-faint);
  transition: transform .25s ease;
}
.faq-item[open] summary .chev { transform: rotate(180deg); color: var(--primary); }
.faq-body {
  padding: 0 24px 22px;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: var(--fs-md);
}
.faq-body p { margin: 0; }

/* ---------- 15. Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 880px) {
  .contact-grid { grid-template-columns: 1.4fr 1fr; gap: 36px; }
}

.quote-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 540px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text);
}
.form-field .req { color: var(--danger); }

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="number"],
.form-field input[type="date"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: var(--fs-md);
  font-family: inherit;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .15s ease, box-shadow .15s ease;
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-faint); }
.form-field textarea { resize: vertical; min-height: 96px; }

.check-group-form { gap: 6px; }
.check-group-form .check-pill span { font-size: var(--fs-sm); padding: 8px 13px; }

.form-agree {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.55;
  cursor: pointer;
}
.form-agree input { margin-top: 3px; flex-shrink: 0; accent-color: var(--primary); }

/* Strengthened agree box (per 개인정보보호법 제15조 제2항) */
.form-agree-box {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.form-agree-info {
  padding: 16px 18px 12px;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.65;
  border-bottom: 1px solid var(--line);
}
.form-agree-title {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px;
}
.form-agree-title .req { color: var(--danger); font-weight: 700; }
.form-agree-info ul {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}
.form-agree-info li {
  padding: 3px 0 3px 14px;
  position: relative;
  font-size: var(--fs-sm);
}
.form-agree-info li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 4px; height: 4px;
  background: var(--text-faint);
  border-radius: 50%;
}
.form-agree-info li strong { color: var(--text); font-weight: 600; }
.form-agree-link {
  margin: 8px 0 0;
  font-size: var(--fs-xs);
  color: var(--text-faint);
}
.form-agree-link a {
  color: var(--primary);
  border-bottom: 1px dashed var(--primary);
}
.form-agree-link a:hover { color: var(--primary-dark); }
.form-agree-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 18px;
  background: #fff;
  cursor: pointer;
  font-size: var(--fs-sm);
  color: var(--text);
  font-weight: 500;
  line-height: 1.55;
}
.form-agree-check input {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
}
.form-hint {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--text-faint);
  text-align: center;
}
.form-hint strong { color: var(--primary); }

/* Contact info side */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 26px;
}
.info-card h3 {
  margin: 0 0 16px;
  font-size: var(--fs-lg);
  font-weight: 700;
  letter-spacing: -.02em;
}
.info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--fs-md);
  color: var(--text);
  line-height: 1.55;
}
.info-list svg { color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.info-list a { color: var(--text); border-bottom: 1px dashed transparent; transition: border-color .15s ease, color .15s ease; }
.info-list a:hover { color: var(--primary); border-bottom-color: var(--primary); }
.info-list em { font-style: normal; font-size: var(--fs-sm); color: var(--text-faint); display: inline-block; margin-top: 2px; }

/* Socials */
.socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font: inherit;
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.social:hover { transform: translateY(-2px); border-color: var(--primary-light); box-shadow: var(--shadow-sm); }
.social svg { flex-shrink: 0; }
.social div { display: flex; flex-direction: column; gap: 2px; }
.social strong { font-size: var(--fs-md); font-weight: 700; color: var(--text); letter-spacing: -.01em; }
.social span { font-size: var(--fs-xs); color: var(--text-faint); }
.social-kakao { color: #FAE100; }
.social-kakao strong { color: #2A1F00; }
.social-blog { color: #03C75A; }
.social-insta { color: #E1306C; }

/* ---------- 16. Footer ---------- */
.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, .75);
  padding: 64px 0 32px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; }
}
.footer-brand .logo-footer { color: #fff; }
.footer-brand .logo-footer .logo-text { color: #fff; }
.footer-brand .logo-mark { color: var(--primary); background: #fff; border-radius: 9px; }
.footer-brand .logo-img-footer {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 9px;
  padding: 4px;
}
.footer-desc {
  margin-top: 14px;
  font-size: var(--fs-sm);
  line-height: 1.7;
  max-width: 360px;
  color: rgba(255, 255, 255, .65);
}
.footer-col h4 {
  font-size: var(--fs-sm);
  color: #fff;
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { color: rgba(255, 255, 255, .65); font-size: var(--fs-sm); }
.footer-col a:hover { color: #fff; }
.footer-col li { font-size: var(--fs-sm); }

.footer-legal {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
}
@media (min-width: 720px) {
  .footer-legal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.biz-info strong { color: #fff; font-weight: 700; }
.footer-meta { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.footer-meta a { color: rgba(255, 255, 255, .65); }
.footer-meta a:hover { color: #fff; }
.footer-meta .sep { color: rgba(255, 255, 255, .3); }
.footer-meta .copy { margin-left: 8px; }

/* ---------- 17. Mobile bottom CTA ---------- */
.mobile-bottom-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 18px rgba(15, 27, 61, .08);
  padding-bottom: env(safe-area-inset-bottom);
}
.mbc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 11px 6px;
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  border: 0;
  border-right: 1px solid var(--line-soft);
  cursor: pointer;
  transition: background .15s ease;
}
.mbc-item:last-child { border-right: 0; }
.mbc-item svg { width: 22px; height: 22px; }
.mbc-call { color: var(--primary); }
.mbc-kakao { color: #2A1F00; background: #FFE812; }
.mbc-kakao:hover { background: #FFD500; }
.mbc-quote { color: #fff; background: var(--primary); }
.mbc-quote:hover { background: var(--primary-dark); }

@media (min-width: 880px) {
  .mobile-bottom-cta { display: none; }
  body { padding-bottom: 0; }
}

/* Bottom padding for mobile (so content not hidden behind bar) */
@media (max-width: 879px) {
  body { padding-bottom: 64px; }
}

/* ---------- 18. Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 27, 61, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fadeIn .2s ease;
}
.modal-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 36px 30px 30px;
  max-width: 420px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: slideUp .25s ease;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: none;
  border: 0;
  font-size: 24px;
  line-height: 1;
  color: var(--text-faint);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: var(--bg-soft); color: var(--text); }
.modal-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.modal-icon-kakao { background: #FFE812; color: #2A1F00; }
.modal-icon-success { background: var(--primary-light); color: var(--success); }
.modal-card h3 {
  margin: 0 0 10px;
  font-size: var(--fs-xl);
  font-weight: 800;
  letter-spacing: -.02em;
}
.modal-card p {
  margin: 0 0 22px;
  font-size: var(--fs-md);
  color: var(--text-muted);
  line-height: 1.65;
}
.modal-foot-note {
  margin-top: 14px !important;
  font-size: var(--fs-xs) !important;
  color: var(--text-faint) !important;
}
.kakao-id {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--bg-soft);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 18px;
}
.kakao-id code {
  font-family: 'SF Mono', Consolas, Menlo, monospace;
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--primary);
}
.modal-divider {
  text-align: center;
  margin: 18px 0;
  position: relative;
  font-size: var(--fs-xs);
  color: var(--text-faint);
}
.modal-divider::before,
.modal-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: var(--line);
}
.modal-divider::before { left: 0; }
.modal-divider::after { right: 0; }
.modal-divider span { background: #fff; padding: 0 12px; position: relative; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---------- 19. Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2, .8, .2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- 19.5 Color variety: trust items, service accents, photo frames ---------- */

/* Trust bar — colored numbers per item */
.trust-item-blue .trust-num { color: var(--primary); }
.trust-item-blue .trust-num span { color: var(--primary); opacity: .85; }
.trust-item-mint .trust-num { color: var(--mint); }
.trust-item-mint .trust-num span { color: var(--mint); opacity: .85; }
.trust-item-yellow .trust-num { color: var(--yellow); }
.trust-item-yellow .trust-num span { color: var(--yellow); opacity: .85; }
.trust-item-coral .trust-num { color: var(--coral); }
.trust-item-coral .trust-num span { color: var(--coral); opacity: .85; }

/* Subtle colored top bar above each trust item */
.trust-item { position: relative; }
.trust-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  opacity: 0;
  transition: opacity .3s ease;
}
.trust-item-blue::before { background: var(--primary); }
.trust-item-mint::before { background: var(--mint); }
.trust-item-yellow::before { background: var(--yellow); }
.trust-item-coral::before { background: var(--coral); }
.trust-item:hover::before { opacity: 1; }

/* Service cards — colored icon backgrounds (per accent) */
.service-card.accent-mint .service-icon { background: var(--mint-soft); color: var(--mint); }
.service-card.accent-coral .service-icon { background: var(--coral-soft); color: var(--coral); }
.service-card.accent-yellow .service-icon { background: var(--yellow-soft); color: var(--yellow); }
.service-card.accent-mint:hover { border-color: var(--mint-light); }
.service-card.accent-coral:hover { border-color: var(--coral-light); }
.service-card.accent-yellow:hover { border-color: var(--yellow-light); }
.service-card.accent-mint .service-points li::before { background: var(--mint); }
.service-card.accent-coral .service-points li::before { background: var(--coral); }
.service-card.accent-yellow .service-points li::before { background: var(--yellow); }
.service-card.accent-mint .service-price strong { color: var(--mint); }
.service-card.accent-coral .service-price strong { color: var(--coral); }
.service-card.accent-yellow .service-price strong { color: var(--yellow); }

/* Polaroid-style photo frames for gallery */
.gallery-card {
  background: #fff;
  border: 0;
  border-radius: var(--radius);
  padding: 14px 14px 6px;
  box-shadow: 0 4px 14px rgba(15, 27, 61, .08), 0 1px 3px rgba(15, 27, 61, .06);
  transition: transform .3s ease, box-shadow .3s ease, rotate .3s ease;
  position: relative;
}
.gallery-card:nth-child(3n+1) { rotate: -1.2deg; }
.gallery-card:nth-child(3n+2) { rotate: 0.8deg; }
.gallery-card:nth-child(3n+3) { rotate: -0.5deg; }
.gallery-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(15, 27, 61, .15), 0 4px 10px rgba(15, 27, 61, .08);
  rotate: 0deg;
  z-index: 2;
}

.gallery-placeholder {
  border-radius: var(--radius-sm);
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, var(--primary-light) 0%, var(--mint-soft) 50%, var(--coral-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.gallery-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 18px, rgba(255, 255, 255, .35) 18px, rgba(255, 255, 255, .35) 19px);
  pointer-events: none;
}
.gallery-placeholder svg { width: 56px; height: 56px; opacity: .6; color: var(--primary); position: relative; z-index: 1; }
.gallery-placeholder::after {
  content: attr(data-label);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, .92);
  padding: 6px 14px;
  border-radius: 999px;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 6px rgba(15, 27, 61, .08);
}
.gallery-card figcaption {
  padding: 14px 6px 8px;
  font-size: var(--fs-sm);
  color: var(--text);
  font-weight: 600;
  text-align: center;
  border-top: 0;
  letter-spacing: -.01em;
  font-family: 'Pretendard', system-ui, sans-serif;
}

/* Reviews — empty cards with subtle colored accents */
.review-card-empty {
  background: linear-gradient(135deg, #fff 0%, var(--mint-soft) 100%);
  border-color: var(--mint-light);
  border-style: dashed;
}
.review-empty-label {
  background: var(--mint-light);
  color: #065F46;
}

/* Reviews with photos */
.review-card-photo {
  padding: 0;
  overflow: hidden;
  align-items: stretch;
  min-height: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.review-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
}
.review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.review-card-photo:hover .review-photo img { transform: scale(1.04); }
.review-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 27, 61, .82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: -.01em;
}
.review-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.review-stars {
  font-size: 17px;
  color: var(--accent);
  letter-spacing: 2px;
  line-height: 1;
}
.review-text {
  margin: 0;
  font-size: var(--fs-md);
  line-height: 1.7;
  color: var(--text);
  letter-spacing: -.01em;
}
.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  font-size: var(--fs-xs);
}
.review-author {
  font-weight: 700;
  color: var(--text);
}
.review-date {
  color: var(--text-faint);
}

/* Gallery card with real photo (override placeholder padding) */
.gallery-card-photo {
  padding: 8px 8px 4px;
}
.gallery-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
}
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.gallery-card-photo:hover .gallery-photo img { transform: scale(1.05); }

/* ---------- 19.6 HOW WE CLEAN — new section ---------- */

.how {
  position: relative;
  overflow: hidden;
}
.how::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--coral-light) 0%, transparent 70%);
  pointer-events: none;
  opacity: .6;
}
.how::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  pointer-events: none;
  opacity: .8;
}
.how > .container { position: relative; z-index: 1; }

/* Timeline */
.how-timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 80px;
  position: relative;
}
@media (min-width: 880px) {
  .how-timeline {
    gap: 28px;
  }
  .how-timeline::before {
    content: '';
    position: absolute;
    left: 38px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(180deg,
      var(--primary) 0%,
      var(--mint) 25%,
      var(--coral) 50%,
      var(--yellow) 75%,
      var(--primary) 100%);
    opacity: .25;
    border-radius: 2px;
  }
}

.how-step {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  box-shadow: 0 2px 10px rgba(15, 27, 61, .04);
  border: 1px solid var(--line-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.how-step:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(15, 27, 61, .08);
}

.how-step-marker {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 14px rgba(15, 27, 61, .15);
}
.how-step-1 .how-step-marker { background: linear-gradient(135deg, #1A4FBA, #2563EB); }
.how-step-2 .how-step-marker { background: linear-gradient(135deg, #14B8A6, #10B981); }
.how-step-3 .how-step-marker { background: linear-gradient(135deg, #FF7A59, #F97316); }
.how-step-4 .how-step-marker { background: linear-gradient(135deg, #F59E0B, #FFB800); }
.how-step-5 .how-step-marker { background: linear-gradient(135deg, #8B5CF6, #6366F1); }
.how-step-marker span { letter-spacing: -.02em; }

.how-step-body { flex: 1; min-width: 0; }
.how-step-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 14px;
  margin-bottom: 10px;
}
.how-step h3 {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin: 0;
  letter-spacing: -.02em;
  color: var(--text);
}
.how-time {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-soft);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.how-step-1 .how-time { background: var(--primary-light); color: var(--primary-dark); }
.how-step-2 .how-time { background: var(--mint-soft); color: #065F46; }
.how-step-3 .how-time { background: var(--coral-soft); color: #9A3412; }
.how-step-4 .how-time { background: var(--yellow-soft); color: #92400E; }
.how-step-5 .how-time { background: #F3F0FF; color: #5B21B6; }

.how-step p {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: var(--fs-md);
  line-height: 1.7;
}
.how-step p strong { color: var(--text); font-weight: 700; }

.how-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.how-points li {
  position: relative;
  padding-left: 22px;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.6;
}
.how-points li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 8px;
  width: 12px;
  height: 12px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2310B981" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="5 12 10 17 19 7"/></svg>') no-repeat center / contain;
}
.how-points li strong { color: var(--text); font-weight: 700; }

/* Tools section */
.how-sub-title {
  text-align: center;
  font-size: var(--fs-2xl);
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -.02em;
  color: var(--text);
}
.how-sub-desc {
  text-align: center;
  font-size: var(--fs-md);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.how-sub-desc strong { color: var(--text); }

.how-tools { margin-bottom: 72px; }

.tool-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .tool-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .tool-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.tool-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: 0 4px 14px rgba(15, 27, 61, .06);
  border: 1px solid var(--line-soft);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 27, 61, .1);
  border-color: var(--primary-light);
}
.tool-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.tool-card:nth-child(6n+1) .tool-icon { background: var(--primary-light); color: var(--primary); }
.tool-card:nth-child(6n+2) .tool-icon { background: var(--mint-soft); color: var(--mint); }
.tool-card:nth-child(6n+3) .tool-icon { background: var(--coral-soft); color: var(--coral); }
.tool-card:nth-child(6n+4) .tool-icon { background: var(--mint-soft); color: #065F46; }
.tool-card:nth-child(6n+5) .tool-icon { background: var(--yellow-soft); color: #B45309; }
.tool-card:nth-child(6n+6) .tool-icon { background: #F3F0FF; color: #6366F1; }
.tool-icon svg { width: 26px; height: 26px; }

.tool-card h4 {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -.01em;
}
.tool-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--fs-sm);
  line-height: 1.65;
}

/* Promise list */
.how-promise {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  box-shadow: 0 8px 24px rgba(15, 27, 61, .08);
  border: 1px solid var(--line-soft);
}
.promise-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) { .promise-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .promise-list { grid-template-columns: repeat(3, 1fr); } }

.promise-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  font-size: var(--fs-md);
  line-height: 1.55;
  color: var(--text);
}
.promise-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mint);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.promise-icon svg { width: 16px; height: 16px; }
.promise-list li strong { color: var(--text); font-weight: 700; }

/* ---------- 19.7 SPACES section ---------- */
.spaces-groups {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.space-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-lg);
  font-weight: 700;
  margin: 0 0 18px;
  letter-spacing: -.02em;
  color: var(--text);
}
.space-group-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .04);
}
.space-group-dot.dot-blue  { background: var(--primary); }
.space-group-dot.dot-coral { background: var(--coral); }
.space-group-dot.dot-mint  { background: var(--mint); }

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) {
  .spaces-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
}
@media (min-width: 1080px) {
  .spaces-grid { gap: 18px; }
}

.space-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 14px 18px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.space-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(15, 27, 61, .1);
  border-color: var(--primary-light);
}
.space-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  transition: background .2s ease, color .2s ease, transform .25s ease;
}
.space-icon svg { width: 32px; height: 32px; }
.space-item:hover .space-icon { transform: scale(1.08); }
.space-item h4 {
  font-size: var(--fs-sm);
  font-weight: 600;
  margin: 0;
  letter-spacing: -.01em;
  color: var(--text);
}

/* Per-group color tinting */
.space-group:nth-child(1) .space-icon { background: var(--primary-light); color: var(--primary); }
.space-group:nth-child(2) .space-icon { background: var(--coral-soft); color: var(--coral); }
.space-group:nth-child(3) .space-icon { background: var(--mint-soft); color: var(--mint); }
.space-group:nth-child(1) .space-item:hover { border-color: var(--primary); }
.space-group:nth-child(2) .space-item:hover { border-color: var(--coral); }
.space-group:nth-child(3) .space-item:hover { border-color: var(--mint); }

.spaces-note {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin: 40px auto 0;
  max-width: 640px;
  line-height: 1.65;
}

/* ---------- 19.8 FINAL CTA section ---------- */
.final-cta {
  padding: clamp(48px, 6vw, 84px) 0;
  background: var(--bg);
}
.final-cta-card {
  position: relative;
  background: linear-gradient(135deg, #0F3380 0%, #1A4FBA 55%, #2563EB 100%);
  border-radius: var(--radius-xl);
  padding: clamp(44px, 5.5vw, 76px) clamp(28px, 4vw, 60px);
  text-align: center;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 27, 61, .25);
}
.final-cta-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 184, 0, .18), transparent 45%),
    radial-gradient(circle at 82% 78%, rgba(20, 184, 166, .15), transparent 45%);
  pointer-events: none;
}
.final-cta-card > *:not(.final-cta-glow) { position: relative; z-index: 1; }

.final-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: 24px;
}
.final-cta-eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 184, 0, .3);
  animation: pulse 2s ease-in-out infinite;
}

.final-cta-card h2 {
  font-size: clamp(26px, 4.2vw, 42px);
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 18px;
  letter-spacing: -.025em;
  color: #fff;
}
.final-cta-hl {
  display: inline-block;
  background: linear-gradient(120deg, #FFD93D 0%, #FFE793 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.final-cta-sub {
  font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(255, 255, 255, .88);
  line-height: 1.7;
  margin: 0 auto 32px;
  max-width: 580px;
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.btn-accent {
  background: var(--accent);
  color: #2A1F00;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(255, 184, 0, .35);
}
.btn-accent:hover {
  background: #FFC940;
  box-shadow: 0 12px 28px rgba(255, 184, 0, .5);
}
.btn-outline-light {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, .18);
  border-color: #fff;
  color: #fff;
}

.final-cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 10px;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, .8);
  font-weight: 500;
}
.final-cta-trust .dot-sep { color: rgba(255, 255, 255, .35); }

/* Reveal animation targets for new sections */
.space-item.reveal,
.final-cta-card.reveal {
  transition: opacity .6s ease, transform .6s cubic-bezier(.2, .8, .2, 1);
}

/* ---------- 19.9 Legal pages (privacy / terms) ---------- */
.legal-page {
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 120px);
  background: var(--bg-soft);
  min-height: 70vh;
}
.legal-head {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
  padding-bottom: clamp(28px, 4vw, 40px);
  border-bottom: 1px solid var(--line);
}
.legal-eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 16px;
}
.legal-head h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -.025em;
  margin: 0 0 12px;
  color: var(--text);
}
.legal-meta {
  font-size: var(--fs-sm);
  color: var(--text-faint);
  margin: 0;
}
.legal-body {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 56px);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
}
.legal-lead {
  font-size: var(--fs-md);
  line-height: 1.8;
  color: var(--text-muted);
  padding: 18px 22px;
  background: var(--primary-50);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  margin: 0 0 36px;
}
.legal-toc {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 40px;
}
.legal-toc h2 {
  font-size: var(--fs-md);
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--text);
}
.legal-toc ol {
  list-style: decimal;
  padding-left: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
@media (min-width: 640px) {
  .legal-toc ol { grid-template-columns: 1fr 1fr; column-gap: 28px; }
}
.legal-toc a {
  color: var(--primary);
  font-size: var(--fs-sm);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease;
}
.legal-toc a:hover { border-bottom-color: var(--primary); }

.legal-section {
  margin-bottom: 36px;
  scroll-margin-top: 90px;
}
.legal-section:last-of-type { margin-bottom: 16px; }
.legal-section h2 {
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-light);
}
.legal-section h3 {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--text);
  margin: 18px 0 8px;
}
.legal-section p {
  font-size: var(--fs-md);
  line-height: 1.8;
  color: var(--text);
  margin: 0 0 12px;
}
.legal-section ol,
.legal-section ul {
  margin: 0 0 14px;
  padding-left: 22px;
}
.legal-section ol { list-style: decimal; }
.legal-section ul { list-style: disc; }
.legal-section ol ol { list-style: lower-alpha; margin-top: 6px; }
.legal-section li {
  font-size: var(--fs-md);
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 4px;
}
.legal-section strong { color: var(--primary-dark); font-weight: 700; }
.legal-section a {
  color: var(--primary);
  border-bottom: 1px solid var(--primary-light);
}
.legal-section a:hover { color: var(--primary-dark); border-bottom-color: var(--primary); }

.legal-note {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  background: var(--yellow-soft);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
  margin: 10px 0;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 12px 0 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: var(--fs-sm);
}
.legal-table th,
.legal-table td {
  padding: 11px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
  line-height: 1.55;
}
.legal-table thead th {
  background: var(--primary-50);
  font-weight: 700;
  color: var(--text);
  border-bottom: 2px solid var(--primary-light);
}
.legal-table tbody tr:last-child td { border-bottom: 0; }
.legal-table tbody td:first-child { font-weight: 600; color: var(--text); }

.legal-info-card {
  background: var(--primary-50);
  border: 1px solid var(--primary-light);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 14px 0;
}
.legal-info-card h3 {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 10px;
}
.legal-info-card ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.legal-info-card li {
  padding: 4px 0;
  font-size: var(--fs-sm);
}

.legal-footer-back {
  text-align: center;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

/* ---------- 19.10 본문 단락 양쪽정렬 (한글 가독성 우선) ---------- */
.hero-sub,
.service-desc,
.review-text,
.faq-body p,
.final-cta-sub,
.process-step p,
.how-step p,
.legal-section p,
.legal-lead,
.footer-desc,
.tool-card p,
.form-hint,
.form-agree-info {
  text-align: justify;
  text-justify: inter-character;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* ---------- 20. Print ---------- */
@media print {
  .site-header, .mobile-bottom-cta, .modal { display: none !important; }
  body { padding: 0; color: #000; background: #fff; }
}
