:root {
  --ink: #171716;
  --ink2: #25231f;
  --cream: #f4efe6;
  --paper: #fffdf8;
  --signal: #e14b32;
  --signal2: #b93120;
  --copper: #d98955;
  --muted: #6b665e;
  --line: rgba(23, 23, 22, 0.15);
  --shadow: 0 24px 70px rgba(18, 16, 13, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font:
    15px/1.55 Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menuOpen {
  overflow: hidden;
}
a {
  color: inherit;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.skip {
  position: fixed;
  top: -100px;
  left: 12px;
  z-index: 200;
  background: #fff;
  padding: 10px;
}
.skip:focus {
  top: 12px;
}
.announcement {
  padding: 8px;
  background: var(--signal);
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.siteHeader {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 239, 230, 0.94);
  backdrop-filter: blur(16px);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 21px;
  font-weight: 950;
  letter-spacing: -0.045em;
}
.brand > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
}
.brand b {
  color: var(--signal);
}
#mainNav {
  display: flex;
  align-items: center;
  gap: 25px;
}
#mainNav > a {
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.loginLink {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.menuToggle {
  display: none;
  border: 0;
  background: none;
  font-weight: 850;
}
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--signal);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: 0.2s;
}
.btn:hover {
  background: var(--signal2);
  transform: translateY(-2px);
}
.btn.small {
  min-height: 43px;
  padding: 0 17px;
  font-size: 12px;
}
.btn.outline {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
}
.btn.light {
  background: #fff;
  color: var(--ink);
}
.eyebrow {
  margin: 0 0 15px;
  color: var(--signal);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #131210 url("artigianopro-hero.webp") center/cover no-repeat;
  color: #fff;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(12, 12, 11, 0.96),
      rgba(12, 12, 11, 0.86) 42%,
      rgba(12, 12, 11, 0.18) 76%
    ),
    linear-gradient(0deg, rgba(12, 12, 11, 0.52), transparent 48%);
}
.heroInner {
  position: relative;
  z-index: 1;
  padding: 86px 0;
}
.heroCopy {
  max-width: 770px;
}
.hero h1 {
  max-width: 760px;
  margin: 0 0 25px;
  font-size: clamp(53px, 7vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.065em;
  font-weight: 950;
  text-wrap: balance;
}
.hero h1 span {
  color: var(--copper);
}
.lead {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}
.heroActions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 31px;
}
.microLight {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}
.quickSearch {
  max-width: 790px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 9px;
  margin-top: 36px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
}
.quickSearch label {
  display: grid;
}
.quickSearch label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.quickSearch select,
.quickSearch input {
  min-width: 0;
  height: 56px;
  padding: 0 15px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}
