:root {
  --ink: #16242e;
  --navy: #0e3a5d;
  --navy-deep: #092a45;
  --blue: #0f6ea6;
  --blue-bright: #1691d8;
  --blue-soft: #e3f1fa;
  --blue-mist: #f3f9fd;
  --sun: #ffc93c;
  --sun-deep: #996F09;
  --sun-pale: #fff4d6;
  --muted: #52626e;
  --line: #d7e5ee;
  --white: #ffffff;
  --ok: #1a7a4a;
  --shadow-sm: 0 2px 10px rgba(14, 58, 93, .08);
  --shadow-md: 0 16px 38px rgba(14, 58, 93, .16);
  --radius: 22px;
  --radius-sm: 12px;
  --maxw: 1140px;
  --font-head: "Avenir Next", "Trebuchet MS", "Segoe UI", Verdana, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--navy); }
h1, h2 { font-weight: 800; letter-spacing: -.01em; }
h3, h4 { font-weight: 700; }

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 2px;
  border-radius: 4px;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 500;
  background: var(--navy); color: #fff; font-weight: 700;
  padding: 12px 20px; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 800; color: var(--blue); margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: var(--sun); box-shadow: 0 0 0 4px rgba(255, 201, 60, .3);
}

.section { padding: 64px 0; }
.section.tint { background: var(--blue-mist); }
.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section h2 { font-size: clamp(1.75rem, 5.2vw, 2.5rem); }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 1.05rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-sun { background: var(--sun); color: #33270a; box-shadow: var(--shadow-sm); }
.btn-sun:hover { background: #ffd35e; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.26); border-color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: .9rem; }

.nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease;
  padding: 12px 0;
  backdrop-filter: blur(8px);
}
.nav.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.brand { display: flex; align-items: center; gap: 11px; color: var(--navy); min-width: 0; }
.brand-mark { width: 44px; height: 44px; flex: 0 0 44px; }
.brand-name {
  font-family: var(--font-head); font-size: 1.28rem; font-weight: 800;
  line-height: 1.02; letter-spacing: .01em; white-space: nowrap;
}
.brand-sub {
  display: block; font-family: var(--font-body); font-size: .6rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--blue);
  font-weight: 700; margin-top: 2px;
}

.nav-links { display: none; align-items: center; gap: 24px; }
.nav-links > a { color: var(--ink); font-size: .96rem; font-weight: 600; padding: 6px 2px; border-bottom: 3px solid transparent; transition: color .2s, border-color .2s; }
.nav-links > a:hover { color: var(--blue); }
.nav-links > a[aria-current="page"] { color: var(--blue); border-bottom-color: var(--sun); }
.nav-cta { margin-left: 4px; }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  background: var(--blue-soft); border: 0; cursor: pointer;
  padding: 12px; border-radius: 12px; min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.nav-toggle span { width: 22px; height: 2.5px; border-radius: 2px; background: var(--navy); display: block; }

.mobile-menu {
  position: fixed; inset: 0 0 0 auto; z-index: 200;
  width: min(84vw, 330px);
  background: var(--navy);
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
  padding: 84px 28px 30px;
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: -20px 0 40px rgba(0, 0, 0, .25);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a:not(.btn) { color: #eaf4fb; font-size: 1.12rem; font-weight: 600; padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.mobile-menu a[aria-current="page"]:not(.btn) { color: var(--sun); }
.mobile-menu .btn { margin-top: 22px; }
.menu-close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255, 255, 255, .14); border: 0; color: #fff;
  min-width: 44px; min-height: 44px; border-radius: 12px;
  font-size: 1.6rem; cursor: pointer; line-height: 1;
}
.backdrop { position: fixed; inset: 0; background: rgba(9, 42, 69, .55); z-index: 150; opacity: 0; visibility: hidden; transition: .3s; }
.backdrop.open { opacity: 1; visibility: visible; }

.hero { position: relative; background: var(--blue-mist); overflow: hidden; }

