/* ==========================================================================
   화단벽공사 | 건물집사시설관리 — Design System
   컨셉: 흙과 돌, 화단의 초록을 담은 어시(earthy) 팔레트.
   세리프 헤딩 + 산세리프 본문의 대비, 완전한 비대칭 스플릿 히어로,
   유기적인(organic) 곡선 프레임 카드로 기존 사이트군과 시각적으로 구분한다.
   ========================================================================== */

:root {
  --forest-900: #1f3327;
  --forest-800: #24402f;
  --forest-700: #2f5744;
  --forest-600: #3c6b52;
  --forest-500: #4c8264;
  --clay-600: #a84f2d;
  --clay-500: #c1663f;
  --clay-400: #d68256;
  --clay-300: #e8b79a;
  --clay-100: #f5ded0;
  --cream-50: #faf6ee;
  --cream-100: #f3ecdd;
  --stone-200: #e8e0d0;
  --stone-300: #ddd3be;
  --stone-500: #a89a83;
  --stone-700: #6b5f4d;
  --ink: #2a2620;
  --white: #ffffff;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --shadow-sm: 0 3px 14px rgba(43, 33, 22, 0.08);
  --shadow-md: 0 14px 34px rgba(31, 51, 39, 0.14);
  --shadow-lg: 0 26px 64px rgba(31, 51, 39, 0.22);
  --container: 1180px;
  --font-head: "Noto Serif KR", "Georgia", serif;
  --font-body: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-50);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); }
.gw-container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }
@media (max-width: 768px) { section { padding: 68px 0; } }

.gw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--clay-600);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.gw-eyebrow::before { content: ""; width: 20px; height: 2px; background: var(--clay-500); border-radius: 2px; }
.gw-head { max-width: 700px; margin: 0 auto 56px; text-align: center; }
.gw-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700;
  color: var(--forest-800);
  line-height: 1.4;
}
.gw-head p { margin-top: 18px; color: var(--stone-700); font-size: 16.5px; }
.gw-head.gw-light h2 { color: var(--white); }
.gw-head.gw-light p { color: var(--stone-300); }
.gw-head.gw-left { text-align: left; margin: 0 0 48px; }

/* Buttons */
.gw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15.5px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  font-family: var(--font-body);
}
.gw-btn:hover { transform: translateY(-2px); }
.gw-btn-lg { padding: 17px 34px; font-size: 17px; }
.gw-btn-primary { background: var(--clay-500); color: var(--white); box-shadow: var(--shadow-md); }
.gw-btn-primary:hover { background: var(--clay-600); box-shadow: 0 16px 36px rgba(168, 79, 45, 0.35); }
.gw-btn-dark { background: var(--forest-800); color: var(--white); }
.gw-btn-dark:hover { background: var(--forest-700); }
.gw-btn-ghost { border-color: rgba(255,255,255,0.5); color: var(--white); }
.gw-btn-ghost:hover { background: rgba(255,255,255,0.14); }
.gw-btn-outline { border-color: var(--forest-700); color: var(--forest-700); }
.gw-btn-outline:hover { background: var(--forest-700); color: var(--white); }
.gw-btn-call { background: var(--forest-800); color: var(--white); padding: 10px 20px; font-size: 14.5px; }
.gw-btn-call:hover { background: var(--forest-700); }

/* Header */
.gw-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream-50);
  border-bottom: 1px solid var(--stone-200);
}
.gw-header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.gw-brand { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--forest-800); letter-spacing: -0.01em; }
.gw-nav { display: flex; gap: 30px; }
.gw-nav a { color: var(--stone-700); font-weight: 500; font-size: 15px; transition: color 0.2s; }
.gw-nav a:hover { color: var(--clay-600); }
.gw-header-actions { display: flex; align-items: center; gap: 12px; }
.gw-nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.gw-nav-toggle span { width: 24px; height: 2px; background: var(--forest-800); border-radius: 2px; }

@media (max-width: 900px) {
  .gw-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream-50);
    border-bottom: 1px solid var(--stone-200);
    flex-direction: column;
    gap: 0;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
  }
  .gw-nav.gw-open { height: calc(100vh - var(--header-h, 72px)); overflow-y: auto; }
  .gw-nav a { padding: 16px 24px; border-top: 1px solid var(--stone-200); }
  .gw-nav-toggle { display: flex; }
  .gw-btn-call { padding: 9px 14px; font-size: 13px; }
}

