:root {
  --blue: #075ee8;
  --blue-2: #004dd0;
  --cyan: #23b7ff;
  --accent: #ffb020;
  --navy: #061a3d;
  --navy-2: #031126;
  --text: #071b40;
  --muted: #5d6b82;
  --line: #dce5f2;
  --surface: #ffffff;
  --soft: #f5f8fc;
  --shadow: 0 18px 50px rgba(6, 26, 61, .14);
  --radius: 8px;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: #f8fbff;
  font-size: 16px;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { width: 1.25rem; height: 1.25rem; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.section,
.process-wrap,
.area-form,
.quality,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 12px clamp(20px, 5vw, 74px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(220, 229, 242, .78);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.brand strong,
.footer-brand strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.2rem, 2vw, 1.56rem);
  line-height: 1;
}
.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: linear-gradient(145deg, #fff, #edf5ff);
  box-shadow: 0 8px 22px rgba(6, 26, 61, .1);
}
.brand-mark img {
  display: block;
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  font-weight: 800;
}
.site-nav a { padding: 12px 4px; }
.site-nav a:hover { color: var(--blue); }

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 4px;
  color: var(--navy);
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.nav-dropdown-toggle svg {
  width: 22px;
  height: 22px;
  stroke-width: 3;
  transition: transform .2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.is-open .nav-dropdown-toggle,
.nav-emergency:hover {
  color: var(--blue);
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.is-open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  z-index: 30;
  display: grid;
  gap: 0;
  width: min(620px, calc(100vw - 40px));
  padding: 14px 0;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -8px);
  color: #304159;
  background: #eaf6ff;
  border: 1px solid #c7dff2;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(6, 26, 61, .18);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  padding: 18px 40px;
  color: #2f3d4f;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 520;
  line-height: 1.15;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  color: var(--navy);
  background: rgba(255,255,255,.52);
}

.nav-emergency {
  color: #6b8aad;
}
.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 11px 20px;
  border-radius: var(--radius);
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.header-cta,
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 10px 22px rgba(7, 94, 232, .25);
}
.header-cta svg,
.button svg { flex: 0 0 auto; }
.button span { display: grid; line-height: 1.1; }
.button small {
  margin-top: 5px;
  font-size: .75rem;
  font-weight: 700;
  opacity: .86;
}
.button.secondary {
  color: var(--blue);
  background: #fff;
  border: 2px solid #c4d6f9;
}
.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}
.button.secondary:hover {
  border-color: var(--blue);
  box-shadow: 0 14px 30px rgba(7, 94, 232, .12);
}
.button.ghost {
  color: var(--navy);
  background: #fff7e5;
  border: 2px solid rgba(255,176,32,.48);
}
.menu-toggle { display: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(340px, .9fr) minmax(440px, 1.1fr);
  min-height: clamp(620px, calc(100vh - 160px), 760px);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 16%, rgba(255,176,32,.16), transparent 24%),
    linear-gradient(103deg, #fff 0%, #fff 48%, #edf5ff 48%, #edf5ff 100%);
}
.hero-copy {
  align-self: center;
  padding: clamp(44px, 7vw, 86px) clamp(22px, 5vw, 74px) clamp(32px, 5vw, 52px);
}
.hero h1 {
  max-width: 660px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}
.lead {
  max-width: 620px;
  margin: 24px 0 28px;
  color: #142a52;
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  font-weight: 720;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.micro-trust span {
  position: relative;
  padding: 10px 13px 10px 34px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #253653;
  font-size: .9rem;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(6,26,61,.06);
}
.micro-trust span::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-media {
  position: relative;
  min-height: 560px;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 28%;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.72) 35%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
}
.urgent-card {
  position: absolute;
  right: clamp(22px, 4vw, 54px);
  top: 28%;
  display: grid;
  gap: 12px;
  width: min(250px, 36vw);
  padding: 28px;
  color: #fff;
  background: linear-gradient(145deg, var(--blue), #003d9f);
  border-radius: var(--radius);
  box-shadow: 0 20px 44px rgba(3,17,38,.28);
}
.urgent-card svg {
  width: 56px;
  height: 56px;
  stroke-width: 2.4;
}
.urgent-card strong {
  font-size: 1.2rem;
  line-height: 1.12;
}
.urgent-card span {
  color: rgba(255,255,255,.86);
  font-weight: 700;
}

.hero-ticket {
  position: absolute;
  left: clamp(26px, 5vw, 70px);
  bottom: clamp(24px, 5vw, 58px);
  display: grid;
  gap: 4px;
  max-width: 260px;
  padding: 16px 18px;
  color: var(--navy);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.84);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(3,17,38,.18);
  backdrop-filter: blur(16px);
}