.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,.9), rgba(22,145,216,.12));
  border: 1px solid rgba(22, 145, 216, .18);
}
.hero::before { width: 300px; height: 300px; top: -110px; right: -80px; }
.hero::after { width: 130px; height: 130px; bottom: 40px; left: -50px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; padding-top: 48px; padding-bottom: 64px; }
.hero-grid > * { min-width: 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); color: var(--navy);
  padding: 7px 16px; border-radius: 999px; font-size: .84rem; font-weight: 700;
  box-shadow: var(--shadow-sm); margin-bottom: 20px;
}
.hero-badge svg { color: var(--ok); flex: 0 0 18px; }
.hero h1 { font-size: clamp(2.1rem, 7vw, 3.4rem); max-width: 17ch; }
.hero h1 em { font-style: normal; color: var(--blue); position: relative; white-space: nowrap; }
.hero h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .04em;
  height: .28em; background: var(--sun); z-index: -1; border-radius: 4px; opacity: .55;
}
.hero-lead { font-size: clamp(1.02rem, 3.2vw, 1.18rem); color: var(--muted); max-width: 50ch; margin-top: 18px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 20px 38px; margin-top: 38px; }
.hero-fact strong { display: block; font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.hero-fact span { font-size: .84rem; color: var(--muted); }

.hero-media { position: relative; }
.hero-photo {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 16 / 11;
  background: linear-gradient(150deg, #d9ecf8, #b9dcf0);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.hero-media::before {
  content: ""; position: absolute; inset: 18px -14px -14px 18px;
  border-radius: var(--radius); background: var(--sun); z-index: -1; opacity: .85;
}
.hero-note {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(255, 255, 255, .95); border-radius: var(--radius-sm);
  padding: 10px 16px; font-size: .85rem; font-weight: 700; color: var(--navy);
  box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 8px; max-width: calc(100% - 28px);
}
.hero-note svg { color: var(--sun-deep); flex: 0 0 18px; }

.assure { background: var(--navy); color: #eaf4fb; padding: 30px 0; }
.assure-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.assure-grid > * { min-width: 0; }
.assure-item { display: flex; gap: 13px; align-items: flex-start; }
.assure-item svg { flex: 0 0 28px; color: var(--sun); margin-top: 2px; }
.assure-item h3 { font-size: .98rem; color: #fff; margin-bottom: 2px; }
.assure-item p { font-size: .85rem; color: rgba(234, 244, 251, .75); line-height: 1.45; }

.services-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.services-grid > * { min-width: 0; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-icon {
  width: 54px; height: 54px; border-radius: 16px; background: var(--blue-soft);
  display: flex; align-items: center; justify-content: center; color: var(--blue); margin-bottom: 16px;
}
.service-card h3 { font-size: 1.18rem; }
.service-card p { color: var(--muted); font-size: .93rem; margin-top: 8px; }
.service-price { margin-top: 14px; font-family: var(--font-head); font-weight: 800; color: var(--navy); font-size: 1.02rem; }
.service-price small { display: block; font-family: var(--font-body); font-weight: 500; color: var(--muted); font-size: .78rem; }
.service-more { margin-top: auto; padding-top: 14px; font-weight: 700; color: var(--blue); font-size: .92rem; display: inline-flex; align-items: center; gap: 6px; }
.service-more:hover { text-decoration: underline; }

.calc-shell {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); overflow: hidden;
  display: grid; grid-template-columns: 1fr;
}
.calc-shell > * { min-width: 0; }
.calc-form { padding: 28px 22px; }
.calc-form fieldset { border: 0; margin: 0 0 24px; }
.calc-form legend, .calc-label {
  font-family: var(--font-head); font-weight: 700; color: var(--navy);
  font-size: .98rem; margin-bottom: 10px; display: block;
}
.calc-legend-note { font-weight: 500; color: var(--muted); font-size: .82rem; font-family: var(--font-body); }

.opt-row { display: flex; flex-wrap: wrap; gap: 10px; }
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; width: 100%; height: 100%; inset: 0; cursor: pointer; }
.opt span {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--line); border-radius: 999px;
  padding: 10px 18px; font-weight: 600; font-size: .94rem; color: var(--ink);
  background: #fff; cursor: pointer; transition: all .18s ease; min-height: 44px;
}
.opt svg { flex: 0 0 20px; color: var(--blue); }
.opt input:checked + span { background: var(--navy); border-color: var(--navy); color: #fff; }
.opt input:checked + span svg { color: var(--sun); }
.opt input:hover + span { border-color: var(--blue-bright); }
.opt input:checked:hover + span { border-color: var(--navy); }
.opt input:focus-visible + span { outline: 3px solid var(--blue-bright); outline-offset: 2px; }

.area-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.area-row input[type="range"] { flex: 1 1 180px; min-width: 0; accent-color: var(--blue-bright); height: 32px; cursor: pointer; }
.area-num { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--navy); }
.area-num input {
  width: 84px; padding: 10px 12px; border: 2px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; font-weight: 700; color: var(--navy); text-align: right; background: #fff;
}
.area-num input:focus { border-color: var(--blue-bright); outline: none; box-shadow: 0 0 0 3px rgba(22, 145, 216, .18); }

.calc-freq[hidden] { display: none; }

.calc-result {
  background: var(--navy); color: #eaf4fb; padding: 28px 22px;
  display: flex; flex-direction: column; gap: 0;
}
.calc-result h3 { color: #fff; font-size: 1.15rem; display: flex; align-items: center; gap: 9px; }
.calc-result h3 svg { color: var(--sun); flex: 0 0 20px; }
.calc-price { margin-top: 16px; }
.calc-price .big { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--sun); line-height: 1.05; }
.calc-price .per { font-size: .9rem; color: rgba(234, 244, 251, .8); }
.calc-month { margin-top: 10px; font-size: 1.02rem; font-weight: 600; color: #fff; }
.calc-month strong { color: var(--sun); }
.calc-time { margin-top: 14px; display: flex; align-items: flex-start; gap: 9px; font-size: .92rem; color: rgba(234, 244, 251, .88); }
.calc-time svg { flex: 0 0 18px; color: var(--sun); margin-top: 3px; }
.calc-includes { margin: 18px 0 0; list-style: none; display: grid; gap: 8px; }
.calc-includes li { display: flex; gap: 9px; align-items: flex-start; font-size: .9rem; color: rgba(234, 244, 251, .9); }
.calc-includes svg { flex: 0 0 17px; color: var(--sun); margin-top: 4px; }
.calc-note { margin-top: 16px; font-size: .8rem; color: rgba(234, 244, 251, .62); }
.calc-result .btn { margin-top: 18px; }
.calc-sent { margin-top: 12px; font-size: .88rem; font-weight: 700; color: var(--sun); display: none; }
.calc-sent.show { display: block; }

.steps { counter-reset: stepBox; display: grid; grid-template-columns: 1fr; gap: 18px; }
.steps > * { min-width: 0; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 24px 24px 24px; box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: stepBox; content: counter(stepBox);
  position: absolute; top: -16px; left: 22px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--sun); color: #33270a;
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 5px var(--blue-mist);
}
.step h3 { font-size: 1.08rem; margin-top: 6px; }
.step p { color: var(--muted); font-size: .92rem; margin-top: 8px; }

.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.reviews-grid > * { min-width: 0; }
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.stars { color: var(--sun-deep); letter-spacing: 3px; font-size: 1rem; margin-bottom: 12px; }
.review-card blockquote { font-size: 1rem; line-height: 1.6; color: var(--ink); }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 20px; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: 0 0 46px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-soft); color: var(--navy);
  font-family: var(--font-head); font-weight: 800; font-size: 1.02rem;
}
.review-author strong { display: block; font-size: .95rem; color: var(--navy); }
.review-author span { font-size: .82rem; color: var(--muted); }

