/* =========================================================
   STEADYWEB – 공통 스타일
   ========================================================= */
:root {
  --black: #111111;
  --ink: #222222;
  --gray-700: #555555;
  --gray-500: #888888;
  --gray-300: #d9d9d9;
  --gray-100: #f4f5f7;
  --white: #ffffff;
  --accent: #2f65a3;          /* 로고 블루 */
  --accent-light: #7fb0e6;    /* 어두운 배경 위 강조용 */
  --navy: #1d3d66;            /* 로고 워드마크 네이비 */
  --accent-soft: #eaf1fa;
  --kakao: #fee500;
  --kakao-hover: #f5dc00;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --max: 1100px;
  --font: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.3; font-weight: 700; letter-spacing: -0.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: min(var(--max), 100% - 40px); margin: 0 auto; }
.section { padding: 96px 0; }
.section--gray { background: var(--gray-100); }
.section--dark { background: var(--black); color: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section--dark .eyebrow { color: var(--kakao); }
.section-title { font-size: clamp(26px, 4vw, 38px); margin-bottom: 16px; }
.section-lead { font-size: 17px; color: var(--gray-700); max-width: 640px; }
.section--dark .section-lead { color: #c9c9c9; }
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin: 0 auto; }

/* ---------- 버튼 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--kakao { background: var(--kakao); color: var(--black); box-shadow: 0 6px 16px rgba(254, 229, 0, 0.35); }
.btn--kakao:hover { background: var(--kakao-hover); }
.btn--dark { background: var(--black); color: var(--white); }
.btn--outline { border-color: var(--gray-300); color: var(--ink); background: transparent; }
.btn--outline:hover { border-color: var(--black); }
.btn--lg { padding: 18px 34px; font-size: 17px; }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--block { width: 100%; }
.btn .ico { width: 18px; height: 18px; flex: none; }

.text-link {
  color: var(--accent);
  font-weight: 700;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 1px;
}
.text-link:hover { opacity: 0.8; }

/* ---------- 헤더 ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-100);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: 0.08em; font-size: 17px; color: var(--navy); }
.logo img { width: 46px; height: 28px; object-fit: contain; }
.nav { display: flex; gap: 26px; font-size: 14px; font-weight: 500; color: var(--gray-700); }
.nav a:hover { color: var(--black); }
.header__cta { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 0; background: transparent; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--black); transition: 0.2s; }

/* ---------- 히어로 ---------- */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 110px 0 90px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 85% 20%, rgba(47, 101, 163, 0.45), transparent 60%),
    radial-gradient(500px 300px at 10% 90%, rgba(254, 229, 0, 0.12), transparent 60%);
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 780px; }
.hero__tag {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 13px;
  color: #d5d5d5;
  margin-bottom: 26px;
}
.hero h1 { font-size: clamp(32px, 5.6vw, 56px); line-height: 1.2; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--accent-light); }
.hero__lead { font-size: clamp(16px, 2vw, 19px); color: #cfcfcf; max-width: 600px; margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 18px; }
.hero__note { font-size: 14px; color: #a9a9a9; }

/* ---------- 카드 그리드 ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 12px;
}
.card__num { font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: 0.1em; }
.card h3 { font-size: 19px; }
.card p { color: var(--gray-700); font-size: 15px; }

/* 문제 → 해결 카드 */
.pain { border-left: 4px solid var(--gray-300); }
.pain__problem { font-size: 14px; color: var(--gray-500); }
.pain__problem::before { content: "😥 "; }
.pain__solution { margin-top: 6px; padding-top: 12px; border-top: 1px dashed var(--gray-300); font-size: 15px; color: var(--ink); }
.pain__solution::before { content: "✅ "; }

/* ---------- 섹션 하단 CTA 줄 ---------- */
.section-cta {
  margin-top: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center;
}
.section-cta p { color: var(--gray-700); font-size: 15px; }

/* ---------- CTA 박스 (게시글/섹션 공용) ---------- */
.cta-box {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
}
.cta-box h3 { font-size: 21px; margin-bottom: 6px; }
.cta-box p, .post__body .cta-box p { color: #c9c9c9; font-size: 15px; margin: 0; }
.cta-box h3, .post__body .cta-box h3 { color: var(--white); margin: 0 0 6px; padding: 0; }

/* ---------- 포트폴리오 ---------- */
.works { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.work {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
/* 브라우저 프레임 안에서 풀페이지 스크린샷이 위→아래로 스크롤되는 미리보기 */
.work__mock {
  --frame-h: 380px;
  position: relative; display: block;
  background: linear-gradient(160deg, #e9eef5, #d5dde8);
  padding: 28px 28px 0;
  overflow: hidden;
}
.work__frame {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(20, 40, 80, .18);
  border: 1px solid rgba(0,0,0,.08); border-bottom: 0;
  background: #fff;
}
.work__bar { height: 22px; background: #eceff3; display: flex; align-items: center; gap: 5px; padding: 0 10px; border-bottom: 1px solid #dde2e8; }
.work__bar span { width: 8px; height: 8px; border-radius: 50%; background: #c9cfd8; }
.work__bar span:first-child { background: #f26d5b; }
.work__bar span:nth-child(2) { background: #f5bf4f; }
.work__bar span:nth-child(3) { background: #62c554; }
.work__screen { height: var(--frame-h); overflow: hidden; position: relative; }
.work__page {
  width: 100%; height: auto; display: block;
  animation: page-scroll 22s ease-in-out infinite alternate;
  animation-delay: 1.2s;
  will-change: transform;
}
@keyframes page-scroll {
  0%   { transform: translateY(0); }
  8%   { transform: translateY(0); }
  100% { transform: translateY(calc(-100% + var(--frame-h))); }
}
.work__page--m { animation-name: page-scroll-m; }
@keyframes page-scroll-m {
  0%   { transform: translateY(0); }
  8%   { transform: translateY(0); }
  100% { transform: translateY(calc(-100% + var(--phone-w) * 2.05 - 12px)); }
}
.work__mock:hover .work__page { animation-play-state: paused; }
.work__phone {
  --phone-w: 112px;
  position: absolute; right: 22px; bottom: 18px;
  width: var(--phone-w); height: calc(var(--phone-w) * 2.05);
  border-radius: 16px; border: 3px solid #1b1f26; background: #1b1f26;
  box-shadow: 0 14px 30px rgba(0,0,0,.3);
  padding: 8px 4px 4px;
}
.work__phone::before {
  content: ""; position: absolute; left: 50%; top: 3px; transform: translateX(-50%);
  width: 36px; height: 4px; border-radius: 999px; background: #3a3f48;
}
.work__phone-screen { height: 100%; overflow: hidden; border-radius: 10px; background: #fff; }
.work__page--m { animation-duration: 26s; }
@media (prefers-reduced-motion: reduce) { .work__page { animation: none; } }

.work__body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.work__tag { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--accent); text-transform: uppercase; display: block; margin-bottom: 6px; }
.work h3 { font-size: 22px; margin-bottom: 8px; }
.work__desc { color: var(--gray-700); font-size: 15px; }
.work__ps { margin: 0; display: grid; gap: 8px; }
.work__ps > div { display: grid; grid-template-columns: 44px 1fr; gap: 10px; font-size: 14px; align-items: start; }
.work__ps dt { font-weight: 800; font-size: 12px; padding: 3px 0; text-align: center; border-radius: 6px; }
.work__ps > div:first-child dt { background: #fdecec; color: #c0392b; }
.work__ps > div:last-child dt { background: var(--accent-soft); color: var(--accent); }
.work__ps dd { margin: 0; color: var(--ink); line-height: 1.6; }
.work__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.work__chips li { font-size: 12px; font-weight: 600; color: var(--gray-700); background: var(--gray-100); padding: 5px 10px; border-radius: 999px; }
.work__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; padding-top: 6px; }
.work__actions .btn { flex: 1; }

.work-common {
  margin-top: 40px; background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 28px 30px;
}
.work-common h3 { font-size: 18px; margin-bottom: 14px; }
.work-common ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 28px; }
.work-common li { position: relative; padding-left: 24px; font-size: 14px; color: var(--gray-700); }
.work-common li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.work-common li strong { color: var(--ink); }

/* ---------- 서비스 ---------- */
.service { background: var(--white); border-radius: var(--radius); padding: 28px 24px; border: 1px solid var(--gray-100); }
.service__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.service h3 { font-size: 18px; margin-bottom: 4px; }
.service small { display: block; color: var(--gray-500); font-size: 12px; letter-spacing: 0.08em; margin-bottom: 10px; }
.service p { font-size: 15px; color: var(--gray-700); }

/* ---------- 진행 과정 ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--radius); padding: 28px 24px; }
.step__num { display: inline-flex; width: 36px; height: 36px; border-radius: 50%; background: var(--kakao); color: var(--black); font-weight: 800; align-items: center; justify-content: center; margin-bottom: 16px; }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14px; color: #c9c9c9; }
.step__time { display: inline-block; margin-top: 14px; font-size: 12px; color: var(--kakao); font-weight: 700; }

/* ---------- 후기 ---------- */
.review { background: var(--white); border-radius: var(--radius); padding: 28px; border: 1px solid var(--gray-100); box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 12px; }
.review--featured .review__text { font-size: 15px; }
.review__head { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.review__stars { color: #f5b301; letter-spacing: 2px; font-size: 14px; }
.review__score { font-weight: 800; font-size: 14px; }
.review__cat { font-size: 12px; color: var(--gray-500); background: var(--gray-100); padding: 3px 9px; border-radius: 999px; }
.review__lead { font-size: 18px; font-weight: 700; line-height: 1.5; letter-spacing: -0.01em; }
.review__text { font-size: 15px; line-height: 1.75; color: var(--ink); }
.review__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.review__tags li { font-size: 12px; color: var(--accent); background: var(--accent-soft); padding: 4px 10px; border-radius: 999px; font-weight: 600; }
.review__meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--gray-500); margin-top: auto; padding-top: 8px; }
.review__avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-weight: 800; display: flex; align-items: center; justify-content: center; flex: none; }

/* ---------- 게시글 카드 ---------- */
.post-card { background: var(--white); border-radius: var(--radius); padding: 26px; border: 1px solid var(--gray-100); box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 10px; transition: transform 0.15s; }
.post-card:hover { transform: translateY(-3px); }
.post-card__meta { font-size: 12px; color: var(--gray-500); }
.post-card h3 { font-size: 18px; }
.post-card p { font-size: 14px; color: var(--gray-700); flex: 1; }
.post-card__more { font-size: 14px; font-weight: 700; color: var(--accent); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--gray-300); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 22px 40px 22px 0; position: relative;
  font-weight: 700; font-size: 17px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 24px; font-weight: 300; color: var(--gray-500); transition: transform 0.2s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__body { padding: 0 0 22px; color: var(--gray-700); font-size: 15px; }
.faq__body a { margin-left: 4px; }


/* ---------- 문의 전 체크리스트 ---------- */
.check { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
.check__form { display: grid; gap: 18px; }
.check__q {
  border: 1px solid var(--gray-100); border-radius: var(--radius);
  background: var(--white); box-shadow: var(--shadow);
  padding: 22px 24px 24px; margin: 0; min-width: 0;
}
.check__q legend {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-weight: 700; font-size: 16px; padding: 0; margin-bottom: 14px;
  float: left; width: 100%;
}
.check__q legend small { font-weight: 500; font-size: 12px; color: var(--gray-500); background: var(--gray-100); padding: 2px 8px; border-radius: 999px; }
.check__num {
  display: inline-flex; width: 26px; height: 26px; border-radius: 50%; flex: none;
  background: var(--accent); color: #fff; font-size: 13px; font-weight: 800;
  align-items: center; justify-content: center;
}
.pills { display: flex; flex-wrap: wrap; gap: 8px; clear: both; }
.pill { position: relative; cursor: pointer; }
.pill input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.pill span {
  display: inline-block; padding: 9px 14px; border-radius: 999px;
  border: 1.5px solid var(--gray-300); background: var(--white);
  font-size: 14px; font-weight: 600; color: var(--gray-700);
  transition: .15s; user-select: none;
}
.pill:hover span { border-color: var(--accent); color: var(--accent); }
.pill input:checked + span { background: var(--accent); border-color: var(--accent); color: #fff; }
.pill input:focus-visible + span { outline: 3px solid rgba(47,101,163,.35); outline-offset: 2px; }
.check__input {
  display: block; width: 100%; margin-top: 12px;
  padding: 12px 14px; border: 1.5px solid var(--gray-300); border-radius: 10px;
  font: inherit; font-size: 14px; color: var(--ink); background: var(--white);
}
.check__input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(47,101,163,.15); }
.check__input::placeholder { color: #a8adb5; }
.check__input[hidden] { display: none; }
.check__hint { margin-top: 10px; font-size: 13px; color: var(--gray-500); clear: both; }

.check__result {
  position: sticky; top: 88px;
  background: var(--black); color: var(--white);
  border-radius: var(--radius); padding: 24px;
  display: grid; gap: 14px;
}
.check__result-head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.check__result-head strong { font-size: 17px; }
.check__result-head span { font-size: 12px; color: var(--kakao); font-weight: 700; }
.check__msg {
  width: 100%; resize: vertical; min-height: 220px;
  background: rgba(255,255,255,.06); color: #e8e8e8;
  border: 1px solid rgba(255,255,255,.14); border-radius: 10px;
  padding: 14px; font: inherit; font-size: 14px; line-height: 1.7;
}
.check__msg:focus { outline: none; border-color: var(--kakao); }
.check__status { font-size: 13px; color: #c9c9c9; }
.check__status.is-ok { color: var(--kakao); font-weight: 700; }
.check__result .check__hint { color: #8a8a8a; margin-top: 0; }

/* ---------- 최종 CTA ---------- */
.final { text-align: center; padding: 110px 0; }
.final h2 { font-size: clamp(28px, 4.5vw, 44px); margin-bottom: 16px; }
.final p { color: #c9c9c9; font-size: 17px; margin-bottom: 36px; }
.final small { display: block; margin-top: 16px; color: #8a8a8a; font-size: 13px; }

/* ---------- 푸터 ---------- */
.footer { padding: 40px 0; border-top: 1px solid var(--gray-100); font-size: 13px; color: var(--gray-500); }
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; }
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img { width: 96px; height: auto; }
.footer a:hover { color: var(--black); }

/* ---------- 플로팅 카톡 버튼 ---------- */
.floating {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: flex; align-items: center; gap: 10px;
  background: var(--kakao); color: var(--black);
  padding: 14px 20px 14px 16px; border-radius: 999px;
  font-weight: 800; font-size: 15px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.15s;
}
.floating:hover { transform: translateY(-3px); }
.floating svg { width: 24px; height: 24px; }

/* ---------- 게시글 페이지 ---------- */
.post { padding: 70px 0 90px; }
.post__inner { max-width: 760px; margin: 0 auto; }
.post__meta { font-size: 13px; color: var(--gray-500); margin-bottom: 14px; }
.post h1 { font-size: clamp(28px, 4.5vw, 40px); margin-bottom: 18px; }
.post__summary { font-size: 17px; color: var(--gray-700); padding: 18px 22px; background: var(--gray-100); border-radius: 10px; margin-bottom: 40px; }
.post__body h2 { font-size: 23px; margin: 48px 0 14px; padding-top: 8px; }
.post__body h3 { font-size: 18px; margin: 30px 0 10px; }
.post__body p { margin-bottom: 16px; color: var(--ink); }
.post__body ul, .post__body ol { margin: 0 0 16px 22px; padding: 0; list-style: disc; }
.post__body ol { list-style: decimal; }
.post__body li { margin-bottom: 6px; }
.post__body .cta-box { margin: 40px 0; }
.post__body table { width: 100%; border-collapse: collapse; font-size: 14px; margin-bottom: 20px; }
.post__body th, .post__body td { border: 1px solid var(--gray-300); padding: 10px 12px; text-align: left; vertical-align: top; }
.post__body th { background: var(--gray-100); }
.table-wrap { overflow-x: auto; }
.table-wrap table { min-width: 560px; }
.callout { border-left: 3px solid var(--accent); background: var(--accent-soft); padding: 14px 18px; border-radius: 0 8px 8px 0; margin-bottom: 20px; font-size: 15px; }
.related { margin-top: 60px; padding-top: 30px; border-top: 1px solid var(--gray-300); }
.related h3 { font-size: 16px; margin-bottom: 14px; color: var(--gray-500); }
.related ul li { margin-bottom: 8px; }
.related a { font-weight: 700; }
.related a:hover { color: var(--accent); }
.back-home { display: inline-block; margin-bottom: 24px; font-size: 14px; color: var(--gray-500); }
.back-home:hover { color: var(--black); }

/* ---------- 스크롤 등장 ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- 반응형 ---------- */
@media (max-width: 1024px) {
  .check { grid-template-columns: 1fr; }
  .check__result { position: static; }
  .works { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .work-common ul { grid-template-columns: 1fr; }
  .work__mock { --frame-h: 260px; padding: 18px 18px 0; }
  .work__phone { --phone-w: 84px; right: 14px; bottom: 12px; }
  .section { padding: 70px 0; }
  .hero { padding: 80px 0 60px; }
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 68px;
    flex-direction: column; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--gray-100);
    padding: 10px 20px 16px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--gray-100); font-size: 15px; }
  .menu-toggle { display: flex; }
  .header__cta .btn { padding: 10px 16px; font-size: 13px; }
  .cta-box { padding: 28px 22px; }
  .cta-box .btn { width: 100%; }
  .floating span { display: none; }
  .floating { padding: 14px; }
}
@media (max-width: 480px) {
  .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .btn { white-space: normal; text-align: center; line-height: 1.3; }
  .header__cta .btn { white-space: nowrap; }
}
@media (max-width: 420px) {
  .header__inner { gap: 10px; }
  .logo { font-size: 15px; gap: 6px; }
  .logo img { width: 38px; height: 24px; }
}