.quickSearch .btn {
  border-radius: 10px;
}
.proof {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.proofGrid {
  min-height: 105px;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  align-items: center;
  gap: 20px;
}
.proofGrid > b {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
}
.proofGrid > div {
  padding-left: 23px;
  border-left: 1px solid var(--line);
}
.proofGrid strong {
  display: block;
  font-size: 23px;
  letter-spacing: -0.04em;
}
.proofGrid span {
  color: var(--muted);
  font-size: 12px;
}
.section {
  padding: 104px 0;
}
.sectionHead {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 48px;
}
.sectionHead > p,
.bodyLead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}
.section h2 {
  margin: 0;
  font-size: clamp(39px, 5vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 940;
  text-wrap: balance;
}
.categoryGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.categoryCard {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  text-decoration: none;
  transition: 0.22s;
}
.categoryCard:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 75, 50, 0.5);
  box-shadow: var(--shadow);
}
.categoryCard i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 37px;
  border-radius: 50%;
  background: var(--ink);
  font-size: 22px;
  font-style: normal;
}
.categoryCard h3 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.035em;
}
.categoryCard p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
}
.categoryCard span {
  margin-top: auto;
  color: var(--signal);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dark {
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.dark .eyebrow {
  color: var(--copper);
}
.dark .sectionHead > p {
  color: rgba(255, 255, 255, 0.65);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
}
.steps article {
  min-height: 300px;
  padding: 32px 27px;
  background: var(--ink);
}
.steps article > b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 70px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: var(--copper);
}
.steps h3 {
  margin: 0 0 9px;
  font-size: 23px;
}
.steps p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 78px;
  align-items: center;
}
.statement {
  min-height: 540px;
  padding: 50px;
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 90% 5%,
      rgba(217, 137, 85, 0.36),
      transparent 34%
    ),
    var(--ink2);
  color: #fff;
  box-shadow: var(--shadow);
}
.statement > strong {
  display: block;
  margin: 38px 0 5px;
  color: var(--copper);
  font-size: 92px;
  line-height: 1;
  letter-spacing: -0.08em;
}
.statement h3 {
  max-width: 430px;
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.statement p:last-child {
  color: rgba(255, 255, 255, 0.65);
}
.checks {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}
.checks li {
  position: relative;
  display: grid;
  gap: 2px;
  padding: 17px 0 17px 37px;
  border-bottom: 1px solid var(--line);
}
.checks li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 18px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--signal);
  color: #fff;
  font-size: 11px;
}
.checks span {
  color: var(--muted);
  font-size: 13px;
}
.urgent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
  padding: 32px 37px;
  border-radius: 18px;
  background: var(--signal);
  color: #fff;
}
.urgent h3 {
  margin: 0 0 6px;
  font-size: 28px;
}
.urgent p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}
.leadSection {
  background: #dfd6c7;
}
.leadBox {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 65px;
  align-items: center;
}
.leadBox > div > p:last-child {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}
.megaButton {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3px;
  padding: 28px;
  border: 0;
  border-radius: 23px;
  background: var(--ink);
  color: #fff;
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.megaButton span {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.megaButton b {
  font-size: 32px;
  color: var(--copper);
}
.megaButton small {
  grid-column: 1/-1;
  color: rgba(255, 255, 255, 0.55);
}
.faqGrid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
}
.faqs {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  position: relative;
  padding: 24px 40px 24px 0;
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  position: absolute;
  right: 5px;
  color: var(--signal);
  font-size: 26px;
}
details[open] summary:after {
  content: "−";
}
details p {
  padding: 0 35px 20px 0;
  color: var(--muted);
}
footer {
  padding: 58px 0 95px;
  background: var(--ink);
  color: #fff;
}
.brand.inverse > span {
  background: #fff;
  color: var(--ink);
}
.footerGrid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 50px;
}
.footerGrid > div {
  display: grid;
  align-content: start;
  gap: 9px;
}
.footerGrid p,
.footerGrid span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}
.footerGrid a:not(.brand),
.footerLink {
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  text-align: left;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}
.copyright {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}
.serviceDialog {
  width: min(960px, calc(100% - 24px));
  height: min(920px, 94vh);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  background: var(--cream);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
}
.serviceDialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}
.serviceDialog iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.dialogClose {
  position: absolute;
  z-index: 4;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 25px;
  cursor: pointer;
}
.cookieBanner {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  display: none;
  width: min(760px, calc(100% - 40px));
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.25);
}
.cookieBanner.show {
  display: grid;
}
.cookieBanner b {
  font-size: 18px;
}
.cookieBanner p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
}
.cookieBanner > div:last-child {
  display: flex;
  gap: 8px;
}
.cookieBanner button {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 850;
  cursor: pointer;
}
.cookieBanner .accept {
  background: var(--ink);
  color: #fff;
}
.mobileCta {
  display: none;
}