.hero-ticket strong {
  font-size: 1.35rem;
  line-height: 1;
}

.hero-ticket span {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 750;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 clamp(20px, 5vw, 74px);
  color: #fff;
  background:
    radial-gradient(circle at 8% 0%, rgba(255,176,32,.18), transparent 28%),
    linear-gradient(135deg, var(--navy), #053a86);
}
.trust-band div {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 24px 26px;
}
.trust-band svg {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}
.trust-band span { color: rgba(255,255,255,.82); font-size: .93rem; }
.trust-band strong { display: block; color: #fff; font-size: 1.04rem; }

.section {
  padding: clamp(46px, 6vw, 74px) clamp(20px, 5vw, 74px);
  background: #fff;
}

.services,
.pricing-preview,
.photo-quote,
.process-wrap,
.proof-section,
.area-form,
.local-seo-section,
.faq-section,
.quality,
.photo-plan,
.soft-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 620px;
}
.section-heading {
  text-align: center;
  margin-bottom: 26px;
}
.section-heading p {
  max-width: 760px;
  margin: 12px auto 0;
  color: var(--muted);
  font-weight: 720;
}
.section-heading h2,
.area-copy h2,
.quote-form h2,
.quality h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.1;
  text-transform: uppercase;
}
.section-heading h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin: 14px auto 0;
  background: var(--blue);
  border-radius: 999px;
}
.on-dark h2 { color: #fff; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 20px;
}
.service-grid article {
  display: grid;
  align-content: start;
  min-height: 258px;
  padding: 26px 22px 22px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #fbfdff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(6, 26, 61, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-grid article:hover {
  transform: translateY(-4px);
  border-color: #b8d0f8;
  box-shadow: 0 20px 42px rgba(6, 26, 61, .12);
}
.service-grid svg {
  width: 62px;
  height: 62px;
  justify-self: center;
  color: var(--blue);
  stroke-width: 2.4;
}
.service-grid h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: 1.05rem;
}
.service-grid p {
  margin: 0 0 18px;
  color: #394962;
  font-size: .94rem;
}
.service-grid a {
  align-self: end;
  color: var(--blue);
  font-size: .86rem;
  font-weight: 950;
  text-transform: uppercase;
}
.service-grid a::after { content: " ->"; }

.process-wrap {
  padding: 38px clamp(20px, 5vw, 74px) 54px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 0%, rgba(255,176,32,.18), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(35,183,255,.18), transparent 28%),
    linear-gradient(135deg, var(--navy-2), #063b8e);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.process-grid div {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}
.process-grid b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--blue);
  border-radius: 50%;
}
.process-grid svg {
  width: 54px;
  height: 54px;
}
.process-grid h3 {
  margin: 0;
  max-width: 180px;
  font-size: 1rem;
  line-height: 1.16;
  text-transform: uppercase;
}
.process-grid p {
  max-width: 210px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: .92rem;
}

.area-form {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 430px);
  gap: 28px;
  padding: clamp(42px, 5vw, 62px) clamp(20px, 5vw, 74px);
  background: var(--soft);
}
.area-panel {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) 1fr minmax(170px, .45fr);
  align-items: stretch;
  min-height: 330px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.area-copy,
.stats {
  padding: 34px;
}
.area-copy h2 { max-width: 330px; }
.area-copy ul {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}
.area-copy li {
  position: relative;
  margin: 9px 0;
  padding-left: 25px;
  color: #233653;
  font-weight: 700;
}