.ph { background: linear-gradient(150deg, #dcedf9, #bfdff2); }

.contact-wrap { display: grid; grid-template-columns: 1fr; gap: 34px; }
.contact-wrap > * { min-width: 0; }
.info-list { list-style: none; margin-top: 24px; display: grid; gap: 18px; }
.info-list li { display: flex; gap: 13px; align-items: flex-start; }
.info-list svg { flex: 0 0 24px; color: var(--blue); margin-top: 3px; }
.info-list strong { display: block; font-size: .95rem; color: var(--navy); }
.info-list span, .info-list a { font-size: .92rem; color: var(--muted); }
.info-list a { font-weight: 700; color: var(--blue); }
.region-card {
  margin-top: 26px; background: var(--blue-soft); border-radius: var(--radius);
  padding: 20px 22px; font-size: .92rem; color: var(--navy);
}
.region-card strong { display: block; font-family: var(--font-head); margin-bottom: 6px; }

.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-md);
}
.form-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.form-card .form-sub { color: var(--muted); font-size: .93rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0 16px; }
.form-row > * { min-width: 0; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; min-width: 0; }
.field label { font-size: .86rem; font-weight: 700; color: var(--navy); }
.field label .req { color: #b02a1f; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 2px solid var(--line); border-radius: var(--radius-sm);
  background: var(--blue-mist); transition: border-color .2s, box-shadow .2s;
  width: 100%; min-width: 0;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-bright); box-shadow: 0 0 0 3px rgba(22, 145, 216, .18);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 100px; }