/* ==================== HERO — asymmetric split, organic blob frame ==================== */
.gw-hero { position: relative; overflow: hidden; padding: 64px 0 100px; background: var(--cream-50); }
.gw-hero::before {
  content: "";
  position: absolute;
  top: -220px; right: -220px;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--clay-100), transparent 70%);
  pointer-events: none;
}
.gw-hero::after {
  content: "";
  position: absolute;
  bottom: -260px; left: -260px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, var(--stone-200), transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}
.gw-hero-grid {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 960px) {
  .gw-hero-grid { grid-template-columns: 1fr; }
}
.gw-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--forest-800);
  color: var(--clay-300);
  padding: 8px 18px; border-radius: 100px;
  font-size: 13.5px; font-weight: 700;
  margin-bottom: 26px;
}
.gw-hero h1 {
  font-size: clamp(38px, 5.4vw, 58px);
  font-weight: 900;
  line-height: 1.25;
  color: var(--forest-900);
  letter-spacing: -0.01em;
}
.gw-hero-sub {
  margin-top: 22px;
  font-size: 18px;
  color: var(--stone-700);
  max-width: 540px;
}
.gw-hero-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.gw-hero-stats { margin-top: 56px; display: flex; gap: 40px; flex-wrap: wrap; }
.gw-hero-stat b { display: block; font-family: var(--font-head); font-size: 30px; color: var(--clay-600); font-weight: 700; }
.gw-hero-stat span { font-size: 13.5px; color: var(--stone-700); }

/* Photo collage: large organic blob photo + small overlapping accent photo */
.gw-hero-media { position: relative; min-height: 420px; }
.gw-hero-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.gw-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.gw-hero-tag {
  position: absolute;
  left: -6%;
  top: 8%;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--forest-800);
  display: flex;
  align-items: center;
  gap: 10px;
}
.gw-hero-tag .gw-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--clay-500); flex-shrink: 0; }
@media (max-width: 960px) {
  .gw-hero-media { min-height: 340px; margin-top: 12px; }
  .gw-hero-tag { left: 0; }
}

/* ==================== Trust / stat highlight strip ==================== */
.gw-bg-cream { background: var(--cream-100); }
.gw-bg-forest { background: var(--forest-900); }

.gw-alert-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 52px;
}
.gw-alert-card .gw-alert-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
  background: var(--clay-100);
  color: var(--clay-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  font-weight: 700;
}
.gw-alert-card h3 { font-size: 19px; font-weight: 700; color: var(--forest-800); margin-bottom: 8px; }
.gw-alert-card p { font-size: 15.5px; color: var(--stone-700); }

.gw-fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) { .gw-fact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gw-fact-grid { grid-template-columns: 1fr; } }
.gw-fact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  border-left: 3px solid var(--clay-500);
  box-shadow: var(--shadow-sm);
}
.gw-fact-card b { display: block; font-family: var(--font-head); font-size: 24px; color: var(--forest-800); font-weight: 700; margin-bottom: 6px; }
.gw-fact-card span { font-size: 13.5px; font-weight: 700; color: var(--clay-600); display: block; margin-bottom: 10px; }
.gw-fact-card p { font-size: 13.5px; color: var(--stone-700); }

.gw-check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15.5px;
  color: var(--stone-700);
}
.gw-check-list li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 12px; height: 12px;
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  background: var(--forest-600);
}
.gw-check-list li b { color: var(--forest-800); }

/* ==================== Comparison cards (materials/methods) ==================== */
.gw-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 860px) { .gw-compare-grid { grid-template-columns: 1fr; } }
.gw-compare-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gw-compare-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.gw-compare-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.gw-compare-media img { width: 100%; height: 100%; object-fit: cover; }
.gw-compare-media .gw-compare-tag {
  position: absolute; left: 18px; top: 18px;
  background: var(--forest-900);
  color: var(--clay-300);
  font-size: 12.5px; font-weight: 700;
  padding: 7px 14px; border-radius: 100px;
}
.gw-compare-card.gw-natural .gw-compare-media .gw-compare-tag { background: var(--clay-600); color: var(--cream-50); }
.gw-compare-body { padding: 30px 30px 34px; }
.gw-compare-body h3 { font-size: 21px; font-weight: 700; color: var(--forest-800); margin-bottom: 12px; }
.gw-compare-body p { font-size: 15px; color: var(--stone-700); margin-bottom: 16px; }
.gw-compare-body ul { display: flex; flex-direction: column; gap: 9px; }
.gw-compare-body ul li {
  font-size: 14px; color: var(--ink);
  padding-left: 18px;
  position: relative;
}
.gw-compare-body ul li::before { content: "—"; position: absolute; left: 0; color: var(--clay-500); font-weight: 700; }