.area-copy a {
  color: var(--blue);
  font-weight: 900;
}
.area-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}
.map-card {
  position: relative;
  display: grid;
  place-items: center;
  color: var(--navy);
  overflow: hidden;
  background:
    linear-gradient(35deg, transparent 47%, rgba(7,94,232,.12) 48%, rgba(7,94,232,.12) 50%, transparent 51%),
    linear-gradient(145deg, #f7fbff, #e5effd);
}
.map-card::before,
.map-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(7,94,232,.12);
  border-radius: 50%;
}
.map-card::before { width: 260px; height: 260px; }
.map-card::after { width: 150px; height: 150px; }
.map-pin {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  background: var(--blue);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 16px 28px rgba(7,94,232,.28);
}
.map-pin::after {
  content: "";
  position: absolute;
  inset: 15px;
  background: #fff;
  border-radius: 50%;
}
.map-card strong {
  position: absolute;
  z-index: 2;
  bottom: 72px;
  font-size: 1.1rem;
}
.stats {
  display: grid;
  align-content: center;
  gap: 16px;
}
.stats p {
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 760;
}
.stats p:last-child { border-bottom: 0; padding-bottom: 0; }
.stats strong {
  display: block;
  color: var(--blue);
  font-size: 2rem;
  line-height: 1;
}

