/* ==========================================================
   앤트클린 (Ant Clean) — shared stylesheet
   Mobile-first · no framework · works from file://
   ========================================================== */
:root {
  --navy: #06265A;
  --navy-700: #0B3470;
  --teal: #007BE8;
  --teal-600: #0066C4;
  --teal-50: #E8F2FD;
  --bg: #F4F7FC;
  --text: #1B1F24;
  --muted: #5C6670;
  --line: #DFE6F0;
  --white: #FFFFFF;
  --radius: 12px;
  --shadow: 0 2px 10px rgba(6, 38, 90, .06), 0 8px 24px rgba(6, 38, 90, .06);
  --shadow-lg: 0 12px 40px rgba(6, 38, 90, .14);
  --container: 1100px;
  --gutter: 16px;
  --font: "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
img, svg { max-width: 100%; height: auto; display: block; }
[id] { scroll-margin-top: 80px; }
a { color: var(--teal-600); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.3; margin: 0 0 .5em; color: var(--navy); letter-spacing: -.01em; }
h1 { font-size: clamp(1.7rem, 5.5vw, 2.6rem); font-weight: 800; }
h2 { font-size: clamp(1.35rem, 4vw, 1.9rem); font-weight: 800; }
h3 { font-size: 1.1rem; font-weight: 700; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.2em; margin: 0 0 1em; }
li { margin-bottom: .35em; }
table { width: 100%; border-collapse: collapse; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: 56px 0; }
.section--alt { background: var(--bg); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section-head { max-width: 680px; margin-bottom: 28px; }
.section-head .eyebrow { display: inline-block; font-size: .8rem; font-weight: 700; color: var(--teal-600); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.section-head p { color: var(--muted); margin: 0; }
.section--navy .section-head p { color: rgba(255,255,255,.75); }
.section--navy .section-head .eyebrow { color: #7CC0FF; }
.lead { font-size: 1.05rem; color: var(--muted); }
.muted { color: var(--muted); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 10px; font-weight: 700; font-size: 1rem;
  border: 1.5px solid transparent; cursor: pointer; transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  line-height: 1.2; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--teal); color: #fff; box-shadow: 0 6px 16px rgba(0,123,232,.28); }
.btn--primary:hover { background: var(--teal-600); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-700); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--bg); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost-light:hover { background: rgba(255,255,255,.1); }
.btn--kakao { background: #FEE500; color: #191919; }
.btn--kakao:hover { background: #F5DC00; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50;
  background: rgba(255,255,255,.94); backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 62px; gap: 12px; }
.logo { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.2rem; color: var(--navy); letter-spacing: -.02em; }
.logo:hover { text-decoration: none; }
.logo__mark { width: 40px; height: 40px; flex: none; }
.logo__word b { font-weight: 800; color: var(--teal); }
.footer .logo__mark { background: #fff; border-radius: 10px; padding: 3px; }
.footer .logo__word b { color: #7CC0FF; }
.logo small { display: none; font-weight: 500; font-size: .75rem; color: var(--muted); margin-left: 2px; }
.nav { display: none; }
.nav ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; }
.nav a { display: block; padding: 8px 12px; border-radius: 8px; color: var(--text); font-weight: 600; font-size: .95rem; }
.nav a:hover, .nav a[aria-current="page"] { background: var(--bg); color: var(--navy); text-decoration: none; }
.header__cta { display: none; }
.header__phone { display: inline-flex; align-items: center; gap: 6px; padding: 9px 14px; border-radius: 10px; background: var(--navy); color: #fff; font-weight: 700; font-size: .95rem; }
.header__phone:hover { background: var(--navy-700); text-decoration: none; }
.header__phone svg { width: 16px; height: 16px; }
.hamburger { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 10px; background: none; border: 0; cursor: pointer; border-radius: 8px; }
.hamburger span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; border-top: 1px solid var(--line); background: #fff; }
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 8px 0; }
.mobile-nav a { display: block; padding: 13px var(--gutter); font-weight: 600; color: var(--text); border-bottom: 1px solid var(--bg); }
.mobile-nav a:hover { background: var(--bg); text-decoration: none; }
.mobile-nav .mobile-nav__cta { padding: 12px var(--gutter) 16px; display: grid; gap: 8px; }

/* ---------- Hero ---------- */
.hero { position: relative; background: linear-gradient(160deg, #06265A 0%, #0B3470 55%, #0A4B96 100%); color: #fff; overflow: hidden; }
.hero::after { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(0,123,232,.35), transparent 65%); pointer-events: none; }
.hero__inner { position: relative; padding-top: 56px; padding-bottom: 48px; display: grid; gap: 28px; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 700; color: #7CC0FF; margin-bottom: 14px; }
.hero__eyebrow::before { content: ""; width: 22px; height: 2px; background: #7CC0FF; }
.hero h1 { color: #fff; margin-bottom: 14px; }
.hero h1 em { font-style: normal; color: #7CC0FF; }
.hero__sub { font-size: 1.05rem; color: rgba(255,255,255,.82); max-width: 560px; margin-bottom: 24px; }
.hero__note { font-size: .85rem; color: rgba(255,255,255,.6); margin-top: 14px; margin-bottom: 0; }
.hero__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero--sub .hero__inner { padding-top: 44px; padding-bottom: 40px; }
.hero--sub .hero__sub { margin-bottom: 18px; }
.breadcrumb { font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb span { margin: 0 6px; }

/* ---------- Trust bar ---------- */
.trust { background: #fff; border-bottom: 1px solid var(--line); }
.trust__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.trust__item { display: flex; align-items: center; gap: 10px; padding: 16px 8px; font-weight: 700; font-size: .92rem; color: var(--navy); }
.trust__item svg { width: 22px; height: 22px; flex: none; color: var(--teal); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 16px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.card h3 { margin-top: 12px; }
.card p { color: var(--muted); font-size: .95rem; margin-bottom: 0; }
.card ul { color: var(--muted); font-size: .92rem; margin: 10px 0 0; }
.card--link { display: block; color: inherit; }
.card--link:hover { text-decoration: none; }
.card__more { display: inline-block; margin-top: 14px; font-weight: 700; color: var(--teal-600); font-size: .92rem; }
.icon-badge { width: 48px; height: 48px; border-radius: 12px; background: var(--teal-50); color: var(--teal-600); display: inline-flex; align-items: center; justify-content: center; }
.icon-badge svg { width: 26px; height: 26px; }
.num-badge { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; font-size: 1rem; }

/* ---------- Why (points) ---------- */
.point { display: flex; gap: 16px; align-items: flex-start; }
.point .icon-badge { flex: none; }
.point h3 { margin-top: 4px; }
.point p { color: var(--muted); margin-bottom: 0; font-size: .95rem; }

/* ---------- Process ---------- */
.steps { display: grid; gap: 14px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; position: relative; }
.step__no { font-size: .8rem; font-weight: 800; color: var(--teal-600); letter-spacing: .1em; margin-bottom: 6px; }
.step h3 { margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .93rem; margin-bottom: 0; }

/* ---------- Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 10px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--navy); font-weight: 700; font-size: .95rem; box-shadow: var(--shadow); }
.chip:hover { border-color: var(--teal); color: var(--teal-600); text-decoration: none; }
.chip svg { width: 16px; height: 16px; }
.chip small { font-weight: 500; color: var(--muted); font-size: .8rem; }

/* ---------- Placeholder image ---------- */
.ph {
  position: relative; width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, #DDE7F4 0%, #C6D7EC 50%, #B0C7E3 100%);
  display: flex; align-items: center; justify-content: center;
}
.ph::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, rgba(255,255,255,.18) 0 10px, transparent 10px 20px); }
.ph::after {
  content: attr(data-label); position: relative; z-index: 1; padding: 8px 12px; border-radius: 8px;
  background: rgba(6,38,90,.72); color: #fff; font-size: .78rem; font-weight: 600; text-align: center; max-width: 86%; line-height: 1.4;
}
.ph--wide { aspect-ratio: 16 / 9; }
.ph--hero { aspect-ratio: 5 / 4; background: linear-gradient(135deg, #0A4B96 0%, #0B3470 45%, #007BE8 130%); }
.ph--hero::after { background: rgba(0,0,0,.35); }
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.ph img[src=""], .ph img:not([src]) { display: none; }
.ph--split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.ph--split::after { grid-column: 1 / -1; justify-self: center; align-self: center; }

/* ---------- Case cards ---------- */
.case { padding: 0; overflow: hidden; }
.case .ph { border-radius: 0; }
.case__body { padding: 18px 20px 20px; }
.case__meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.tag { display: inline-block; padding: 3px 9px; border-radius: 6px; background: var(--bg); color: var(--navy); font-size: .76rem; font-weight: 700; }
.tag--teal { background: var(--teal-50); color: var(--teal-600); }
.case h3 { font-size: 1.02rem; margin: 0 0 6px; }
.case p { font-size: .9rem; }
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.ba .ph { aspect-ratio: 1 / 1; }
.ba .ph:first-child::after { background: rgba(120,40,40,.75); }
.ba .ph:last-child::after { background: rgba(0,102,196,.8); }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.table { min-width: 560px; }
.table th, .table td { padding: 13px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: .93rem; }
.table th { background: var(--bg); color: var(--navy); font-weight: 700; white-space: nowrap; }
.table tr:last-child td { border-bottom: 0; }
.table td:first-child { font-weight: 700; color: var(--navy); white-space: nowrap; }
.table .ok { color: var(--teal-600); font-weight: 700; }

/* ---------- Checklist / info ---------- */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; padding: 12px 14px; background: #fff; border: 1px solid var(--line); border-radius: 10px; font-size: .95rem; }
.checklist li::before { content: "✓"; flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--teal-50); color: var(--teal-600); font-weight: 800; font-size: .8rem; display: inline-flex; align-items: center; justify-content: center; margin-top: 2px; }
.pain { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.pain li { padding: 14px 16px 14px 44px; position: relative; background: #fff; border-left: 4px solid var(--navy); border-radius: 8px; box-shadow: var(--shadow); font-size: .97rem; }
.pain li::before { content: "?"; position: absolute; left: 14px; top: 13px; width: 22px; height: 22px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 800; font-size: .8rem; display: inline-flex; align-items: center; justify-content: center; }
.info-box { background: var(--teal-50); border: 1px solid #BFDCFA; border-radius: var(--radius); padding: 18px 20px; font-size: .95rem; }
.info-box strong { color: var(--teal-600); }
.info-box p:last-child { margin-bottom: 0; }
.freq { display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); }
.freq div { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 14px; }
.freq strong { display: block; color: var(--navy); margin-bottom: 4px; }
.freq span { font-size: .88rem; color: var(--muted); }

/* ---------- FAQ (details) ---------- */
.faq { display: grid; gap: 10px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 0 18px; box-shadow: var(--shadow); }
.faq summary { cursor: pointer; list-style: none; padding: 16px 30px 16px 0; font-weight: 700; color: var(--navy); position: relative; font-size: .98rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 24px; height: 24px; border-radius: 50%; background: var(--bg); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; }
.faq details[open] summary::after { content: "–"; background: var(--teal-50); color: var(--teal-600); }
.faq details > div { padding: 0 0 18px; color: var(--muted); font-size: .95rem; }
.faq details > div p:last-child { margin-bottom: 0; }
.faq-group { margin-bottom: 36px; }
.faq-group h2 { font-size: 1.25rem; padding-bottom: 10px; border-bottom: 2px solid var(--navy); margin-bottom: 16px; }

/* ---------- CTA ---------- */
.cta { background: linear-gradient(135deg, var(--navy) 0%, #0A4B96 100%); color: #fff; border-radius: 16px; padding: 36px 24px; text-align: center; box-shadow: var(--shadow-lg); }
.cta h2 { color: #fff; margin-bottom: 8px; }
.cta p { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 22px; }
.cta .btn-row { justify-content: center; }
.cta__phone { display: block; font-size: clamp(1.6rem, 6vw, 2.2rem); font-weight: 800; color: #fff; letter-spacing: .02em; margin: 6px 0 14px; }
.cta__phone:hover { text-decoration: none; color: #7CC0FF; }

/* ---------- Contact form ---------- */
.contact-grid { display: grid; gap: 24px; }
.phone-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.phone-card .big { display: block; font-size: clamp(1.7rem, 7vw, 2.4rem); font-weight: 800; color: var(--navy); letter-spacing: .02em; margin: 6px 0 4px; }
.phone-card .big:hover { color: var(--teal-600); text-decoration: none; }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.form__row { display: grid; gap: 14px; margin-bottom: 14px; }
.form__row--2 { grid-template-columns: 1fr; }
.field label { display: block; font-weight: 700; font-size: .9rem; color: var(--navy); margin-bottom: 6px; }
.field label span { color: #D14343; margin-left: 2px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; font: inherit; color: var(--text); background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,123,232,.18); }
.field textarea { min-height: 110px; resize: vertical; }
.form__note { font-size: .85rem; color: var(--muted); margin: 6px 0 16px; }
.form__result { display: none; margin-top: 20px; border-top: 1px dashed var(--line); padding-top: 20px; }
.form__result.is-visible { display: block; }
.form__result pre { white-space: pre-wrap; background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 16px; font: inherit; font-size: .92rem; margin: 0 0 14px; }
.form__result .btn-row .btn { flex: 1 1 160px; }
.copied { font-size: .88rem; color: var(--teal-600); font-weight: 700; margin-top: 10px; display: none; }
.copied.is-visible { display: block; }

/* ---------- Area page ---------- */
.dong-list { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; margin: 0 0 8px; }
.dong-list li { padding: 5px 11px; background: rgba(255,255,255,.12); border-radius: 6px; font-size: .85rem; color: #fff; }
.service-links { display: grid; gap: 12px; }
.service-link { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); color: var(--navy); font-weight: 700; box-shadow: var(--shadow); }
.service-link:hover { border-color: var(--teal); text-decoration: none; }
.service-link .icon-badge { width: 40px; height: 40px; flex: none; }
.service-link .icon-badge svg { width: 22px; height: 22px; }
.service-link small { display: block; font-weight: 500; color: var(--muted); font-size: .85rem; }
.service-link .arrow { margin-left: auto; color: var(--teal); }

/* ---------- Prose ---------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 36px; }
.prose h3 { margin-top: 24px; }
.prose p, .prose li { color: #333A42; }

/* ---------- Footer ---------- */
.footer { background: #041A3E; color: rgba(255,255,255,.75); padding: 48px 0 110px; font-size: .92rem; }
.footer__grid { display: grid; gap: 28px; }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 10px; }
.footer a { color: rgba(255,255,255,.85); }
.footer a:hover { color: #7CC0FF; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 6px; }
.footer .logo { color: #fff; margin-bottom: 10px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 28px; padding-top: 20px; font-size: .82rem; color: rgba(255,255,255,.5); display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; }
.footer__phone { font-size: 1.25rem; font-weight: 800; color: #fff !important; }

/* ---------- Mobile bottom bar ---------- */
.bottom-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 10px var(--gutter);
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-top: 1px solid var(--line);
}
.bottom-bar .btn { padding: 13px 10px; font-size: .98rem; }

/* ---------- 404 ---------- */
.error-page { min-height: 60vh; display: flex; align-items: center; text-align: center; }
.error-page .code { font-size: 5rem; font-weight: 900; color: var(--teal); line-height: 1; margin-bottom: 8px; }

/* ==========================================================
   Breakpoints
   ========================================================== */
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .form__row--2 { grid-template-columns: 1fr 1fr; }
  .freq { grid-template-columns: repeat(3, 1fr); }
  .service-links { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .trust__grid { grid-template-columns: repeat(4, 1fr); }
  .logo small { display: inline; }
}
@media (min-width: 960px) {
  .section { padding: 80px 0; }
  .nav { display: block; }
  .header__cta { display: inline-flex; }
  .hamburger, .mobile-nav { display: none !important; }
  .header__inner { height: 72px; }
  .hero__inner { grid-template-columns: 1.15fr 1fr; align-items: center; padding-top: 88px; padding-bottom: 80px; }
  .hero--sub .hero__inner { grid-template-columns: 1fr; padding-top: 64px; padding-bottom: 56px; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1.5fr; align-items: start; }
  .cta { padding: 56px 40px; }
  .bottom-bar { display: none; }
  .footer { padding-bottom: 48px; }
  .trust__item { padding: 20px 12px; justify-content: center; }
}
@media print {
  .header, .bottom-bar, .mobile-nav, .cta, .footer { display: none !important; }
}
