:root {
  --navy-950: #041f38;
  --navy-900: #062b4d;
  --navy-800: #0a3b63;
  --navy-700: #0b537d;
  --teal-600: #0797a5;
  --teal-500: #0bb4b6;
  --teal-400: #27c7c4;
  --cyan-100: #e8fbfc;
  --sky-100: #eef7fb;
  --sky-50: #f7fbfd;
  --warm-50: #fbfaf7;
  --gray-900: #182230;
  --gray-700: #475467;
  --gray-600: #667085;
  --gray-500: #7e8897;
  --gray-300: #d8dee6;
  --gray-200: #e8ecf1;
  --gray-100: #f4f6f8;
  --white: #fff;
  --yellow: #ffb800;
  --shadow-sm: 0 8px 26px rgba(6, 43, 77, .08);
  --shadow-md: 0 18px 46px rgba(6, 43, 77, .13);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--gray-900);
  background: var(--white);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", Inter, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { width: 1.25em; height: 1.25em; }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: -80px;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--navy-900);
  color: #fff;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-heading { margin-bottom: 42px; }
.section-heading.centered { text-align: center; }
.section-heading h2,
.panel-heading h2,
.bottom-cta h2,
.benefit-head h2 { margin: 0; color: var(--navy-950); letter-spacing: -.04em; }
.section-heading h2 { font-size: clamp(30px, 3vw, 44px); }
.eyebrow { margin: 0 0 8px; color: var(--teal-600); font-size: 12px; font-weight: 800; letter-spacing: .14em; }

.btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid rgba(11, 180, 182, .25); outline-offset: 3px; }
.btn-sm { min-height: 42px; padding-inline: 18px; font-size: 14px; }
.btn-primary { background: var(--navy-900); color: #fff; box-shadow: 0 8px 20px rgba(6, 43, 77, .18); }
.btn-primary:hover { background: var(--navy-800); }
.btn-outline { border-color: #97a9ba; background: rgba(255,255,255,.78); color: var(--navy-900); }
.btn-outline:hover { border-color: var(--navy-900); background: #fff; }
.btn-accent { background: linear-gradient(135deg, var(--teal-500), var(--teal-600)); color: #fff; box-shadow: 0 10px 24px rgba(7, 151, 165, .22); }
.btn-dark { background: var(--navy-950); color: #fff; }
.bottom-cta .btn-dark { min-height: 60px; } /* match the adjacent phone-pill's height */
.btn-block { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(216, 222, 230, .75);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
}
.header-inner { display: flex; align-items: center; min-height: 74px; gap: 28px; }
.brand { flex: 0 0 210px; }
.brand img { width: 205px; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 34px; flex: 1; }
.main-nav a { position: relative; color: #334155; font-size: 14px; font-weight: 700; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--teal-500); transition: right .2s ease; }
.main-nav a:hover::after { right: 0; }
.header-actions { display: flex; gap: 10px; }
.mobile-menu-btn { display: none; border: 0; background: transparent; color: var(--navy-900); }
.mobile-menu-btn svg { width: 28px; height: 28px; }
.mobile-nav { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 10%, rgba(11,180,182,.11), transparent 34%),
    linear-gradient(90deg, #fbfdff 0%, #fff 44%, #f8fbfc 100%);
  --container: 100000px; /* hero content should fill the full viewport width, not the shared container max-width */
}
.hero::before { content: ""; position: absolute; inset: auto auto -210px -110px; width: 500px; height: 500px; border-radius: 50%; background: rgba(11,180,182,.06); }
.hero-grid { display: grid; grid-template-columns: 46% 54%; min-height: 620px; align-items: stretch; }
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 74px 48px 48px 0;
  /* .hero bleeds to 100vw, but hero-copy's text should still start where every
     other section's 1180px container starts (its own 20px gutter already
     covers widths <=1220px, so only add the extra offset beyond that) */
  padding-left: max(0px, calc((100vw - 1180px) / 2 - 20px));
  /* widen the box itself (not just its padding) so the text has more room to
     breathe; it overflows rightward into hero-visual's left edge, which is
     already covered by hero-visual::after's white fade, so hero-visual's own
     grid track/width/position never changes */
  width: 128%;
}
.hero-copy h1 { margin: 0; color: var(--navy-950); font-size: clamp(44px, 4.8vw, 68px); line-height: 1.15; letter-spacing: -.055em; }
.hero-copy h1 span { color: var(--teal-600); }
.hero-desc { max-width: 490px; margin: 22px 0 26px; color: var(--gray-700); font-size: 18px; }
.hero-buttons { display: flex; gap: 12px; margin-bottom: 28px; }
.hero-buttons .btn svg { width: 18px; height: 18px; }

.estimate-card {
  width: min(100%, 390px);
  padding: 22px;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-md);
}
.estimate-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.estimate-heading strong { color: var(--navy-950); font-size: 19px; }
.estimate-heading span { color: var(--gray-500); font-size: 12px; }
.estimate-card label { display: grid; grid-template-columns: 84px 1fr; align-items: center; gap: 10px; margin-bottom: 10px; }
.estimate-card label > span { color: var(--gray-700); font-size: 13px; font-weight: 700; }
.estimate-card input,
.estimate-card select,
.modal-dialog input,
.modal-dialog textarea {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: 9px;
  background: #fff;
  color: var(--gray-900);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.estimate-card input,
.estimate-card select { min-height: 42px; padding: 0 12px; }
.estimate-card input:focus,
.estimate-card select:focus,
.modal-dialog input:focus,
.modal-dialog textarea:focus { border-color: var(--teal-500); box-shadow: 0 0 0 3px rgba(11,180,182,.13); }
.form-note { margin: 10px 0 0; color: var(--gray-500); font-size: 11px; text-align: center; }

.hero-visual { position: relative; min-height: 620px; overflow: hidden; }
.hero-visual::after { content: ""; position: absolute; inset: 0 auto 0 0; width: 28%; background: linear-gradient(90deg, #fff, rgba(255,255,255,0)); pointer-events: none; }
.hero-visual > img { width: 100%; height: 100%; object-fit: cover; object-position: 50% center; }
.hero-trust-card {
  position: absolute;
  z-index: 2;
  right: 46px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 250px;
  padding: 17px 19px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 17px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}
.hero-trust-card > svg { width: 44px; height: 44px; padding: 8px; border-radius: 12px; background: var(--cyan-100); color: var(--teal-600); }
.hero-trust-card div { display: grid; }
.hero-trust-card span { color: var(--gray-600); font-size: 12px; }
.hero-trust-card strong { color: var(--teal-600); font-size: 27px; line-height: 1.1; }
.hero-trust-card small { margin-top: 4px; color: var(--gray-700); font-size: 11px; }

.metrics { border-block: 1px solid #eef1f4; background: linear-gradient(180deg, #f8fbfd, #fff); }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metrics article { display: flex; align-items: center; gap: 18px; min-height: 138px; padding: 24px 34px; }
.metrics article + article { border-left: 1px solid var(--gray-200); }
.metric-icon { display: grid; place-items: center; flex: 0 0 54px; height: 54px; border-radius: 50%; background: #fff; color: var(--navy-900); box-shadow: var(--shadow-sm); }
.metric-icon svg { width: 29px; height: 29px; }
.metrics article:nth-child(3) .metric-icon svg { width: 25px; height: 25px; }
.metrics article div { display: grid; }
.metrics strong { color: var(--navy-900); font-size: 23px; line-height: 1.2; }
.metrics b { margin-top: 3px; color: var(--gray-900); font-size: 13px; }
.metrics small { margin-top: 2px; color: var(--gray-500); font-size: 11px; }

.services { background: var(--white); }
.service-mosaic { display: grid; grid-template-columns: 1.15fr 1fr 1.08fr; grid-template-rows: 205px 205px; gap: 16px; }
.service-card { position: relative; overflow: hidden; border: 1px solid var(--gray-200); border-radius: 18px; background: linear-gradient(135deg, #fff, #f6f8f9); box-shadow: 0 10px 28px rgba(6,43,77,.06); isolation: isolate; }
.service-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 38%, rgba(255,255,255,.08) 78%); }
.service-card img { position: absolute; z-index: -2; inset: 0 0 0 auto; width: 62%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover img { transform: scale(1.045); }
.service-household { grid-row: 1 / 3; }
.service-household img { width: 100%; }
.service-household::after { background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.6) 38%, rgba(255,255,255,.04) 74%); }
.service-office { grid-row: 1 / 3; }
.service-office img { width: 100%; }
.service-office::after { background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.72) 34%, rgba(255,255,255,.05) 72%); }
.service-copy { position: relative; z-index: 2; padding: 24px; }
.service-copy > span { display: inline-flex; margin-bottom: 8px; color: var(--teal-600); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.service-copy h3 { margin: 0; color: var(--navy-950); font-size: 24px; letter-spacing: -.03em; }
.service-copy p { margin: 8px 0 14px; color: var(--gray-700); font-size: 14px; line-height: 1.55; }
.service-copy a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(7,151,165,.2); border-radius: 50%; background: #fff; color: var(--teal-600); box-shadow: var(--shadow-sm); }
.service-copy a:hover { background: var(--teal-600); color: #fff; }
.service-copy a svg { width: 18px; height: 18px; }

.process { background: var(--warm-50); }
.process-list { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin: 0; padding: 0; list-style: none; }
.process-list::before { content: ""; position: absolute; top: 49px; left: 12%; right: 12%; border-top: 2px dashed #cbd8e2; }
.process-list li { position: relative; z-index: 1; text-align: center; }
.step-no { position: absolute; top: 34px; left: calc(50% - 55px); display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--teal-600); color: #fff; font-size: 11px; font-weight: 900; box-shadow: 0 5px 14px rgba(7,151,165,.2); }
.step-icon { display: grid; place-items: center; width: 78px; height: 78px; margin: 12px auto 18px; border: 1px solid var(--gray-300); border-radius: 50%; background: #fff; color: var(--navy-900); box-shadow: var(--shadow-sm); }
.step-icon svg { width: 34px; height: 34px; }
.process-list h3 { margin: 0; color: var(--navy-950); font-size: 19px; }
.process-list p { margin: 8px 0 0; color: var(--gray-600); font-size: 13px; }

.reasons { background: #fff; }
.reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.reason-grid article { display: flex; gap: 18px; align-items: center; min-height: 154px; padding: 26px; border: 1px solid var(--gray-200); border-radius: 17px; background: linear-gradient(135deg, #fff, #fbfcfd); box-shadow: 0 12px 28px rgba(6,43,77,.05); }
.reason-icon { display: grid; place-items: center; flex: 0 0 72px; height: 72px; border-radius: 18px; background: var(--sky-100); color: var(--teal-600); }
.reason-grid article:nth-child(2) .reason-icon { background: #eff3ff; color: #5268d8; }
.reason-grid article:nth-child(3) .reason-icon { background: #fff3dc; color: #d88a00; }
.reason-icon svg { width: 39px; height: 39px; }
.reason-grid h3 { margin: 0 0 6px; color: var(--navy-950); font-size: 20px; }
.reason-grid p { margin: 0; color: var(--gray-600); font-size: 13px; }

.benefit-banner { padding: 34px 0; background: linear-gradient(135deg, var(--navy-950), #073d68 70%, #07587a); color: #fff; }
.benefit-inner { display: grid; grid-template-columns: 1.3fr 2.2fr auto; align-items: center; gap: 34px; }
.benefit-head p { margin: 0 0 5px; color: #77d7da; font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.benefit-head h2 { color: #fff; font-size: 25px; line-height: 1.35; }
.benefit-head h2 span { color: #36d4d2; }
.benefit-items { display: grid; grid-template-columns: repeat(3, 1fr); }
.benefit-items article { display: flex; align-items: center; gap: 14px; padding: 0 22px; }
.benefit-items article + article { border-left: 1px solid rgba(255,255,255,.2); }
.benefit-items svg { width: 36px; height: 36px; color: #fff; }
.benefit-items div { display: grid; }
.benefit-items strong { font-size: 14px; }
.benefit-items span { color: rgba(255,255,255,.68); font-size: 11px; }
.benefit-banner .btn { white-space: nowrap; }

.reviews { background: #fff; }
/* .review-slider is the fixed-size viewport; .review-track holds all cards
   in a row and slides via transform so both the dots and auto-roll actually
   move the visible set of reviews, on every breakpoint. */
.review-slider { position: relative; overflow: hidden; }
.review-track { display: flex; gap: 18px; transition: transform .5s ease; }
.review-card { flex: 0 0 calc((100% - 36px) / 3); min-height: 245px; /* flex: 0 0 ... already implies flex-shrink:0, keeping cards at full size so the track overflows .review-slider and can be revealed by sliding */ padding: 28px; border: 1px solid var(--gray-200); border-radius: 18px; background: #fff; box-shadow: 0 10px 30px rgba(6,43,77,.05); }
.review-card:hover { border-color: rgba(7,151,165,.35); box-shadow: var(--shadow-sm); }
.stars { color: var(--yellow); font-size: 20px; letter-spacing: 2px; }
.review-card > p { min-height: 84px; margin: 18px 0 24px; color: var(--gray-700); font-size: 15px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.avatar { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; color: #fff; font-weight: 900; }
.avatar-a { background: linear-gradient(135deg, #d58b76, #7a4a44); }
.avatar-b { background: linear-gradient(135deg, #4f7aa2, #263e56); }
.avatar-c { background: linear-gradient(135deg, #d79a70, #72503f); }
.avatar-d { background: linear-gradient(135deg, #6fae8f, #2f5b46); }
.avatar-e { background: linear-gradient(135deg, #9a86c9, #4d3d78); }
.avatar-f { background: linear-gradient(135deg, #d9b24c, #8a611c); }
.reviewer div { display: grid; }
.reviewer strong { color: var(--navy-950); font-size: 14px; }
.reviewer span { color: var(--gray-500); font-size: 12px; }
.slider-dots { display: flex; justify-content: center; gap: 7px; margin-top: 24px; }
.slider-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px; background: #d7dce3; transition: width .2s ease, background .2s ease; }
.slider-dots button.active { width: 26px; background: var(--navy-900); }

.faq-gallery { padding-top: 72px; background: linear-gradient(180deg, #fff, #fbfcfd); }
.split-content { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; }
.panel-heading { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 22px; }
.panel-heading h2 { font-size: 32px; }
.panel-heading a { display: inline-flex; align-items: center; gap: 6px; color: var(--gray-600); font-size: 12px; font-weight: 700; }
.panel-heading a svg { width: 15px; height: 15px; }
.accordion { border-top: 1px solid var(--gray-300); }
.accordion-item { border-bottom: 1px solid var(--gray-300); }
.accordion-item button { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 60px; padding: 0 14px; border: 0; background: transparent; color: var(--gray-900); text-align: left; font-weight: 700; }
.accordion-item button svg { width: 18px; height: 18px; color: var(--gray-500); transition: transform .2s ease; }
.accordion-item.open button svg { transform: rotate(45deg); color: var(--teal-600); }
.accordion-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.accordion-body > p { overflow: hidden; margin: 0; padding: 0 14px; color: var(--gray-600); font-size: 13px; }
.accordion-item.open .accordion-body { grid-template-rows: 1fr; }
.accordion-item.open .accordion-body > p { padding-bottom: 18px; }
.gallery-grid { display: grid; grid-template-columns: 1.08fr .92fr; grid-template-rows: 142px 142px; gap: 10px; }
.gallery-grid figure { position: relative; overflow: hidden; margin: 0; border-radius: 14px; background: var(--gray-100); }
.gallery-grid .gallery-main { grid-row: 1 / 3; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figcaption { position: absolute; left: 12px; bottom: 10px; padding: 5px 9px; border-radius: 7px; background: rgba(4,31,56,.74); color: #fff; font-size: 11px; backdrop-filter: blur(6px); }

.bottom-cta { padding: 32px 0; background: linear-gradient(100deg, var(--teal-600), var(--teal-500) 60%, #06a7b5); color: #fff; }
.bottom-cta-inner { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 28px; }
.bottom-cta p { margin: 0 0 4px; color: rgba(255,255,255,.72); font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.bottom-cta h2 { color: #fff; font-size: 29px; }
.bottom-cta span { color: rgba(255,255,255,.78); font-size: 13px; }
.phone-pill { display: flex; align-items: center; gap: 11px; min-width: 228px; min-height: 60px; padding: 11px 18px; border-radius: 11px; background: rgba(255,255,255,.96); color: var(--navy-900); box-shadow: var(--shadow-sm); }
.phone-pill svg { width: 26px; height: 26px; }
.phone-pill span { display: grid; color: var(--gray-600); font-size: 10px; line-height: 1.2; }
.phone-pill strong { color: var(--navy-900); font-size: 22px; }

.site-footer { padding: 58px 0 24px; background: var(--navy-950); color: rgba(255,255,255,.76); }
.footer-grid { display: grid; grid-template-columns: 1.15fr .65fr 1.2fr; gap: 60px; }
.footer-brand img { width: 190px; padding: 8px 12px; border-radius: 10px; background: #fff; }
.footer-brand p, .footer-contact p { margin: 18px 0 0; font-size: 11px; line-height: 1.85; }
.footer-contact { display: grid; align-content: start; }
.footer-contact > span { font-size: 12px; font-weight: 700; }
.footer-contact > strong { margin-top: 5px; color: #fff; font-size: 28px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-links > div { display: grid; align-content: start; gap: 8px; }
.footer-links strong { margin-bottom: 4px; color: #fff; font-size: 13px; }
.footer-links a { color: rgba(255,255,255,.62); font-size: 11px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); }
.footer-bottom small { font-size: 10px; }
.socials { display: flex; gap: 10px; }
.socials a { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; }
.socials a:hover { background: var(--teal-600); }
.socials svg { width: 16px; height: 16px; }

.floating-consult {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 9px;
  height: 54px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--navy-900);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(6,43,77,.25);
}
.floating-consult svg { width: 23px; height: 23px; }
.back-to-top { position: fixed; z-index: 850; right: 28px; bottom: 98px; display: none; width: 42px; height: 42px; border: 1px solid var(--gray-300); border-radius: 50%; background: #fff; color: var(--navy-900); box-shadow: var(--shadow-sm); }
.back-to-top.visible { display: grid; place-items: center; }

.modal { position: fixed; z-index: 2000; inset: 0; display: none; place-items: center; padding: 20px; }
.modal.is-open { display: grid; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(4,31,56,.64); backdrop-filter: blur(6px); }
.modal-dialog { position: relative; z-index: 1; width: min(100%, 470px); padding: 34px; border-radius: 24px; background: #fff; box-shadow: 0 30px 90px rgba(4,31,56,.32); }
.modal-close { position: absolute; top: 18px; right: 18px; display: grid; place-items: center; width: 38px; height: 38px; border: 0; border-radius: 50%; background: var(--gray-100); color: var(--navy-900); }
.modal-close svg { width: 20px; height: 20px; }
.modal-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 18px; border-radius: 16px; background: var(--cyan-100); color: var(--teal-600); }
.modal-icon svg { width: 30px; height: 30px; }
.modal-dialog h2 { margin: 0; color: var(--navy-950); font-size: 30px; letter-spacing: -.04em; }
.modal-dialog > p:not(.eyebrow) { margin: 8px 0 24px; color: var(--gray-600); font-size: 14px; }
.modal-dialog form { display: grid; gap: 14px; }
.modal-dialog label { display: grid; gap: 6px; }
.modal-dialog label > span { color: var(--gray-700); font-size: 13px; font-weight: 700; }
.modal-dialog input, .modal-dialog textarea { padding: 12px 14px; }
.modal-dialog textarea { resize: vertical; }
.modal-dialog .agree { display: flex; grid-template-columns: auto 1fr; align-items: center; gap: 8px; }
.modal-dialog .agree input { width: 16px; }
.modal-dialog .agree span { font-size: 12px; font-weight: 500; }
.toast { position: fixed; z-index: 3000; left: 50%; bottom: 28px; transform: translate(-50%, 30px); padding: 14px 20px; border-radius: 12px; background: var(--navy-950); color: #fff; opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease; box-shadow: var(--shadow-md); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1100px) {
  .main-nav { gap: 20px; }
  .main-nav a { font-size: 13px; }
  .brand { flex-basis: 185px; }
  .brand img { width: 180px; }
  .header-actions .btn:last-child { display: none; }
  .hero-grid { grid-template-columns: 50% 50%; }
  .hero-copy { padding-right: 28px; }
  .hero-copy h1 { font-size: 52px; }
  .metrics article { padding-inline: 20px; }
  .benefit-inner { grid-template-columns: 1fr; text-align: center; }
  .benefit-items { max-width: 780px; width: 100%; margin-inline: auto; }
  .benefit-banner .btn { justify-self: center; }
}

@media (max-width: 900px) {
  .header-inner { min-height: 68px; }
  .main-nav, .header-actions { display: none; }
  .brand { flex: 1; }
  .mobile-menu-btn { display: grid; place-items: center; }
  .mobile-nav { padding: 12px 20px 20px; border-top: 1px solid var(--gray-200); background: #fff; }
  .mobile-nav.open { display: grid; gap: 4px; }
  .mobile-nav a { padding: 11px 8px; border-bottom: 1px solid var(--gray-100); font-weight: 700; }
  .mobile-nav .btn { margin-top: 10px; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 58px 0 30px; width: 100%; }
  .hero-copy h1 { font-size: clamp(42px, 8vw, 62px); }
  .hero-visual { min-height: 480px; border-radius: 26px 26px 0 0; }
  .hero-visual::after { width: 100%; height: 20%; inset: 0 0 auto; background: linear-gradient(180deg, #fff, rgba(255,255,255,0)); }
  .hero-trust-card { right: 24px; bottom: 24px; }
  .estimate-card { width: 100%; max-width: 560px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics article:nth-child(3) { border-left: 0; border-top: 1px solid var(--gray-200); }
  .metrics article:nth-child(4) { border-top: 1px solid var(--gray-200); }

  .service-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 210px); }
  .service-household { grid-row: 1 / 3; }
  .service-office { grid-row: auto; }
  .service-office img { width: 62%; }
  .service-office::after { background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 38%, rgba(255,255,255,.08) 78%); }
  .process-list { grid-template-columns: repeat(2, 1fr); gap: 44px 28px; }
  .process-list::before { display: none; }
  .reason-grid { grid-template-columns: 1fr; }
  .review-card { flex-basis: 100%; }
  .split-content { grid-template-columns: 1fr; }
  .bottom-cta-inner { grid-template-columns: 1fr auto; }
  .bottom-cta-inner > div { grid-column: 1 / 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / 3; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2 { font-size: 31px; }
  .brand img { width: 175px; }

  .hero-copy { padding-top: 46px; }
  .hero-copy h1 { font-size: 42px; }
  .hero-desc { font-size: 16px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .estimate-card { padding: 18px; }
  .estimate-card label { grid-template-columns: 1fr; gap: 5px; }
  .hero-visual { min-height: 360px; margin-inline: -14px; border-radius: 24px 24px 0 0; }
  .hero-visual > img { object-position: 58% center; }
  .hero-trust-card { right: 14px; bottom: 14px; min-width: 220px; padding: 13px 15px; }
  .hero-trust-card > svg { width: 38px; height: 38px; }
  .hero-trust-card strong { font-size: 23px; }

  .metrics-grid { grid-template-columns: 1fr; }
  .metrics article { min-height: 108px; padding: 20px 12px; }
  .metrics article + article { border-left: 0; border-top: 1px solid var(--gray-200); }
  .metric-icon { flex-basis: 48px; height: 48px; }

  .service-mosaic { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, 210px); }
  .service-card, .service-household, .service-office { grid-column: auto; grid-row: auto; }
  .service-household img, .service-office img { width: 66%; }
  .service-household::after, .service-office::after { background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 43%, rgba(255,255,255,.08) 84%); }
  .service-copy { padding: 22px; }
  .service-copy h3 { font-size: 22px; }

  .process-list { grid-template-columns: 1fr; gap: 28px; }
  .process-list li { display: grid; grid-template-columns: 74px 1fr; grid-template-rows: auto auto; align-items: center; column-gap: 16px; text-align: left; }
  .step-no { top: -4px; left: 0; width: 28px; height: 28px; }
  .step-icon { grid-row: 1 / 3; width: 68px; height: 68px; margin: 0; }
  .process-list h3 { align-self: end; }
  .process-list p { align-self: start; }
  .reason-grid article { align-items: flex-start; padding: 22px; }
  .reason-icon { flex-basis: 58px; height: 58px; }
  .reason-icon svg { width: 32px; height: 32px; }

  .benefit-banner { padding: 44px 0; }
  .benefit-head h2 { font-size: 24px; }
  .benefit-items { grid-template-columns: 1fr; text-align: left; }
  .benefit-items article { padding: 17px 0; }
  .benefit-items article + article { border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
  .benefit-banner .btn { width: 100%; }

  .review-card { min-height: 270px; padding: 24px; }
  .review-card > p { min-height: 104px; }
  .panel-heading { align-items: flex-end; }
  .panel-heading h2 { font-size: 27px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 125px; }
  .gallery-grid .gallery-main { grid-column: 1 / 3; grid-row: auto; }

  .bottom-cta { padding: 38px 0; }
  .bottom-cta-inner { grid-template-columns: 1fr; }
  .bottom-cta-inner > div { grid-column: auto; }
  .bottom-cta h2 { font-size: 25px; }
  .phone-pill { width: 100%; }
  .bottom-cta .btn { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-links { grid-column: auto; gap: 18px; }
  .footer-bottom { align-items: flex-start; gap: 18px; }
  .floating-consult { right: 14px; bottom: 18px; width: 52px; padding: 0; justify-content: center; }
  .floating-consult span { display: none; }
  .back-to-top { right: 18px; bottom: 82px; }
  .modal-dialog { padding: 28px 22px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}

/* Image quality/focal-point audit refinements */
.hero-visual > img { object-position: 72% center; }
.service-household img { object-position: 52% center; }
.service-studio img { object-position: 54% center; } /* now shows the cleaning photo (service-cleaning card removed) */
.service-office img { object-position: 50% center; }
.service-storage img { object-position: 38% center; }
.gallery-main img { object-position: 48% center; }
.gallery-grid figure:nth-child(2) img { object-position: 50% center; }
.gallery-grid figure:nth-child(3) img { object-position: 48% center; }
.hero-visual > img,
.service-card img,
.gallery-grid img { image-rendering: auto; backface-visibility: hidden; }

@media (max-width: 900px) {
  .hero-visual > img { object-position: 58% center; }
}