.quote-form {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 28px;
  color: #fff;
  background: linear-gradient(145deg, var(--blue), #0041b5);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.quote-form h2 { color: #fff; }
.quote-form p {
  margin: -4px 0 8px;
  color: rgba(255,255,255,.88);
  font-weight: 700;
}
.quote-form label { display: grid; gap: 6px; }
.quote-form .is-hidden {
  display: none;
}
.quote-form label span {
  font-size: .78rem;
  font-weight: 850;
  color: rgba(255,255,255,.78);
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 0;
  border-radius: 6px;
  padding: 14px 15px;
  color: var(--text);
  font: inherit;
  font-size: .96rem;
  background: #fff;
  outline: 2px solid transparent;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus { outline-color: var(--cyan); }
.quote-form .quote-option {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
}
.quote-form .quote-option input {
  width: 18px;
  height: 18px;
  padding: 0;
  accent-color: var(--cyan);
}
.quote-form .quote-option span {
  color: #fff;
  font-size: .9rem;
}
.quote-form select:disabled {
  color: #7b8798;
  background: #edf3fb;
  cursor: not-allowed;
}
.availability-note {
  margin: -4px 0 2px;
  padding: 10px 12px;
  color: #dceaff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  font-size: .86rem;
  font-weight: 760;
}
.quote-form button {
  min-height: 54px;
  margin-top: 4px;
  color: #fff;
  background: var(--navy);
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}
.quote-form small { color: rgba(255,255,255,.72); }
.form-status {
  min-height: 22px;
  color: #fff;
  font-weight: 850;
}

.form-status a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quality {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 34px clamp(20px, 5vw, 74px);
  background: #fff;
  border-top: 1px solid var(--line);
}
.quality-badge {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: var(--blue);
}
.quality-badge svg { width: 100%; height: 100%; }
.quality-badge path:first-child { fill: rgba(7,94,232,.08); }
.quality p { margin: 8px 0 0; color: var(--muted); font-weight: 730; }
.signature {
  color: var(--blue) !important;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-style: italic;
  font-weight: 800 !important;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr .8fr .7fr 1fr;
  gap: 34px;
  padding: 46px clamp(20px, 5vw, 74px);
  color: rgba(255,255,255,.83);
  background: radial-gradient(circle at 90% 20%, rgba(35,183,255,.12), transparent 28%), linear-gradient(135deg, var(--navy-2), #042b68);
}
.site-footer strong,
.site-footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.18rem;
}
.site-footer p { margin: 0; max-width: 270px; }
.site-footer a,
.site-footer span,
.site-footer button {
  display: block;
  margin: 8px 0;
}
.footer-link {
  padding: 0;
  color: rgba(255,255,255,.83);
  background: transparent;
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.footer-link:hover,
.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.socials { display: flex; gap: 12px; }
.socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-weight: 950;
  font-size: 1.25rem;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.scope-section {
  background: #f7fbff;
}

.scope-grid,
.trust-check-grid,
.prep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.trust-check-grid {
  grid-template-columns: repeat(4, 1fr);
}

.scope-card,
.trust-check-grid article,
.prep-grid article,
.prep-note {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(6, 26, 61, .08);
}

.scope-card.positive {
  border-left: 5px solid var(--blue);
}

.scope-card.limits {
  border-left: 5px solid var(--accent);
}

.scope-card h3,
.trust-check-grid strong,
.prep-grid h2,
.prep-note h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.18rem;
}

.scope-card p,
.trust-check-grid span,
.prep-grid p,
.prep-note p {
  margin: 0;
  color: #334660;
  font-weight: 650;
}

.scope-card ul,
.prep-grid ul,
.google-prep ul {
  padding: 0;
  margin: 2px 0 0;
  list-style: none;
}

.scope-card li,
.prep-grid li,
.google-prep li {
  position: relative;
  margin: 10px 0;
  padding-left: 24px;
  color: var(--text);
  font-weight: 790;
}

.scope-card li::before,
.prep-grid li::before,
.google-prep li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.scope-card.limits li::before {
  border-color: var(--accent);
}

.prep-grid a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.trust-check-section {
  background: #fff;
}

.trust-check-grid article {
  border-top: 5px solid var(--blue);
}

.review-placeholder {
  background: linear-gradient(180deg, #fff, #f7fbff);
  border-style: dashed;
}

.prep-note {
  max-width: 1080px;
  margin: 0 auto;
  border-left: 5px solid var(--blue);
}

.split-copy h2,
.pricing-panel h2,
.page-hero h1,
.contact-info h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.split-copy p,
.pricing-panel p,
.page-hero p,
.contact-info p {
  max-width: 700px;
  color: #263a59;
  font-size: 1.08rem;
  font-weight: 680;
  overflow-wrap: break-word;
}

.emergency-section {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) 1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: linear-gradient(180deg, #fff, #f7fbff);
}

.emergency-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 16px;
}

.emergency-grid article,
.emergency-grid a,
.pricing-explainer article,
.work-card,
.review-card,
.review-grid article,
.contact-cards > * {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(6, 26, 61, .08);
}

.emergency-grid article,
.emergency-grid a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 24px;
  border-left: 5px solid var(--blue);
  transition: transform .2s ease, box-shadow .2s ease;
}

.emergency-grid a:hover,
.urgent-card:hover,
.contact-cards a:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(6, 26, 61, .14);
}

.pricing-explainer article,
.work-card,
.review-card,
.review-grid article,
.contact-cards > * {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.pricing-explainer article:hover,
.work-card:hover,
.review-card:hover,
.review-grid article:hover {
  transform: translateY(-3px);
  border-color: #bfd6f7;
  box-shadow: 0 22px 44px rgba(6, 26, 61, .12);
}

.emergency-grid strong,
.work-card strong,
.review-card strong,
.review-grid strong,
.contact-cards strong {
  color: var(--navy);
  font-size: 1.08rem;
}

.emergency-grid span,
.work-card span,
.review-card span,
.review-grid span,
.contact-cards span {
  color: var(--muted);
  font-weight: 720;
}

.pricing-preview {
  background: var(--soft);
}

.pricing-panel {
  display: grid;
  grid-template-columns: 1fr minmax(260px, .5fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 50px);
  padding: clamp(28px, 5vw, 54px);
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pricing-panel.large {
  grid-template-columns: 1fr minmax(280px, .6fr);
}

.pricing-panel.large .button {
  justify-self: start;
}

.pricing-steps {
  display: grid;
  gap: 10px;
}

.pricing-steps span {
  display: block;
  padding: 13px 15px;
  color: var(--navy);
  background: #f5f8fc;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 850;
}

.proof-section {
  background: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.15fr .8fr .8fr;
  gap: 20px;
}

.proof-grid.tall {
  grid-template-columns: repeat(4, 1fr);
}

.image-card {
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.work-card,
.review-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.image-card {
  padding: 0;
}

.image-card div {
  display: grid;
  gap: 8px;
  padding: 20px 22px 24px;
}

.review-card p,
.review-grid p,
.work-card p {
  margin: 0;
  color: #334660;
  font-weight: 650;
}

.stars {
  color: var(--accent);
  font-size: 1.02rem;
  letter-spacing: 0;
}

.visual-proof {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(340px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  background: linear-gradient(180deg, #fff, #f5f9ff);
}

.visual-proof-media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visual-proof-media::after {
  content: "Ukázka práce";
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 11px;
  color: var(--navy);
  background: rgba(255,255,255,.92);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 950;
}

.visual-proof-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.visual-proof-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.visual-proof-copy p {
  max-width: 680px;
  color: #263a59;
  font-size: 1.08rem;
  font-weight: 680;
}

.photo-slot-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.photo-slot-row a {
  display: grid;
  gap: 8px;
  min-height: 120px;
  align-content: end;
  padding: 16px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(3,17,38,0), rgba(3,17,38,.78)),
    linear-gradient(135deg, #91a8c8, #dbe7f6);
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease;
}

.photo-slot-row a:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(6, 26, 61, .14);
}

.photo-slot-row span {
  width: max-content;
  padding: 4px 7px;
  color: var(--navy);
  background: var(--accent);
  border-radius: 5px;
  font-size: .78rem;
  font-weight: 950;
}

.photo-slot-row strong {
  line-height: 1.15;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(360px, .82fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  padding: clamp(54px, 7vw, 96px) clamp(20px, 5vw, 74px);
  background: linear-gradient(115deg, #fff 0%, #fff 58%, #f0f6ff 58%, #f0f6ff 100%);
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.compact-hero {
  grid-template-columns: 1fr;
  min-height: 420px;
  background: radial-gradient(circle at 90% 0%, rgba(35,183,255,.14), transparent 32%), linear-gradient(135deg, #fff, #f2f7ff);
}

.compact-hero div {
  max-width: 920px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-detail-grid article {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(6, 26, 61, .08);
}

.service-page-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 520px;
  overflow: hidden;
  background: var(--navy);
}

.service-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.9) 34%, rgba(255,255,255,.35) 58%, rgba(255,255,255,.06) 100%),
    linear-gradient(0deg, rgba(3,17,38,.22), rgba(3,17,38,0));
  pointer-events: none;
}

.service-page-hero > div {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.service-page-hero img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  border-radius: 0;
  box-shadow: none;
}

.service-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: #fff;
}

.service-info-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(6, 26, 61, .08);
}

.service-info-grid h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.25rem;
}

.service-info-grid p {
  margin: 0;
  color: #334660;
  font-weight: 650;
}

.service-info-grid ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-info-grid li {
  position: relative;
  margin: 9px 0;
  padding-left: 22px;
  color: var(--text);
  font-weight: 780;
}

.service-info-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.service-detail-grid h2,
.pricing-explainer h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.35rem;
}

.service-detail-grid p,
.pricing-explainer p {
  margin: 0;
  color: #334660;
  font-weight: 650;
}

.service-detail-grid ul {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.service-detail-grid li {
  position: relative;
  margin: 9px 0;
  padding-left: 22px;
  color: var(--text);
  font-weight: 780;
}

.service-detail-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.pricing-explainer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pricing-explainer article {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 26px;
}

.pricing-explainer b {
  color: var(--blue);
  font-size: .92rem;
}

.soft-section {
  background: var(--soft);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.review-grid article {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.contact-page {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 460px);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  padding: clamp(54px, 7vw, 96px) clamp(20px, 5vw, 74px);
  background: linear-gradient(115deg, #fff 0%, #fff 55%, #f2f7ff 55%, #f2f7ff 100%);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.contact-cards > * {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.contact-page .quote-form {
  position: sticky;
  top: 110px;
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(54px, 7vw, 96px) clamp(20px, 5vw, 74px);
}

.legal-page h1 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1;
}

.legal-page h2 {
  margin: 34px 0 10px;
  color: var(--navy);
  font-size: 1.35rem;
}

.legal-page p {
  color: #334660;
  font-size: 1.05rem;
  font-weight: 650;
}

.legal-page a {
  color: var(--blue);
  font-weight: 850;
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(720px, calc(100vw - 44px));
  padding: 20px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(3, 17, 38, .24);
}

.cookie-banner strong {
  display: block;
  color: var(--navy);
  font-size: 1.1rem;
}

.cookie-banner p {
  margin: 5px 0 8px;
  color: #334660;
  font-size: .94rem;
  font-weight: 650;
}

.cookie-banner a {
  color: var(--blue);
  font-weight: 850;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #c4d6f9;
  color: var(--navy);
  background: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.cookie-actions button:nth-child(2) {
  color: var(--blue);
}

.cookie-actions button:last-child {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.faq-grid details {
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(6, 26, 61, .07);
}

.faq-grid summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 950;
  font-size: 1.05rem;
}

.faq-grid p {
  margin: 14px 0 0;
  color: #334660;
  font-weight: 650;
}

.photo-plan {
  background: #fff;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.photo-grid div,
.photo-grid a {
  display: grid;
  align-content: end;
  min-height: 220px;
  padding: 20px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(3,17,38,0), rgba(3,17,38,.78)),
    linear-gradient(135deg, #dbe7f6, #8ca6c9);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.photo-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(6, 26, 61, .16);
}

.photo-grid span {
  width: max-content;
  margin-bottom: 8px;
  padding: 5px 8px;
  color: var(--blue);
  background: #fff;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 950;
}

.photo-grid strong {
  font-size: 1.15rem;
}

.mobile-action-bar {
  display: none;
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-item {
    opacity: 1;
    transform: none;
  }
  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.photo-quote {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(280px, .55fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  background:
    radial-gradient(circle at 82% 14%, rgba(35,183,255,.18), transparent 32%),
    linear-gradient(135deg, #f7fbff, #fff);
}

.photo-quote-copy h2,
.city-copy h2,
.contact-prep h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.06;
}

.photo-quote-copy p,
.city-copy p,
.contact-prep p {
  color: #263a59;
  font-size: 1.06rem;
  font-weight: 680;
}

.photo-quote-checklist,
.photo-quote-guides {
  display: grid;
  gap: 10px;
  padding: 28px;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-quote-checklist strong,
.photo-quote-guides strong {
  color: #fff;
  font-size: 1.3rem;
}

.photo-quote-checklist span {
  padding: 13px 14px;
  color: #dce9ff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 6px;
  font-weight: 820;
}

.photo-quote-guides a {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 20px;
  color: #dce9ff;
  text-decoration: none;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.photo-quote-guides a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.12);
  border-color: rgba(119,190,255,.55);
}

.photo-quote-guides span {
  color: #dce9ff;
  font-weight: 720;
  line-height: 1.45;
}

.local-seo-section {
  background: #fff;
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.local-grid a,
.google-prep,
.contact-prep {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(6, 26, 61, .08);
}

.local-grid a {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-top: 5px solid var(--blue);
  transition: transform .2s ease, box-shadow .2s ease;
}

.local-grid a:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(6, 26, 61, .13);
}

.local-grid strong,
.google-prep strong {
  color: var(--navy);
  font-size: 1.12rem;
}

.local-grid span,
.google-prep span {
  color: var(--muted);
  font-weight: 720;
}

.contact-prep {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 24px;
}

.contact-prep .hero-actions {
  margin-bottom: 0;
}

.google-prep {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 20px;
  border-left: 5px solid var(--blue);
}

.city-hero {
  background: linear-gradient(115deg, #fff 0%, #fff 55%, #eaf3ff 55%, #eaf3ff 100%);
}

.city-liberec .city-hero {
  background:
    radial-gradient(circle at 86% 16%, rgba(255,176,32,.18), transparent 28%),
    linear-gradient(115deg, #fff 0%, #fff 55%, #eaf3ff 55%, #eaf3ff 100%);
}

.city-jablonec .city-hero {
  background:
    radial-gradient(circle at 88% 12%, rgba(35,183,255,.18), transparent 30%),
    linear-gradient(115deg, #fff 0%, #fff 55%, #eaf7ff 55%, #eaf7ff 100%);
}

.city-turnov .city-hero {
  background:
    radial-gradient(circle at 88% 14%, rgba(7,94,232,.16), transparent 30%),
    linear-gradient(115deg, #fff 0%, #fff 55%, #f0f6ff 55%, #f0f6ff 100%);
}

.city-content {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(280px, .65fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.city-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.city-list span {
  padding: 14px 16px;
  color: var(--navy);
  background: #f5f8fc;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 850;
}

@media (max-width: 1080px) {
  .site-header { grid-template-columns: auto auto; }
  .site-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
  .nav-dropdown-menu {
    left: 0;
    transform: translate(0, -8px);
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu {
    transform: translate(0, 0);
  }
  .header-cta { justify-self: end; }
  .hero { grid-template-columns: 1fr; background: #fff; }
  .hero-copy { padding-bottom: 24px; }
  .hero-media { min-height: 460px; clip-path: none; }
  .trust-band,
  .process-grid,
  .proof-grid,
  .review-grid,
  .local-grid,
  .trust-check-grid,
  .pricing-explainer,
  .faq-grid,
  .photo-grid,
  .photo-slot-row { grid-template-columns: repeat(2, 1fr); }
  .service-grid,
  .service-info-grid,
  .service-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .area-form { grid-template-columns: 1fr; }
  .pricing-panel,
  .pricing-panel.large,
  .visual-proof,
  .photo-quote,
  .city-content,
  .page-hero,
  .contact-page { grid-template-columns: 1fr; }
  .contact-page .quote-form { position: static; }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 78px;
  }
  .mobile-action-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 55;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 8px;
    background: rgba(255,255,255,.96);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 18px 52px rgba(3, 17, 38, .22);
    backdrop-filter: blur(18px);
  }
  .mobile-action-bar a {
    display: grid;
    place-items: center;
    gap: 3px;
    min-height: 52px;
    color: var(--navy);
    border-radius: 8px;
    font-size: .76rem;
    font-weight: 950;
  }
  .mobile-action-bar a:first-child {
    color: #fff;
    background: var(--blue);
  }
  .mobile-action-bar a:nth-child(3) {
    background: #fff7e5;
  }
  .mobile-action-bar svg {
    width: 19px;
    height: 19px;
  }
  .cookie-banner {
    bottom: 92px;
  }
  .site-header {
    min-height: 74px;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 10px 18px;
  }
  .brand small,
  .header-cta { display: none; }
  .brand-mark { width: 46px; height: 46px; }
  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
  }
  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
  }
  .site-nav {
    display: none;
    grid-column: 1 / -1;
    padding: 10px 0 4px;
  }
  .site-nav.is-open { display: grid; gap: 4px; }
  .site-nav a { padding: 10px 0; }
  .nav-dropdown {
    display: grid;
  }
  .nav-dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
  }
  .nav-dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    visibility: visible;
    opacity: 1;
    overflow: hidden;
    transform: none;
    border-radius: 8px;
    box-shadow: none;
    transition: max-height .22s ease, padding .22s ease;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu {
    max-height: 420px;
    padding: 8px 0;
    transform: none;
  }
  .nav-dropdown-menu a {
    padding: 12px 16px;
    font-size: 1rem;
  }
  .hero {
    min-height: auto;
  }
  .hero-copy { padding: 34px 20px 22px; }
  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3rem);
    line-height: .96;
    max-width: 430px;
  }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-media { min-height: 370px; }
  .hero-media::after { display: none; }
  .urgent-card {
    right: 16px;
    top: auto;
    bottom: 18px;
    width: min(270px, calc(100% - 32px));
    padding: 20px;
  }
  .hero-ticket {
    display: none;
  }
  .visual-proof-media,
  .visual-proof-media img {
    min-height: 280px;
  }
  .trust-band,
  .process-grid,
  .service-grid,
  .service-info-grid,
  .service-detail-grid,
  .scope-grid,
  .trust-check-grid,
  .prep-grid,
  .proof-grid,
  .proof-grid.tall,
  .review-grid,
  .pricing-explainer,
  .faq-grid,
  .photo-grid,
  .photo-slot-row,
  .local-grid,
  .city-list,
  .emergency-section,
  .emergency-grid,
  .contact-cards,
  .area-panel,
  .quality,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .trust-band { padding: 10px 20px; }
  .trust-band div { min-height: auto; padding: 18px 0; }
  .section { padding: 40px 20px; }
  .service-grid article { min-height: 0; }
  .process-wrap { padding: 38px 20px 44px; }
  .area-form { padding: 36px 20px; }
  .map-card { min-height: 240px; }
  .quality { align-items: start; }
  .signature { margin-top: 0 !important; }
  .site-footer { gap: 24px; }
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 92px;
    grid-template-columns: 1fr;
    width: auto;
  }
  .cookie-actions {
    display: grid;
  }
  .page-hero,
  .contact-page {
    padding: 38px 20px;
  }
  .service-page-hero {
    min-height: 560px;
  }
  .service-page-hero::before {
    background:
      linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 48%, rgba(255,255,255,.2) 100%),
      linear-gradient(0deg, rgba(3,17,38,.2), rgba(3,17,38,0));
  }
  .service-page-hero img {
    object-position: center bottom;
  }
  .page-hero h1,
  .contact-info h1,
  .split-copy h2,
  .visual-proof-copy h2,
  .pricing-panel h2 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }
  .page-hero p,
  .contact-info p,
  .split-copy p,
  .pricing-panel p {
    max-width: 100%;
    font-size: 1rem;
  }
  .pricing-panel {
    padding: 24px;
  }
  .image-card img {
    height: 220px;
  }
}