/* V177 · barra assistenza fissa a 3 azioni */
body { padding-bottom: calc(92px + env(safe-area-inset-bottom)); }
.actionDock {
  position: fixed;
  z-index: 92;
  top: auto;
  left: 50%;
  right: auto;
  bottom: max(10px, env(safe-area-inset-bottom));
  width: min(520px, calc(100% - 22px));
  height: 76px;
  display: grid;
  grid-template-columns: 1fr 148px 1fr;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 25px;
  background: rgba(15,16,15,.96);
  box-shadow: 0 18px 55px rgba(0,0,0,.42);
  backdrop-filter: blur(19px);
  -webkit-backdrop-filter: blur(19px);
  transform: translateX(-50%);
}
.actionDock button { font: inherit; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.dockSide {
  position: relative;
  min-width: 0;
  height: 58px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  border: 0;
  border-radius: 17px;
  background: transparent;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}
.dockSide:hover { background: rgba(255,255,255,.07); }
.dockSide svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.dockPrimary {
  position: relative;
  height: 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: -34px;
  border: 6px solid #111211;
  border-radius: 48px 48px 23px 23px;
  background: linear-gradient(155deg,#f2633e,#df371f);
  color: #fff;
  box-shadow: 0 11px 30px rgba(226,60,33,.36);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.05;
}
.dockPrimary:hover { transform: translateY(-2px); }
.dockPerson { display:grid; place-items:center; width:29px; height:29px; border:1px solid rgba(255,255,255,.8); border-radius:50%; }
.dockPerson svg { width:19px; height:19px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; }
.chatBadge { position:absolute; top:6px; right:calc(50% - 23px); min-width:19px; height:19px; padding:0 5px; border-radius:99px; background:var(--signal); color:#fff; font-size:10px; line-height:19px; font-weight:950; }

.callDialog {
  width: min(520px, calc(100% - 24px));
  padding: 42px 30px 30px;
  border: 0;
  border-radius: 28px;
  background: linear-gradient(145deg,#0f965e,#086a42);
  color: #fff;
  text-align: center;
  box-shadow: 0 40px 120px rgba(0,0,0,.5);
}
.callDialog::backdrop { background:rgba(0,0,0,.72); backdrop-filter:blur(8px); }
.callClose { position:absolute; top:13px; right:13px; width:39px; height:39px; border:1px solid rgba(255,255,255,.28); border-radius:50%; background:rgba(0,0,0,.12); color:#fff; font-size:23px; cursor:pointer; }
.callIcon { width:68px; height:68px; display:grid; place-items:center; margin:0 auto 17px; border:1px solid rgba(255,255,255,.35); border-radius:50%; background:rgba(255,255,255,.12); font-size:30px; }
.callEyebrow { margin:0 0 5px; color:#bff8dc; font-size:11px; font-weight:950; letter-spacing:.14em; text-transform:uppercase; }
.callDialog h2 { margin:0; font-size:30px; letter-spacing:-.04em; }
.callNumber { display:block; margin:12px 0 13px; color:#fff; font-size:clamp(37px,10vw,55px); line-height:1; font-weight:950; letter-spacing:-.06em; text-decoration:none; }
.callDialog p { max-width:410px; margin:0 auto 22px; color:rgba(255,255,255,.83); }
.callNow { min-height:55px; display:flex; align-items:center; justify-content:center; padding:0 18px; border-radius:16px; background:#fff; color:#075f3b; text-decoration:none; font-weight:950; }
.callDialog small { display:block; margin-top:11px; color:rgba(255,255,255,.68); }

.homeChat {
  position: fixed;
  z-index: 95;
  right: max(14px, calc((100vw - 1180px)/2));
  bottom: calc(99px + env(safe-area-inset-bottom));
  width: min(390px, calc(100% - 22px));
  height: min(620px, calc(100dvh - 125px));
  display: none;
  grid-template-rows: auto auto 1fr auto auto auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 25px;
  background: #f1f4f1;
  box-shadow: 0 28px 85px rgba(0,0,0,.38);
}
.homeChat.open { display:grid; animation:chatIn .18s ease-out; }
@keyframes chatIn { from{opacity:0;transform:translateY(12px) scale(.98)} to{opacity:1;transform:none} }
.homeChat header { display:flex; align-items:center; justify-content:space-between; padding:16px 16px 14px; background:linear-gradient(135deg,#121b16,#153e2b); color:#fff; }
.homeChat header>div { display:grid; grid-template-columns:auto 1fr; align-items:center; gap:0 8px; }
.homeChat header b { font-size:15px; }
.homeChat header small { grid-column:2; color:#a9c7b5; font-size:10px; }
.onlineDot { width:9px; height:9px; grid-row:1/3; border-radius:50%; background:#35dc8b; box-shadow:0 0 0 4px rgba(53,220,139,.15); }
.homeChat header button { width:36px; height:36px; border:1px solid rgba(255,255,255,.18); border-radius:50%; background:rgba(255,255,255,.06); color:#fff; font-size:22px; cursor:pointer; }
.chatProfile { padding:11px 12px; border-bottom:1px solid #dce4de; background:#fff; }
.chatProfile p { margin:0 0 8px; color:#667169; font-size:11px; }
.chatProfile>div { display:grid; grid-template-columns:1fr 1fr; gap:7px; }
.chatProfile input { min-width:0; height:38px; padding:0 10px; border:1px solid #dce4de; border-radius:10px; background:#fbfcfb; font:inherit; font-size:12px; }
.chatMessages { min-height:0; overflow:auto; padding:14px 12px; scroll-behavior:smooth; }
.chatWelcome { max-width:84%; display:grid; gap:2px; margin-bottom:10px; padding:11px 13px; border-radius:16px 16px 16px 5px; background:#fff; color:#29332d; box-shadow:0 5px 18px rgba(18,44,28,.07); }
.chatWelcome span { color:#68726b; font-size:12px; }
.chatMessage { max-width:84%; margin:7px 0; padding:10px 12px; border-radius:15px 15px 15px 5px; background:#fff; box-shadow:0 5px 18px rgba(18,44,28,.07); white-space:pre-wrap; overflow-wrap:anywhere; font-size:13px; }
.chatMessage.client { margin-left:auto; border-radius:15px 15px 5px 15px; background:#d9f5e5; }
.chatMessage time { display:block; margin-top:3px; color:#849087; font-size:9px; text-align:right; }
.chatTyping { min-height:18px; padding:0 14px; color:#168055; font-size:10px; }
.chatComposer { display:grid; grid-template-columns:1fr 43px; gap:7px; padding:9px 11px; border-top:1px solid #dce4de; background:#fff; }
.chatComposer textarea { width:100%; max-height:100px; resize:none; padding:12px; border:1px solid #dce4de; border-radius:13px; font:inherit; }
.chatComposer button { width:43px; height:43px; border:0; border-radius:13px; background:#128257; color:#fff; font-size:19px; cursor:pointer; }
.chatPrivacy { padding:0 11px 8px; background:#fff; color:#89918c; font-size:9px; text-align:center; }
.chatPrivacy a { color:inherit; }
@media (max-width: 980px) {
  #mainNav {
    position: fixed;
    top: 105px;
    left: 0;
    right: 0;
    display: none;
    padding: 25px 20px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  #mainNav.open {
    display: grid;
  }
  .menuToggle {
    display: block;
  }
  .categoryGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .split,
  .leadBox,
  .faqGrid {
    grid-template-columns: 1fr;
  }
  .proofGrid {
    grid-template-columns: repeat(3, 1fr);
    padding: 22px 0;
  }
  .proofGrid > b {
    grid-column: 1/-1;
  }
  .footerGrid {
    grid-template-columns: 1fr 1fr;
  }
  .footerGrid > div:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .section {
    padding: 76px 0;
  }
  .hero {
    min-height: 790px;
    background-position: 68% center;
  }
  .hero:before {
    background:
      linear-gradient(
        90deg,
        rgba(12, 12, 11, 0.98),
        rgba(12, 12, 11, 0.87) 75%,
        rgba(12, 12, 11, 0.4)
      ),
      linear-gradient(0deg, rgba(12, 12, 11, 0.8), transparent 55%);
  }
  .heroInner {
    padding: 70px 0;
  }
  .hero h1 {
    font-size: clamp(47px, 15vw, 68px);
  }
  .lead {
    font-size: 17px;
  }
  .heroActions {
    display: grid;
  }
  .quickSearch {
    grid-template-columns: 1fr;
  }
  .proofGrid {
    grid-template-columns: 1fr;
  }
  .proofGrid > div {
    padding: 12px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .categoryGrid,
  .steps {
    grid-template-columns: 1fr;
  }
  .steps article {
    min-height: auto;
  }
  .steps article > b {
    margin-bottom: 38px;
  }
  .sectionHead {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .section h2 {
    font-size: 42px;
  }
  .statement {
    min-height: 450px;
    padding: 33px 27px;
  }
  .statement > strong {
    font-size: 72px;
  }
  .urgent {
    align-items: stretch;
    flex-direction: column;
    padding: 27px;
  }
  .footerGrid {
    grid-template-columns: 1fr;
  }
  .footerGrid > div:first-child {
    grid-column: auto;
  }
  .cookieBanner {
    right: 10px;
    bottom: calc(105px + env(safe-area-inset-bottom));
    width: calc(100% - 20px);
    grid-template-columns: 1fr;
  }
  .cookieBanner > div:last-child {
    width: 100%;
  }
  .cookieBanner button {
    flex: 1;
  }
  footer {
    padding-bottom: 42px;
  }
  .serviceDialog {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    border: 0;
    border-radius: 0;
  }
  .dialogClose {
    right: 12px;
    top: 12px;
  }
  .actionDock { width:calc(100% - 14px); bottom:max(7px,env(safe-area-inset-bottom)); grid-template-columns:1fr 132px 1fr; border-radius:22px; }
  .dockPrimary { height:88px; }
  .homeChat { inset:0; width:100%; height:100dvh; max-width:none; border:0; border-radius:0; padding-bottom:env(safe-area-inset-bottom); }
  .homeChat header { padding-top:calc(15px + env(safe-area-inset-top)); }
  .chatProfile>div { grid-template-columns:1fr; }
  .callDialog { width:calc(100% - 18px); padding:39px 20px 25px; border-radius:24px; }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}