/* ==================== Process rail (foundation & drainage steps) ==================== */
.gw-rail { position: relative; max-width: 880px; margin: 0 auto; }
.gw-rail::before {
  content: "";
  position: absolute;
  left: 27px; top: 10px; bottom: 10px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--stone-300) 0 8px, transparent 8px 16px);
}
@media (max-width: 640px) { .gw-rail::before { left: 21px; } }
.gw-rail-step { position: relative; padding-left: 76px; margin-bottom: 40px; }
@media (max-width: 640px) { .gw-rail-step { padding-left: 60px; } }
.gw-rail-step:last-child { margin-bottom: 0; }
.gw-rail-num {
  position: absolute; left: 0; top: 0;
  width: 56px; height: 56px;
  border-radius: 42% 58% 60% 40% / 55% 45% 55% 45%;
  background: var(--forest-800);
  color: var(--clay-300);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700; font-size: 19px;
}
@media (max-width: 640px) { .gw-rail-num { width: 44px; height: 44px; font-size: 16px; } }
.gw-rail-step h4 { font-size: 18px; font-weight: 700; color: var(--forest-800); margin-bottom: 8px; }
.gw-rail-step p { font-size: 15px; color: var(--stone-700); }

/* ==================== Gallery ==================== */
.gw-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .gw-gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .gw-gallery-grid { grid-template-columns: 1fr; } }
.gw-gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-sm);
}
.gw-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gw-gallery-item:hover img { transform: scale(1.08); }
.gw-gallery-item .gw-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 14px 12px;
  background: linear-gradient(to top, rgba(31,25,15,0.86), transparent);
  color: var(--white); font-size: 12.5px; font-weight: 700;
}
.gw-gallery-item .gw-step-badge {
  position: absolute; left: 12px; top: 12px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--clay-500);
  color: var(--white);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ==================== Consulting teaser (privacy note + tel/sms) ==================== */
.gw-privacy-band {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--forest-900);
  color: var(--stone-300);
  border-radius: var(--radius-lg);
  padding: 30px 34px;
  margin-bottom: 40px;
}
.gw-privacy-band .gw-privacy-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(232,183,154,0.15);
  color: var(--clay-300);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.gw-privacy-band strong { color: var(--white); display: block; margin-bottom: 6px; font-size: 15.5px; }
.gw-privacy-band p { font-size: 14px; line-height: 1.7; }

.gw-consult-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ==================== Region grid (case study hub) ==================== */
.gw-region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .gw-region-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gw-region-grid { grid-template-columns: 1fr; } }
.gw-region-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gw-region-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.gw-region-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gw-region-card .gw-region-body { padding: 24px 22px; }
.gw-region-card .gw-region-loc { font-size: 12.5px; font-weight: 700; color: var(--clay-600); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; display: block; }
.gw-region-card h3 { font-size: 18px; font-weight: 700; color: var(--forest-800); margin-bottom: 8px; }
.gw-region-card p { font-size: 13.5px; color: var(--stone-700); margin-bottom: 14px; }
.gw-region-card .gw-region-link { font-size: 13.5px; font-weight: 700; color: var(--forest-700); }

/* Region detail page hero (small) */
.gw-page-hero {
  position: relative;
  padding: 76px 0 64px;
  background: var(--forest-900);
  color: var(--white);
  overflow: hidden;
}
.gw-page-hero::before {
  content: "";
  position: absolute; top: -160px; right: -140px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,183,154,0.14), transparent 70%);
}
.gw-page-hero .gw-container { position: relative; z-index: 1; }
.gw-page-hero .gw-crumb { color: var(--clay-300); font-weight: 700; font-size: 13.5px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; display: block; }
.gw-page-hero h1 { font-size: clamp(30px, 4.2vw, 44px); font-weight: 700; max-width: 760px; }
.gw-page-hero p { margin-top: 16px; color: var(--stone-300); font-size: 16.5px; max-width: 640px; }

