/* ==========================================================================
   Home Services Near Me — landing page styles
   Palette: deep blue / electric blue / fresh green CTA / white + light gray
   ========================================================================== */

:root {
  --navy: #0b2a5b;
  --navy-800: #0f356f;
  --blue: #1b6bff;
  --blue-100: #e8f0ff;
  --green: #12a150;
  --green-600: #0e8b44;

  --ink: #1b2430;
  --ink-600: #4e5a6b;
  --ink-400: #7a8697;

  --bg: #ffffff;
  --bg-soft: #f4f6fa;
  --line: #e3e8f0;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(11, 42, 91, .06), 0 8px 24px rgba(11, 42, 91, .05);
  --shadow-md: 0 2px 6px rgba(11, 42, 91, .06), 0 18px 44px rgba(11, 42, 91, .09);
  --header-h: 74px;

  --font-head: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  background: var(--bg);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, .brand-text strong, .btn, .step-num, .progress {
  font-family: var(--font-head);
}

h1, h2, h3 { margin: 0; line-height: 1.15; letter-spacing: -0.02em; color: var(--navy); }
p { margin: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, ol, dl { margin: 0; padding: 0; list-style: none; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ico { width: 20px; height: 20px; flex: 0 0 auto; }
svg.ico { display: block; }

.wrap { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 20px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 6px; }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border: 1px solid transparent; border-radius: 999px;
  font-size: 15px; font-weight: 700; text-decoration: none; cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn[hidden], [hidden] { display: none !important; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 15px 26px; font-size: 16px; }

.btn-cta { background: var(--green); color: #fff; box-shadow: 0 8px 22px rgba(18, 161, 80, .28); }
.btn-cta:hover { background: var(--green-600); }

.btn-outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-100); }

.btn-soft { background: var(--blue-100); color: var(--navy-800); }
.btn-soft:hover { background: var(--blue); color: #fff; }

.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { background: var(--bg-soft); }

.btn-light { background: #fff; color: var(--navy); }
.btn-wa { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn-wa:hover { background: rgba(255, 255, 255, .2); }

/* ----------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }

.topbar { background: var(--navy); color: rgba(255, 255, 255, .82); font-size: 13px; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; }
.topbar-inner span { display: inline-flex; align-items: center; gap: 8px; }
.topbar .ico { width: 15px; height: 15px; color: #7fb0ff; }
.topbar-note { color: rgba(255, 255, 255, .6); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--navy), var(--blue)); color: #fff;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 16.5px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.brand-text small { font-size: 11.5px; color: var(--ink-400); letter-spacing: .02em; }

.nav { display: flex; align-items: center; gap: 22px; }
.nav-list > li > a, .nav-sub-toggle, .brand-text strong { white-space: nowrap; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list > li > a,
.nav-sub-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 12px; border: 0; background: none; border-radius: 10px;
  font: 500 14.5px/1 var(--font-body); color: var(--ink-600); text-decoration: none; cursor: pointer;
}
.nav-list > li > a:hover, .nav-sub-toggle:hover { color: var(--navy); background: var(--bg-soft); }
.nav-sub-toggle .chev { width: 15px; height: 15px; transition: transform .2s ease; }
.nav-sub-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }

.has-sub { position: relative; }
.sub-list {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 250px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 8px;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.has-sub:hover .sub-list,
.has-sub:focus-within .sub-list,
.nav-sub-toggle[aria-expanded="true"] + .sub-list { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-list a { display: block; padding: 10px 12px; border-radius: 10px; font-size: 14.5px; color: var(--ink-600); text-decoration: none; }
.sub-list a:hover { background: var(--blue-100); color: var(--navy-800); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 10px 18px; font-size: 14.5px; }

.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; }
.burger span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--navy); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ------------------------------------------------------------------- hero */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(40px, 6vw, 84px) 0 clamp(48px, 7vw, 96px);
  background:
    radial-gradient(1100px 520px at 88% -10%, rgba(27, 107, 255, .12), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.hero-grid { display: grid; gap: clamp(32px, 5vw, 64px); grid-template-columns: 1fr; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px;
  padding: 7px 14px 7px 11px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  font-size: 13px; font-weight: 600; color: var(--navy-800);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(18, 161, 80, .16); }

.hero h1 { font-size: clamp(33px, 6vw, 58px); font-weight: 800; text-wrap: balance; }
.lede { margin-top: 18px; max-width: 56ch; font-size: clamp(16px, 2vw, 18.5px); color: var(--ink-600); text-wrap: pretty; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.badge-row li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 999px; background: #fff;
  border: 1px solid var(--line); font-size: 13.5px; font-weight: 600; color: var(--navy);
}
.badge-row .ico { width: 15px; height: 15px; color: var(--green); }

.micro { margin-top: 18px; font-size: 13px; color: var(--ink-400); }

.hero-frame { position: relative; }
.hero-frame img {
  width: 100%; border-radius: 26px; object-fit: cover; aspect-ratio: 4 / 4.4;
  border: 1px solid var(--line); box-shadow: var(--shadow-md); background: var(--bg-soft);
}
.float-card {
  position: absolute; display: flex; align-items: center; gap: 11px;
  padding: 12px 15px; border-radius: 16px; background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line); box-shadow: var(--shadow-md); backdrop-filter: blur(6px);
}
.float-a { left: -8px; top: 12%; }
.float-b { right: -8px; bottom: 10%; }
.fc-icon { width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; background: var(--blue-100); color: var(--blue); }
.fc-icon.green { background: rgba(18, 161, 80, .12); color: var(--green); }
.fc-text { display: flex; flex-direction: column; line-height: 1.25; }
.fc-text strong { font-size: 13.5px; font-family: var(--font-head); color: var(--navy); }
.fc-text small { font-size: 11.5px; color: var(--ink-400); }

/* --------------------------------------------------------------- sections */
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section-alt { background: var(--bg-soft); border-block: 1px solid var(--line); }

.sec-head { max-width: 720px; margin-bottom: clamp(30px, 4vw, 52px); }
.kicker {
  font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
}
.sec-head h2 { font-size: clamp(26px, 3.6vw, 40px); font-weight: 800; text-wrap: balance; }
.sub { margin-top: 14px; color: var(--ink-600); font-size: 16.5px; text-wrap: pretty; }

/* ----------------------------------------------------- service selector */
.svc-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.svc-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  padding: 26px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cddcf7; }
.svc-icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--blue-100); color: var(--blue); }
.svc-icon .ico { width: 26px; height: 26px; }
.svc-card h3 { font-size: 19px; font-weight: 700; }
.svc-card p { color: var(--ink-600); font-size: 14.7px; }
.svc-card .btn { margin-top: auto; }
.svc-card-accent {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-800) 60%, #16418a 100%);
  border-color: transparent; color: rgba(255, 255, 255, .82);
}
.svc-card-accent h3 { color: #fff; }
.svc-card-accent p { color: rgba(255, 255, 255, .78); }

/* ------------------------------------------------------------- features */
.feat-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.feat { padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.feat-icon { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; background: var(--navy); color: #9dc2ff; margin-bottom: 16px; }
.feat h3 { font-size: 17.5px; font-weight: 700; margin-bottom: 8px; }
.feat p { color: var(--ink-600); font-size: 14.7px; }

/* ---------------------------------------------------------------- steps */
.steps { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); counter-reset: s; }
.step { position: relative; padding: 30px 26px; border: 1px dashed #c9d7ef; border-radius: var(--radius); background: linear-gradient(180deg, #fff, var(--bg-soft)); }
.step-num {
  display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 18px;
  border-radius: 14px; background: var(--blue); color: #fff; font-size: 19px; font-weight: 800;
  box-shadow: 0 10px 22px rgba(27, 107, 255, .28);
}
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--ink-600); font-size: 15px; }

/* ----------------------------------------------------------- appliances */
.appl-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.appl {
  display: flex; flex-direction: column; gap: 6px; padding: 24px 22px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  text-decoration: none; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.appl:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.appl .ico { width: 28px; height: 28px; color: var(--blue); margin-bottom: 10px; }
.appl span { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 16.5px; }
.appl small { color: var(--ink-400); font-size: 13px; }

/* --------------------------------------------------------------- brands */
.brand-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.brand-grid li {
  display: grid; place-items: center; padding: 20px 14px; text-align: center;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-head); font-weight: 700; font-size: 15.5px; color: var(--navy-800);
  transition: background-color .18s ease, color .18s ease;
}
.brand-grid li:hover { background: var(--navy); color: #fff; }

.disclaimer {
  display: flex; gap: 14px; margin-top: 28px; padding: 20px 22px;
  background: var(--blue-100); border: 1px solid #cfdffd; border-radius: var(--radius);
  font-size: 14.5px; color: var(--navy-800);
}
.disclaimer .ico { width: 22px; height: 22px; color: var(--blue); }

/* ---------------------------------------------------------------- areas */
.area-panel {
  display: grid; gap: 32px; padding: clamp(24px, 4vw, 40px);
  background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-sm);
}
.area-list { display: flex; flex-wrap: wrap; gap: 10px; }
.area-list li {
  display: inline-flex; align-items: center; padding: 9px 16px; border-radius: 999px;
  background: var(--bg-soft); border: 1px solid var(--line); font-size: 14.3px; font-weight: 500; color: var(--ink-600);
}
.area-check label { display: block; font-family: var(--font-head); font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.area-row { display: flex; flex-wrap: wrap; gap: 10px; }
.area-row input { flex: 1 1 240px; }
.area-result { margin-top: 12px; font-size: 14.5px; font-weight: 600; min-height: 22px; }
.area-result.ok { color: var(--green-600); }
.area-result.maybe { color: var(--navy-800); }

/* -------------------------------------------------------------- reviews */
.rev-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.rev { margin: 0; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.rev blockquote { margin: 0 0 20px; font-size: 16px; color: var(--ink); }
.rev blockquote::before { content: "“"; display: block; font-family: var(--font-head); font-size: 44px; line-height: .8; color: #c3d6f8; }
.rev figcaption { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.rev figcaption span { display: flex; flex-direction: column; }
.rev-av { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 700; }
.rev figcaption strong { font-family: var(--font-head); font-size: 14.5px; color: var(--navy); }
.rev figcaption small { font-size: 12.5px; color: var(--ink-400); }

/* -------------------------------------------------------------- booking */
.book-wrap { max-width: 940px; }
.book-card { padding: clamp(22px, 4vw, 40px); background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-md); }

.progress { display: flex; flex-wrap: wrap; gap: 8px 18px; padding-bottom: 22px; margin-bottom: 26px; border-bottom: 1px solid var(--line); }
.progress li { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600; color: var(--ink-400); }
.progress li span {
  display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%;
  background: var(--bg-soft); border: 1px solid var(--line); font-size: 12.5px; color: var(--ink-400);
}
.progress li.is-active { color: var(--navy); }
.progress li.is-active span { background: var(--blue); border-color: var(--blue); color: #fff; }
.progress li.is-done { color: var(--green-600); }
.progress li.is-done span { background: var(--green); border-color: var(--green); color: #fff; }

.fs { display: none; border: 0; padding: 0; margin: 0; }
.fs.is-active { display: block; animation: fade .3s ease; }
.fs legend { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--navy); padding: 0; margin-bottom: 20px; }

@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.choice-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.choice {
  position: relative; display: flex; flex-direction: column; gap: 10px;
  padding: 18px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; cursor: pointer; transition: border-color .18s ease, background-color .18s ease;
}
.choice input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.choice .ico { width: 24px; height: 24px; color: var(--ink-400); }
.choice span { font-family: var(--font-head); font-weight: 700; font-size: 14.8px; color: var(--navy); }
.choice:hover { border-color: #bed2f6; background: #fafcff; }
.choice:has(input:checked) { border-color: var(--blue); background: var(--blue-100); }
.choice:has(input:checked) .ico { color: var(--blue); }
.choice:has(input:focus-visible) { outline: 3px solid var(--blue); outline-offset: 2px; }

.grid-2 { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 13.8px; font-weight: 600; color: var(--ink-600); }

input[type="text"], input[type="tel"], input[type="date"], select, textarea {
  width: 100%; padding: 13px 15px; font: 400 15px/1.5 var(--font-body); color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .18s ease, box-shadow .18s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(27, 107, 255, .12);
}
textarea { resize: vertical; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a8697' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 42px; }

.note { margin-top: 16px; font-size: 13.4px; color: var(--ink-400); }
.err { margin-top: 14px; font-size: 13.8px; font-weight: 600; color: #c2381f; min-height: 0; }

.form-nav { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }

.summary { display: grid; gap: 2px; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.summary > div { display: flex; flex-wrap: wrap; gap: 6px 16px; padding: 13px 16px; background: var(--bg-soft); }
.summary > div:nth-child(odd) { background: #fff; }
.summary dt { min-width: 150px; font-size: 13.5px; font-weight: 600; color: var(--ink-400); }
.summary dd { margin: 0; font-size: 14.6px; font-weight: 500; color: var(--ink); }

.confirm { text-align: center; padding: 20px 0 6px; }
.confirm-badge { display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 20px; border-radius: 50%; background: rgba(18, 161, 80, .12); color: var(--green); }
.confirm-badge .ico { width: 30px; height: 30px; }
.confirm h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.confirm p { color: var(--ink-600); max-width: 52ch; margin-inline: auto; }
.confirm-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }

/* ------------------------------------------------------------------ faq */
.faq-wrap { max-width: 900px; }
.acc { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.acc-item + .acc-item { border-top: 1px solid var(--line); }
.acc-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%;
  padding: 20px 24px; border: 0; background: #fff; cursor: pointer; text-align: left;
  font: 700 16.3px/1.4 var(--font-head); color: var(--navy);
}
.acc-btn:hover { background: #fafcff; }
.acc-btn .chev { color: var(--blue); transition: transform .25s ease; }
.acc-btn[aria-expanded="true"] .chev { transform: rotate(180deg); }
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.acc-panel > p { overflow: hidden; padding-inline: 24px; font-size: 15.2px; color: var(--ink-600); }
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
.acc-item.is-open .acc-panel > p { padding-bottom: 22px; }

/* ------------------------------------------------------------ final cta */
.cta {
  padding: clamp(52px, 7vw, 92px) 0;
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(27, 107, 255, .34), transparent 60%),
    linear-gradient(140deg, var(--navy) 0%, #0a2350 100%);
  color: rgba(255, 255, 255, .82);
}
.cta-grid { display: grid; gap: clamp(30px, 5vw, 60px); grid-template-columns: 1fr; align-items: center; }
.cta h2 { color: #fff; font-size: clamp(27px, 4vw, 42px); font-weight: 800; text-wrap: balance; }
.cta-copy p { margin-top: 16px; max-width: 52ch; font-size: 17px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.cta-info { display: grid; gap: 14px; padding: 26px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .16); border-radius: 22px; }
.cta-info li { display: flex; flex-direction: column; gap: 3px; padding-bottom: 13px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.cta-info li:last-child { padding-bottom: 0; border-bottom: 0; }
.cta-info small { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .55); }
.cta-info a, .cta-info span { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: #fff; text-decoration: none; }
.cta-info a:hover { color: #9dc2ff; }

/* --------------------------------------------------------------- footer */
.site-footer { background: #081d40; color: rgba(255, 255, 255, .66); padding-top: clamp(44px, 6vw, 72px); }
.foot-grid { display: grid; gap: 34px; grid-template-columns: 1fr; padding-bottom: 40px; }
.brand-foot .brand-text strong { color: #fff; }
.brand-foot .brand-text small { color: rgba(255, 255, 255, .5); }
.foot-brand p { margin-top: 16px; font-size: 14.5px; max-width: 42ch; }
.foot-col h3 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .5); margin-bottom: 16px; }
.foot-col ul { display: grid; gap: 11px; }
.foot-col a { font-size: 14.6px; text-decoration: none; }
.foot-col a:hover { color: #fff; }

.foot-bottom { padding: 24px 20px 34px; border-top: 1px solid rgba(255, 255, 255, .12); display: grid; gap: 14px; }
.foot-disc { font-size: 13px; color: rgba(255, 255, 255, .5); max-width: 92ch; }
.foot-cr { font-size: 13px; color: rgba(255, 255, 255, .38); }

/* ---------------------------------------------------------- mobile bar */
.mobile-bar { display: none; }

/* -------------------------------------------------------------- reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .svc-card:hover, .appl:hover { transform: none; }
}

/* ---------------------------------------------------------- responsive */
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .area-panel { grid-template-columns: 1.4fr 1fr; }
  .cta-grid { grid-template-columns: 1.25fr .75fr; }
  .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .foot-bottom { grid-template-columns: 1fr auto; align-items: center; }
}

@media (max-width: 1080px) {
  .nav-list > li > a, .nav-sub-toggle { padding: 9px 9px; font-size: 14px; }
}

@media (max-width: 980px) {
  .burger { display: block; }
  .topbar-inner span.topbar-note { display: none; }

  .nav {
    position: fixed; inset: calc(var(--header-h) + 38px) 0 0 0; z-index: 55;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    padding: 20px; background: #fff; overflow-y: auto;
    transform: translateX(100%); transition: transform .28s ease; visibility: hidden;
  }
  .nav.is-open { transform: translateX(0); visibility: visible; }

  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-list > li > a, .nav-sub-toggle { width: 100%; justify-content: space-between; padding: 15px 14px; font-size: 16px; border-radius: 12px; }
  .nav-list > li + li { border-top: 1px solid var(--line); }

  .sub-list {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; padding: 0 0 8px 12px; display: none;
  }
  .nav-sub-toggle[aria-expanded="true"] + .sub-list { display: block; }

  .nav-cta { margin-top: 22px; flex-direction: column; align-items: stretch; }
  .nav-cta .btn { width: 100%; padding: 15px; font-size: 16px; }

  body.nav-open { overflow: hidden; }
}

@media (max-width: 700px) {
  .float-a { left: 4px; top: 8px; }
  .float-b { right: 4px; bottom: 8px; }
  .float-card { padding: 10px 12px; }
  .hero-frame img { aspect-ratio: 4 / 3.6; }
  .hero-actions .btn { flex: 1 1 100%; }

  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr auto; gap: 8px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .96); border-top: 1px solid var(--line);
    backdrop-filter: blur(10px); box-shadow: 0 -6px 24px rgba(11, 42, 91, .1);
  }
  .mobile-bar a {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    padding: 13px 10px; border-radius: 14px; text-decoration: none;
    font: 700 14.5px/1 var(--font-head);
  }
  .mb-call { background: var(--navy); color: #fff; }
  .mb-wa { background: var(--green); color: #fff; }
  .mb-book { background: var(--blue-100); color: var(--navy-800); padding-inline: 18px; }

  body { padding-bottom: 74px; }
  .form-nav { justify-content: stretch; }
  .form-nav .btn { flex: 1 1 140px; }
  .summary dt { min-width: 100%; }
}