.consent { flex-direction: row; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.consent input { width: auto; min-width: 18px; margin-top: 5px; accent-color: var(--blue); }
.consent label { font-weight: 500; font-size: .85rem; color: var(--muted); }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 10px; }
.form-msg {
  display: none; margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-sm);
  background: var(--sun-pale); border: 1px solid #ecd9a0; color: #4a3a10; font-size: .94rem;
}
.form-msg.show { display: block; }
.form-msg strong { color: var(--navy); }

.page-head {
  position: relative; background: var(--navy); color: #fff;
  padding: 56px 0 62px; overflow: hidden;
}
.page-head::before, .page-head::after {
  content: ""; position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, rgba(255,255,255,.16), rgba(255,255,255,.02));
  border: 1px solid rgba(255, 255, 255, .14);
}
.page-head::before { width: 260px; height: 260px; top: -90px; right: -60px; }
.page-head::after { width: 120px; height: 120px; bottom: -40px; left: 8%; }
.page-head .wrap { position: relative; z-index: 1; }
.breadcrumb { font-size: .84rem; color: rgba(234, 244, 251, .7); margin-bottom: 14px; }
.breadcrumb a { color: rgba(234, 244, 251, .9); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(255,255,255,.35); }
.breadcrumb a:hover { color: var(--sun); }
.page-head h1 { color: #fff; font-size: clamp(1.9rem, 6vw, 2.9rem); max-width: 20ch; }
.page-head .lead { color: rgba(234, 244, 251, .82); max-width: 58ch; margin-top: 14px; font-size: 1.05rem; }
.page-head .btn { margin-top: 24px; }

.service-block { padding: 56px 0; }
.service-block:nth-child(even) { background: var(--blue-mist); }
.service-split { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: start; }
.service-split > * { min-width: 0; }
.service-photo {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3; position: relative;
}
.service-photo img { width: 100%; height: 100%; object-fit: cover; }
.service-text h2 { font-size: clamp(1.5rem, 4.5vw, 2rem); }
.service-text > p { color: var(--muted); margin-top: 12px; }
.check-list { list-style: none; margin-top: 18px; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; }
.check-list svg { flex: 0 0 19px; color: var(--ok); margin-top: 4px; }

.table-scroll { overflow-x: auto; margin-top: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.price-table { width: 100%; border-collapse: collapse; font-size: .93rem; min-width: 420px; }
.price-table caption {
  text-align: left; font-family: var(--font-head); font-weight: 700; color: var(--navy);
  padding: 14px 16px 6px; font-size: .95rem;
}
.price-table th, .price-table td { padding: 11px 16px; text-align: left; border-top: 1px solid var(--line); }
.price-table thead th {
  border-top: 0; background: var(--blue-soft); color: var(--navy);
  font-family: var(--font-head); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase;
}
.price-table td.price { font-weight: 800; color: var(--navy); white-space: nowrap; font-family: var(--font-head); }
.price-table tbody tr:hover { background: var(--blue-mist); }
.table-note { font-size: .82rem; color: var(--muted); margin-top: 10px; }

.included-band { background: var(--navy); color: #eaf4fb; padding: 44px 0; }
.included-band h2 { color: #fff; font-size: 1.5rem; margin-bottom: 22px; }
.included-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.included-grid > * { min-width: 0; }
.included-item { display: flex; gap: 11px; align-items: flex-start; font-size: .93rem; }
.included-item svg { flex: 0 0 20px; color: var(--sun); margin-top: 3px; }

.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq summary {
  list-style: none; cursor: pointer; padding: 16px 48px 16px 20px;
  font-family: var(--font-head); font-weight: 700; color: var(--navy); position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%; background: var(--blue-soft); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.faq details[open] summary::after { content: "–"; background: var(--sun); color: #33270a; }
.faq details p { padding: 0 20px 18px; color: var(--muted); font-size: .94rem; }

.pillar-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.pillar-grid > * { min-width: 0; }
.pillar {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.pillar .service-icon { background: var(--sun-pale); color: var(--sun-deep); }
.pillar h3 { font-size: 1.12rem; }
.pillar p { color: var(--muted); font-size: .92rem; margin-top: 8px; }
.pillar ul { list-style: none; margin-top: 12px; display: grid; gap: 7px; }
.pillar ul li { display: flex; gap: 8px; align-items: flex-start; font-size: .88rem; color: var(--ink); }
.pillar ul svg { flex: 0 0 16px; color: var(--ok); margin-top: 4px; }

.quote-card {
  background: var(--blue-soft); border-radius: var(--radius); padding: 30px 26px;
  position: relative; max-width: 760px; margin: 0 auto;
}
.quote-card::before {
  content: "„"; position: absolute; top: -6px; left: 18px;
  font-family: Georgia, serif; font-size: 5rem; color: var(--sun); line-height: 1;
}
.quote-card blockquote { font-size: 1.08rem; color: var(--navy); font-weight: 500; position: relative; z-index: 1; }
.quote-card figcaption { margin-top: 14px; font-size: .9rem; color: var(--muted); }
.quote-card figcaption strong { color: var(--navy); }

.cta-band { background: var(--sun); padding: 52px 0; }
.cta-inner { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.cta-band h2 { color: #33270a; font-size: clamp(1.5rem, 4.5vw, 2.1rem); max-width: 24ch; }
.cta-band p { color: #5c4a14; max-width: 52ch; font-size: 1rem; margin-top: 6px; }
.cta-band .btn-navy:hover { background: var(--ink); }

footer { background: var(--navy-deep); color: rgba(234, 244, 251, .8); padding: 50px 0 120px; }
.foot-disclaimer {
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 28px;
  font-size: .86rem; color: rgba(234, 244, 251, .85);
  display: flex; gap: 10px; align-items: flex-start;
}
.foot-disclaimer svg { flex: 0 0 20px; color: var(--sun); margin-top: 2px; }
.foot-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
.foot-grid > * { min-width: 0; }
.foot-brand .brand-name { color: #fff; }
.foot-brand .brand-sub { color: var(--sun); }
.foot-brand p { margin-top: 14px; font-size: .92rem; max-width: 42ch; }
.foot-col h4 { color: #fff; font-size: .95rem; margin-bottom: 12px; letter-spacing: .04em; }
.foot-col a, .foot-col p { display: block; font-size: .92rem; padding: 4px 0; color: rgba(234, 244, 251, .78); }
.foot-col a:hover { color: var(--sun); }
.foot-bottom { border-top: 1px solid rgba(255, 255, 255, .14); padding-top: 20px; font-size: .84rem; color: rgba(234, 244, 251, .6); }

.callbar {
  position: fixed; bottom: var(--frontage-h, 0px); left: 0; right: 0; z-index: 90;
  background: var(--navy); color: #fff;
  display: grid; grid-template-columns: 1fr 1fr;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, .18);
}
.callbar > * { min-width: 0; }
.callbar a { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 14px 8px; font-weight: 700; font-size: .96rem; }
.callbar a.call { background: var(--sun); color: #33270a; }
.callbar a svg { width: 19px; height: 19px; flex: 0 0 19px; }

@media (min-width: 620px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .assure-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 26px 20px; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .foot-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

@media (min-width: 900px) {
  .section { padding: 88px 0; }
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 48px; padding-top: 64px; padding-bottom: 80px; }
  .assure-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .calc-shell { grid-template-columns: 1.15fr .85fr; }
  .calc-form { padding: 36px 34px; }
  .calc-result { padding: 36px 32px; }
  .contact-wrap { grid-template-columns: .9fr 1.1fr; align-items: start; }
  .service-split { grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: center; }
  .service-split.flip .service-photo { order: 2; }
  .included-grid { grid-template-columns: repeat(4, 1fr); }
  .pillar-grid { grid-template-columns: repeat(3, 1fr); }
  .callbar { display: none; }
  footer { padding-bottom: 50px; }
  .form-card { padding: 34px 32px; }
}

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