.gw-detail-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 48px;
}
.gw-detail-media img { width: 100%; max-height: 460px; object-fit: cover; }
.gw-two-col-media { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 48px; }
@media (max-width: 640px) { .gw-two-col-media { grid-template-columns: 1fr; } }
.gw-two-col-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-md); }

.gw-spec-strip { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.gw-spec-chip {
  display: inline-flex; flex-direction: column; gap: 3px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-sm);
}
.gw-spec-chip b { font-family: var(--font-head); font-size: 16.5px; color: var(--clay-600); font-weight: 700; }
.gw-spec-chip span { font-size: 12.5px; color: var(--stone-700); font-weight: 500; }

.gw-prose { max-width: 760px; margin: 0 auto; }
.gw-prose p { font-size: 16px; color: var(--stone-700); margin-bottom: 20px; }
.gw-prose p:last-child { margin-bottom: 0; }

/* ==================== FAQ accordion ==================== */
.gw-faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.gw-faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.gw-faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  background: none; border: none; text-align: left; cursor: pointer;
  font-family: var(--font-body);
  font-size: 15.5px; font-weight: 700; color: var(--forest-800);
}
.gw-faq-q .gw-faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--clay-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: transform 0.25s ease;
}
.gw-faq-item.gw-open .gw-faq-icon { transform: rotate(45deg); background: var(--clay-500); color: var(--white); }
.gw-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
  font-size: 14.5px; color: var(--stone-700);
}
.gw-faq-item.gw-open .gw-faq-a { max-height: 400px; padding: 0 24px 22px; }

/* CTA band */
.gw-cta-band { background: var(--forest-800); padding: 52px 0; }
.gw-cta-band-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 22px;
}
.gw-cta-band-text { color: var(--white); font-family: var(--font-head); font-size: 23px; font-weight: 700; }
.gw-cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Footer */
.gw-footer { background: var(--forest-900); color: var(--stone-300); padding: 46px 0 26px; }
.gw-footer-inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.gw-footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,0.12); margin-bottom: 22px; }
.gw-footer-brand { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 18px; }
.gw-footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.gw-footer-nav a { font-size: 14px; color: var(--stone-300); }
.gw-footer-nav a:hover { color: var(--clay-300); }
.gw-footer-info { font-size: 13.5px; line-height: 1.9; }
.gw-footer-copy { font-size: 12.5px; color: var(--stone-500); margin-top: 8px; }

/* Floating call button */
.gw-floating-call {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 56px; height: 56px;
  border-radius: 42% 58% 60% 40% / 55% 45% 55% 45%;
  background: var(--clay-500);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  animation: gw-pulse 2.4s infinite;
}
@keyframes gw-pulse {
  0% { box-shadow: 0 0 0 0 rgba(193,102,63,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(193,102,63,0); }
  100% { box-shadow: 0 0 0 0 rgba(193,102,63,0); }
}

/* Scroll-reveal opt-in via .js class set inline in <head> */
.js .gw-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .gw-reveal.gw-visible { opacity: 1; transform: translateY(0); }

/* Consulting process steps (numbered, no rail) */
.gw-step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1000px) { .gw-step-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gw-step-grid { grid-template-columns: 1fr; } }
.gw-step-card { background: var(--white); border-radius: var(--radius-md); padding: 28px 22px; box-shadow: var(--shadow-sm); }
.gw-step-card .gw-step-num { font-family: var(--font-head); font-size: 30px; font-weight: 700; color: var(--clay-300); margin-bottom: 14px; }
.gw-step-card h4 { font-size: 16px; font-weight: 700; color: var(--forest-800); margin-bottom: 8px; }
.gw-step-card p { font-size: 13.5px; color: var(--stone-700); }

.gw-checklist-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 640px) { .gw-checklist-panel { padding: 26px 22px; } }
.gw-checklist-panel h3 { font-size: 20px; font-weight: 700; color: var(--forest-800); margin-bottom: 20px; }
.gw-checklist-item { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid var(--stone-200); }
.gw-checklist-item:first-of-type { border-top: none; }
.gw-checklist-num {
  flex-shrink: 0; width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--clay-100); color: var(--clay-600);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.gw-checklist-item h4 { font-size: 15px; font-weight: 700; color: var(--forest-800); margin-bottom: 4px; }
.gw-checklist-item p { font-size: 13.5px; color: var(--stone-700); }
