:root {
  --ink: #07121b;
  --ink2: #102636;
  --panel: #f7faf9;
  --panel2: #edf3f2;
  --line: rgba(8, 19, 28, 0.12);
  --cyan: #19a7ce;
  --orange: #ff7e27;
  --red: #9b1d32;
  --muted: #52616b;
  --shadow: 0 24px 70px rgba(7, 18, 27, 0.14);
  --side: clamp(26px, 4vw, 84px);
  --max: 1780px;
  --radius: 28px;
  --font-ui: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-ui);
  background: linear-gradient(180deg, #f7faf9 0%, #edf3f2 48%, #f9fbfb 100%);
  color: var(--ink);
  overflow-x: hidden;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(25, 167, 206, 0.18),
      transparent 34%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(255, 126, 39, 0.16),
      transparent 36%
    ),
    linear-gradient(90deg, rgba(8, 19, 28, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8, 19, 28, 0.035) 1px, transparent 1px);
  background-size:
    auto,
    auto,
    42px 42px,
    42px 42px;
}
.grid-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.16;
  background-image:
    linear-gradient(135deg, rgba(8, 19, 28, 0.08) 25%, transparent 25%),
    linear-gradient(225deg, rgba(8, 19, 28, 0.05) 25%, transparent 25%);
  background-size: 18px 18px;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  max-width: none;
  font-family: var(--font-display);
}
.section-shell {
  width: min(calc(100% - var(--side) * 2), var(--max));
  margin-inline: auto;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 12px var(--side);
  background: rgba(247, 250, 249, 0.82);
  border-bottom: 1px solid rgba(8, 19, 28, 0.08);
  backdrop-filter: blur(18px);
}
.topbar.is-scrolled {
  box-shadow: 0 14px 40px rgba(8, 19, 28, 0.08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #07121b, #15364a);
  color: #fff;
  font-weight: 950;
  font-size: 13px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.brand strong {
  display: block;
  line-height: 1;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 2px;
}
.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 13px;
  color: #1a2a35;
}
.main-nav a:hover {
  background: #e7f2f3;
  color: #082d3d;
}
.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
}
.lang-switch button {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 7px 8px;
  font-weight: 900;
  font-size: 11px;
  cursor: pointer;
}
.lang-switch .active {
  background: #07121b;
  color: #fff;
}
.menu-toggle {
  display: none;
  background: #07121b;
  border: 0;
  border-radius: 12px;
  width: 42px;
  height: 42px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 950;
  cursor: pointer;
  white-space: nowrap;
}
.btn.primary {
  background: linear-gradient(135deg, #ff7e27, #a71d33);
  color: #fff;
  box-shadow: 0 14px 34px rgba(167, 29, 51, 0.22);
}
.btn.ghost {
  background: #fff;
  color: #07121b;
  border: 1px solid var(--line);
}
.btn.full {
  width: 100%;
}
.top-cta {
  border-radius: 999px;
  padding: 12px 16px;
  background: #07121b;
  color: #fff;
  font-weight: 950;
  font-size: 13px;
}
.eyebrow {
  margin: 0 0 14px;
  color: #e25f25;
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 950;
  text-transform: uppercase;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(460px, 0.97fr);
  gap: clamp(34px, 4.4vw, 80px);
  align-items: center;
  padding: clamp(54px, 7vw, 108px) 0 66px;
}
.hero-panel-dark {
  position: relative;
  min-height: 610px;
  padding: clamp(34px, 4.2vw, 70px);
  border-radius: 38px;
  background: linear-gradient(145deg, #07121b 0%, #102b3c 58%, #123f50 100%);
  color: #fff;
  box-shadow: 0 40px 110px rgba(7, 18, 27, 0.32);
  overflow: hidden;
}
.hero-panel-dark:before {
  content: "";
  position: absolute;
  inset: auto -18% -28% 18%;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(25, 167, 206, 0.35),
    transparent 63%
  );
  transform: rotate(-8deg);
}
.hero h1 {
  position: relative;
  margin: 0;
  font-size: clamp(3.1rem, 6.2vw, 8.1rem);
  line-height: 0.86;
  letter-spacing: -0.075em;
  font-weight: 980;
}
.lead {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.12vw, 1.28rem);
  line-height: 1.65;
  margin: 22px 0 0;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.signal-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.signal-row div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}
.signal-row strong {
  display: block;
  font-size: 27px;
  color: #66d9ef;
}
.signal-row span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}
.hero-collage {
  position: relative;
  min-height: 610px;
}
.hero-collage img {
  height: 610px;
  width: 100%;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: var(--shadow);
  filter: saturate(1.04) contrast(1.04);
}
.route-card {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: min(360px, calc(100% - 52px));
  padding: 24px;
  border-radius: 26px;
  background: rgba(247, 250, 249, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 26px 80px rgba(7, 18, 27, 0.22);
  backdrop-filter: blur(18px);
}
.route-card span {
  color: #e25f25;
  font-weight: 950;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.route-card b {
  display: block;
  margin: 6px 0 13px;
  font-size: 25px;
  letter-spacing: -0.04em;
}
.route-card ol {
  margin: 0;
  padding-left: 20px;
  color: #33424b;
  font-weight: 800;
}
.quickbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 84px;
}
.quickbar a {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  box-shadow: 0 14px 40px rgba(7, 18, 27, 0.06);
}
.quickbar b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: #e9f6f8;
  color: #087fa0;
}
.quickbar span {
  font-weight: 950;
}
.craft-map,
.proof-lab,
.area-band,
.request-zone,
.trust-zone,
.faq,
.contact {
  padding: 76px 0;
}
.section-head {
  margin-bottom: 28px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.4vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
  font-weight: 980;
}
.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
.compact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: 34px;
  align-items: end;
}
.compact .eyebrow {
  grid-column: 1/-1;
}
.craft-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.craft-grid article {
  min-height: 255px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #eef6f6);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(7, 18, 27, 0.08);
  transition:
    transform 0.22s ease,
    background 0.22s ease;
}
.craft-grid article:nth-child(odd) {
  background: linear-gradient(180deg, #08202e, #0e3a4d);
  color: #fff;
}
.craft-grid article:hover {
  transform: translateY(-6px);
}
.craft-grid span {
  font-size: 12px;
  letter-spacing: 0.13em;
  color: #ff7e27;
  font-weight: 950;
}
.craft-grid h3 {
  font-size: clamp(1.1rem, 1.4vw, 1.65rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.craft-grid p {
  margin: 0;
  color: inherit;
  opacity: 0.76;
  line-height: 1.55;
}
.split-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 38px;
  align-items: end;
}
.proof-lab {
  background: linear-gradient(
    180deg,
    rgba(8, 19, 28, 0.045),
    rgba(25, 167, 206, 0.06)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(8, 19, 28, 0.06);
}
.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.filter-row button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 950;
  cursor: pointer;
}
.filter-row button.active {
  background: #07121b;
  color: #fff;
}
.case-wall {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 360px;
  gap: 18px;
}
.ref-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.ref-card.wide {
  grid-row: span 2;
}
.ref-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ref-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.68);
}
.ref-card b {
  font-size: 12px;
  color: #d95822;
}
.ref-card h3 {
  margin: 6px 0;
  font-size: clamp(1.18rem, 1.5vw, 1.8rem);
  letter-spacing: -0.04em;
}
.ref-card p {
  margin: 0;
  color: #50606a;
}
.ref-card.is-hidden {
  display: none;
}
.area-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 28px;
  align-items: stretch;
}
.area-copy,
.area-map,
.request-info,
.request-form,
.trust-copy {
  border-radius: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(28px, 3.8vw, 54px);
}
.area-copy h2,
.request-info h2,
.trust-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.1vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
  font-weight: 980;
}
.area-copy p:not(.eyebrow),
.request-info p,
.trust-copy p {
  color: var(--muted);
  line-height: 1.65;
}
.area-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: linear-gradient(145deg, #07121b, #0e3347);
}
.area-map:before {
  content: "";
  position: absolute;
  inset: 34px;
  border-radius: 50%;
  border: 1px solid rgba(25, 167, 206, 0.4);
  box-shadow:
    0 0 0 56px rgba(25, 167, 206, 0.08),
    0 0 0 112px rgba(255, 126, 39, 0.06),
    0 0 0 168px rgba(255, 255, 255, 0.035);
}
.area-map span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: #ff7e27;
  color: #07121b;
  font-weight: 950;
}
.area-map i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-style: normal;
  padding: 10px 13px;
  border-radius: 999px;
  background: #fff;
  color: #07121b;
  font-weight: 950;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}
.request-zone {
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(520px, 1.17fr);
  gap: 26px;
  align-items: start;
}
.request-points {
  display: grid;
  gap: 11px;
  margin-top: 24px;
}
.request-points span {
  padding: 14px 16px;
  border-radius: 16px;
  background: #edf7f8;
  border: 1px solid rgba(25, 167, 206, 0.2);
  font-weight: 850;
}
.request-points span:before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 9px;
  margin-right: 10px;
  background: #19a7ce;
  color: #fff;
}
.request-form {
  display: grid;
  gap: 14px;
}
.form-row {
  display: grid;
  gap: 14px;
}
.form-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.form-row.three {
  grid-template-columns: 1fr 0.72fr 0.9fr;
}
label {
  display: grid;
  gap: 7px;
  font-weight: 950;
  font-size: 13px;
}
.field-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1.2;
}
.field-label em {
  font-style: normal;
  color: #b20b2a;
  margin: 0;
  display: inline-block;
  transform: translateY(-1px);
}
input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(8, 19, 28, 0.18);
  background: #f9fbfb;
  border-radius: 14px;
  padding: 14px 14px;
  outline: none;
  font: inherit;
}
textarea {
  resize: vertical;
}
input:focus,
textarea:focus,
select:focus {
  border-color: #19a7ce;
  box-shadow: 0 0 0 4px rgba(25, 167, 206, 0.15);
}
.form-note {
  margin: 0;
  color: #0f6676;
  font-weight: 850;
}
.trust-zone {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  gap: 28px;
  align-items: center;
}
.trust-photo {
  height: 560px;
  width: 100%;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.trust-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.trust-list div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: #f0f7f8;
  border: 1px solid rgba(25, 167, 206, 0.18);
}
.trust-list b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: #07121b;
  color: #ff7e27;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 14px 36px rgba(7, 18, 27, 0.06);
}
.faq summary {
  font-weight: 950;
  cursor: pointer;
}
.faq p {
  color: var(--muted);
  line-height: 1.55;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.contact-cards a {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 14px 38px rgba(7, 18, 27, 0.06);
}
.contact-cards span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #e9f6f8;
  color: #087fa0;
}
.contact-cards small {
  color: var(--muted);
}
.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 28px var(--side);
  border-top: 1px solid var(--line);
  color: #52616b;
  font-size: 13px;
}
.footer nav {
  display: flex;
  gap: 16px;
}
.footer a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 100;
  width: min(780px, calc(100% - 36px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 22px 70px rgba(7, 18, 27, 0.24);
  backdrop-filter: blur(14px);
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}
.cookie-banner div {
  display: flex;
  gap: 10px;
}
.picker {
  position: fixed;
  z-index: 120;
  background: #fff;
  border: 1px solid rgba(8, 19, 28, 0.16);
  border-radius: 20px;
  box-shadow: 0 26px 70px rgba(7, 18, 27, 0.26);
  padding: 14px;
  width: 306px;
}
.picker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.picker-head button,
.picker-grid button,
.time-grid button {
  border: 0;
  background: #edf7f8;
  border-radius: 12px;
  padding: 9px;
  cursor: pointer;
  font-weight: 900;
}
.picker-title {
  font-weight: 950;
}
.picker-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.picker-grid span {
  text-align: center;
  color: #777;
  font-size: 11px;
  font-weight: 900;
}
.picker-grid button.active,
.time-grid button.active {
  background: #19a7ce;
  color: #fff;
}
.picker-grid button:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}
.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  max-height: 230px;
  overflow: auto;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.1s;
}
.legal-main {
  padding: 70px 0;
}
.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(24px, 4vw, 56px);
  box-shadow: var(--shadow);
}
.legal-card h1 {
  font-size: clamp(2.2rem, 4.4vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}
.legal-card h2 {
  margin-top: 32px;
}
.legal-card p {
  color: #4f5d66;
}
.legal-card a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (min-width: 1600px) {
  :root {
    --side: clamp(70px, 5vw, 118px);
  }
}
@media (min-width: 1361px) and (max-width: 1599px) {
  :root {
    --side: clamp(58px, 5.2vw, 86px);
  }
}
@media (min-width: 1101px) and (max-width: 1360px) {
  :root {
    --side: clamp(42px, 5.5vw, 72px);
  }
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.92fr);
    gap: 34px;
  }
  .hero-panel-dark,
  .hero-collage,
  .hero-collage img {
    min-height: 520px;
    height: 520px;
  }
  .hero h1 {
    font-size: clamp(3rem, 5.6vw, 5.8rem);
  }
  .craft-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .case-wall {
    grid-auto-rows: 300px;
  }
  .section-head h2 {
    font-size: clamp(2.05rem, 3.8vw, 4.25rem);
  }
  .main-nav a {
    padding-inline: 8px;
  }
  .top-cta {
    padding-inline: 13px;
  }
}
@media (max-width: 1100px) {
  :root {
    --side: clamp(20px, 4.6vw, 52px);
  }
  .menu-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    left: var(--side);
    right: var(--side);
    top: 70px;
    display: none;
    grid-template-columns: 1fr;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  body.nav-open .main-nav {
    display: grid;
  }
  .top-cta {
    display: none;
  }
  .hero,
  .compact,
  .split-head,
  .area-band,
  .request-zone,
  .trust-zone {
    grid-template-columns: 1fr;
  }
  .hero-panel-dark {
    min-height: auto;
  }
  .hero-collage,
  .hero-collage img {
    min-height: 440px;
    height: 440px;
  }
  .quickbar,
  .faq-grid,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .craft-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 300px;
  }
  .ref-card.wide {
    grid-row: span 1;
  }
  .trust-photo {
    height: 420px;
  }
}
@media (max-width: 720px) {
  :root {
    --side: 18px;
  }
  .topbar {
    padding: 10px var(--side);
    grid-template-columns: auto auto;
  }
  .brand small {
    display: none;
  }
  .lang-switch {
    display: none;
  }
  .hero {
    padding-top: 36px;
  }
  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }
  .signal-row,
  .quickbar,
  .craft-grid,
  .case-wall,
  .faq-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .form-row.two,
  .form-row.three {
    grid-template-columns: 1fr;
  }
  .hero-collage,
  .hero-collage img {
    height: 360px;
    min-height: 360px;
    border-radius: 26px;
  }
  .route-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -54px;
  }
  .section-head h2,
  .area-copy h2,
  .request-info h2,
  .trust-copy h2 {
    font-size: clamp(2rem, 9.5vw, 3.2rem);
  }
  .craft-map,
  .proof-lab,
  .area-band,
  .request-zone,
  .trust-zone,
  .faq,
  .contact {
    padding: 54px 0;
  }
  .cookie-banner {
    grid-template-columns: 1fr;
  }
  .cookie-banner div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .picker {
    left: 18px !important;
    right: 18px !important;
    width: auto !important;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero h1,
.section-head h2,
.area-copy h2,
.request-info h2,
.trust-copy h2,
.legal-card h1 {
  max-width: none !important;
}
.hero h1 {
  font-size: clamp(2.75rem, 5.45vw, 6.95rem) !important;
  line-height: 0.88 !important;
  letter-spacing: -0.068em !important;
}
.section-head h2 {
  font-size: clamp(2.05rem, 3.85vw, 4.85rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.058em !important;
}
.area-copy h2,
.request-info h2,
.trust-copy h2 {
  font-size: clamp(2rem, 3.65vw, 4.55rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.058em !important;
}
.legal-card h1 {
  font-size: clamp(2rem, 3.85vw, 4.2rem) !important;
}
.route-card b {
  font-size: 23px;
}
.craft-grid h3,
.ref-card h3 {
  letter-spacing: -0.035em;
}
.hero-collage img,
.ref-card img,
.trust-photo {
  image-rendering: auto;
}
@media (min-width: 1101px) and (max-width: 1360px) {
  .hero h1 {
    font-size: clamp(2.6rem, 5vw, 5.15rem) !important;
  }
  .section-head h2 {
    font-size: clamp(1.95rem, 3.45vw, 3.85rem) !important;
  }
  .area-copy h2,
  .request-info h2,
  .trust-copy h2 {
    font-size: clamp(1.95rem, 3.35vw, 3.75rem) !important;
  }
}
@media (max-width: 720px) {
  .hero h1 {
    font-size: clamp(2.45rem, 12.2vw, 4.05rem) !important;
  }
  .section-head h2,
  .area-copy h2,
  .request-info h2,
  .trust-copy h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.9rem) !important;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero h1,
.section-head h2,
.area-copy h2,
.request-info h2,
.trust-copy h2,
.legal-card h1 {
  max-width: none !important;
  letter-spacing: -0.038em !important;
}
.eyebrow,
.route-card span,
.craft-grid span {
  letter-spacing: 0.085em !important;
}
.hero h1 {
  font-size: clamp(2.45rem, 4.95vw, 6.15rem) !important;
  line-height: 0.91 !important;
  letter-spacing: -0.046em !important;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.35vw, 4.25rem) !important;
  line-height: 0.99 !important;
  letter-spacing: -0.04em !important;
}
.area-copy h2,
.request-info h2,
.trust-copy h2 {
  font-size: clamp(1.9rem, 3.25vw, 4.05rem) !important;
  line-height: 0.99 !important;
  letter-spacing: -0.04em !important;
}
.legal-card h1 {
  font-size: clamp(1.9rem, 3.4vw, 3.75rem) !important;
  line-height: 1 !important;
  letter-spacing: -0.036em !important;
}
.craft-grid h3,
.ref-card h3,
.route-card b {
  letter-spacing: -0.026em !important;
}
.route-card b {
  font-size: 21px !important;
  line-height: 1.12 !important;
}

.area-map {
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(25, 167, 206, 0.22),
      transparent 31%
    ),
    linear-gradient(145deg, #07121b 0%, #0b2635 54%, #12384a 100%) !important;
  isolation: isolate;
}
.area-map:before {
  inset: 42px !important;
  border-radius: 42px !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow:
    inset 0 0 0 1px rgba(25, 167, 206, 0.16),
    0 0 0 54px rgba(25, 167, 206, 0.055),
    0 0 0 112px rgba(255, 126, 39, 0.04) !important;
}
.area-map:after {
  content: "";
  position: absolute;
  inset: 38px;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  border-radius: 38px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0 64%, transparent 86%);
}
.area-map .map-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  border-radius: 34px;
  background: linear-gradient(135deg, #ff8d35, #19a7ce);
  color: #07121b;
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}
.area-map .map-core strong {
  font-size: 16px;
  font-weight: 980;
  letter-spacing: -0.015em;
}
.area-map .map-core small {
  margin-top: -28px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  color: rgba(7, 18, 27, 0.72);
}
.area-map .map-chip {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  min-width: 158px;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(247, 250, 249, 0.92);
  color: #07121b;
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}
.area-map .map-chip strong {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  border-radius: 13px;
  background: #07121b;
  color: #fff;
  font-size: 14px;
  font-weight: 980;
}
.area-map .map-chip small {
  font-size: 11px;
  line-height: 1.22;
  font-weight: 850;
  color: #41515b;
}
.area-map .map-chip.service strong {
  min-width: auto;
  padding-inline: 10px;
  background: #ff7e27;
  color: #07121b;
}
.area-map span,
.area-map i {
  display: none !important;
}

@media (min-width: 1101px) and (max-width: 1360px) {
  .hero h1 {
    font-size: clamp(2.35rem, 4.3vw, 4.45rem) !important;
    letter-spacing: -0.04em !important;
  }
  .section-head h2 {
    font-size: clamp(1.8rem, 3.05vw, 3.35rem) !important;
    letter-spacing: -0.035em !important;
  }
  .area-copy h2,
  .request-info h2,
  .trust-copy h2 {
    font-size: clamp(1.8rem, 2.95vw, 3.2rem) !important;
    letter-spacing: -0.035em !important;
  }
  .area-map .map-chip {
    min-width: 138px;
    padding: 10px 12px;
  }
}
@media (max-width: 900px) {
  .area-map .map-chip {
    min-width: 132px;
  }
  .area-map .map-chip small {
    font-size: 10px;
  }
}
@media (max-width: 720px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .hero h1,
  .section-head h2,
  .area-copy h2,
  .request-info h2,
  .trust-copy h2 {
    letter-spacing: -0.032em !important;
  }
  .hero h1 {
    font-size: clamp(2.15rem, 10.6vw, 3.55rem) !important;
    line-height: 0.96 !important;
  }
  .section-head h2,
  .area-copy h2,
  .request-info h2,
  .trust-copy h2 {
    font-size: clamp(1.65rem, 7.3vw, 2.55rem) !important;
    line-height: 1.02 !important;
  }
  .area-map {
    min-height: 390px !important;
  }
  .area-map .map-core {
    width: 104px;
    height: 104px;
    border-radius: 28px;
  }
  .area-map .map-core small {
    margin-top: -22px;
  }
  .area-map .map-chip {
    min-width: 124px;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 9px 10px;
    text-align: center;
  }
  .area-map .map-chip strong {
    min-width: 0;
    width: 100%;
    height: 30px;
  }
}

.main-nav {
  gap: clamp(14px, 1.25vw, 28px) !important;
}
.main-nav a {
  font-size: 0.94rem !important;
  font-weight: 760 !important;
  letter-spacing: -0.01em !important;
  padding: 10px 6px !important;
}
.top-cta {
  font-size: 0.94rem !important;
  font-weight: 850 !important;
  letter-spacing: -0.012em !important;
  padding: 11px 15px !important;
}
.brand {
  cursor: pointer;
}
.request-form label {
  gap: 9px !important;
}
.field-label {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 4px !important;
  line-height: 1.15 !important;
  width: auto !important;
}
.field-label span {
  display: inline !important;
}
.field-label em {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  font-style: normal !important;
  line-height: 1 !important;
  color: #b20b2a !important;
  font-weight: 950 !important;
}
.hero h1 {
  font-size: clamp(2.15rem, 4.35vw, 5.35rem) !important;
  line-height: 0.94 !important;
  letter-spacing: -0.042em !important;
}
.section-head h2,
.area-copy h2,
.request-info h2,
.trust-copy h2 {
  font-size: clamp(1.85rem, 3.25vw, 4.15rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.035em !important;
}
.legal-card h1 {
  font-size: clamp(1.8rem, 3.05vw, 3.45rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.03em !important;
}
.ref-card h3,
.craft-grid h3 {
  font-size: clamp(1.02rem, 1.2vw, 1.42rem) !important;
  letter-spacing: -0.025em !important;
}
.route-card b {
  font-size: clamp(1.12rem, 1.35vw, 1.45rem) !important;
  letter-spacing: -0.025em !important;
}
.contact-title,
.contact h2 {
  letter-spacing: -0.035em !important;
}
@media (min-width: 1101px) and (max-width: 1360px) {
  .main-nav a {
    font-size: 0.9rem !important;
    padding-inline: 4px !important;
  }
  .top-cta {
    font-size: 0.9rem !important;
    padding-inline: 13px !important;
  }
  .hero h1 {
    font-size: clamp(2.05rem, 4.05vw, 4.25rem) !important;
  }
  .section-head h2,
  .area-copy h2,
  .request-info h2,
  .trust-copy h2 {
    font-size: clamp(1.75rem, 3.05vw, 3.35rem) !important;
  }
}
@media (max-width: 1100px) {
  .main-nav a {
    font-size: 0.95rem !important;
    padding: 12px 14px !important;
  }
  .hero h1 {
    font-size: clamp(2rem, 7.4vw, 4rem) !important;
  }
  .section-head h2,
  .area-copy h2,
  .request-info h2,
  .trust-copy h2 {
    font-size: clamp(1.75rem, 5.4vw, 3.2rem) !important;
  }
}
@media (max-width: 720px) {
  .hero h1 {
    font-size: clamp(2rem, 10vw, 3.25rem) !important;
    line-height: 1 !important;
  }
  .section-head h2,
  .area-copy h2,
  .request-info h2,
  .trust-copy h2 {
    font-size: clamp(1.65rem, 8.3vw, 2.85rem) !important;
    line-height: 1.02 !important;
  }
  .field-label {
    gap: 3px !important;
  }
}

.hero h1 {
  font-size: clamp(2rem, 3.9vw, 4.85rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.04em !important;
}
@media (min-width: 1101px) and (max-width: 1360px) {
  .hero h1 {
    font-size: clamp(1.95rem, 3.75vw, 3.95rem) !important;
  }
}
@media (max-width: 1100px) {
  .hero h1 {
    font-size: clamp(1.95rem, 7vw, 3.75rem) !important;
  }
}
@media (max-width: 720px) {
  .hero h1 {
    font-size: clamp(1.9rem, 9.4vw, 3.05rem) !important;
    line-height: 1 !important;
  }
}

.case-wall {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-auto-rows: 278px !important;
  gap: 16px !important;
  align-items: stretch !important;
}
.ref-card,
.ref-card.wide {
  grid-row: span 1 !important;
  min-height: 0 !important;
  height: 100% !important;
}
.ref-card {
  border-radius: 26px !important;
}
.ref-card img {
  height: 100% !important;
  object-fit: cover !important;
}
.ref-card div {
  left: 14px !important;
  right: 14px !important;
  bottom: 14px !important;
  padding: 15px 16px !important;
  border-radius: 18px !important;
}
.ref-card b {
  display: block;
  font-size: 11px !important;
  letter-spacing: 0.02em !important;
}
.ref-card h3 {
  margin: 5px 0 4px !important;
  font-size: clamp(1rem, 1.08vw, 1.28rem) !important;
  line-height: 1.08 !important;
}
.ref-card p {
  font-size: 0.92rem !important;
  line-height: 1.42 !important;
}
@media (max-width: 1100px) {
  .case-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-rows: 270px !important;
  }
}
@media (max-width: 720px) {
  .case-wall {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 250px !important;
    gap: 14px !important;
  }
  .ref-card div {
    padding: 14px !important;
  }
}


/* x25.website order sidebar ------------------------------------------------ */
.x25-order-sidebar {
  position: fixed !important;
  right: 18px !important;
  top: 50% !important;
  z-index: 2147483647 !important;
  width: min(264px, calc(100vw - 36px));
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 20px 20px 18px 20px;
  border: 1px solid rgba(150, 198, 231, 0.22);
  border-radius: 26px;
  background: linear-gradient(180deg, #16344c 0%, #102b41 100%);
  color: #ffffff !important;
  text-decoration: none !important;
  text-align: left;
  box-shadow: 0 24px 56px rgba(5, 16, 29, 0.34);
  isolation: isolate;
  overflow: hidden;
  transform: translateY(-50%);
  line-height: 1;
  transition: opacity 180ms ease, transform 180ms ease;
}

.x25-order-sidebar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 255, 255, 0.07), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  pointer-events: none;
}

.x25-order-sidebar::after,
.x25-order-sidebar-mobile-trigger::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #67d8ea 0%, #4f9fff 100%);
  pointer-events: none;
}

.x25-order-sidebar__drag,
.x25-order-sidebar__close {
  display: none;
}

.x25-order-sidebar__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin: 0;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(103, 216, 234, 0.12);
  border: 1px solid rgba(103, 216, 234, 0.18);
  font-size: 0.645rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(233, 248, 255, 0.97);
  white-space: nowrap;
}

.x25-order-sidebar__title {
  display: block;
  margin: 0;
  max-width: 100%;
  font-size: clamp(1.18rem, 1.2vw, 1.3rem);
  font-weight: 860;
  line-height: 1.14;
  letter-spacing: -0.018em;
  color: #ffffff;
  text-wrap: balance;
}

.x25-order-sidebar__text {
  display: block;
  margin: -1px 0 0;
  font-size: 0.905rem;
  font-weight: 520;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: rgba(238, 246, 255, 0.88);
}

.x25-order-sidebar__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  margin: 2px 0 0;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #61e0e6, #4da9ff);
  color: #08263d;
  font-size: 0.93rem;
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
  white-space: nowrap;
}

.x25-order-sidebar__button::after {
  content: "→";
  font-size: 0.98em;
  line-height: 1;
}

.x25-order-sidebar__note {
  display: block;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: -0.004em;
  color: rgba(214, 229, 241, 0.82);
}

.x25-order-sidebar-mobile-trigger {
  display: none;
}

.x25-order-sidebar:hover,
.x25-order-sidebar:focus-visible,
.x25-order-sidebar:active,
.x25-order-sidebar:visited {
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-50%);
  box-shadow: 0 24px 56px rgba(5, 16, 29, 0.34);
}

.x25-order-sidebar:focus-visible {
  outline: 3px solid rgba(97, 224, 230, 0.42);
  outline-offset: 4px;
}

@media (max-width: 1240px) {
  .x25-order-sidebar {
    right: 0 !important;
    width: 86px;
    min-height: 274px;
    padding: 28px 12px 18px 14px;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 24px 0 0 24px;
    text-align: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }

  .x25-order-sidebar__eyebrow,
  .x25-order-sidebar__text,
  .x25-order-sidebar__note,
  .x25-order-sidebar__close,
  .x25-order-sidebar__drag {
    display: none;
  }

  .x25-order-sidebar__title,
  .x25-order-sidebar__button {
    width: auto;
    max-width: none;
    margin: 0;
    line-height: 1;
  }

  .x25-order-sidebar__title {
    font-size: 0.92rem;
    letter-spacing: -0.01em;
    text-wrap: nowrap;
  }

  .x25-order-sidebar__button {
    min-height: auto;
    padding: 10px 9px;
    font-size: 0.82rem;
  }

  .x25-order-sidebar__button::after {
    content: "";
  }
}

@media (max-width: 720px) {
  .x25-order-sidebar {
    display: none !important;
  }

  .x25-order-sidebar-mobile-trigger {
    position: fixed !important;
    right: 0 !important;
    top: 50% !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 2147483647 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    min-height: 134px;
    padding: 16px 8px 14px 11px;
    border: 1px solid rgba(150, 198, 231, 0.22);
    border-right: 0;
    border-radius: 20px 0 0 20px;
    background: linear-gradient(180deg, #16344c 0%, #102b41 100%);
    color: #ffffff !important;
    text-decoration: none !important;
    box-shadow: 0 22px 46px rgba(5, 16, 29, 0.28);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.82rem;
    font-weight: 850;
    line-height: 1;
    letter-spacing: -0.01em;
    transform: translateY(-50%) !important;
    overflow: hidden;
  }

  .x25-order-sidebar-mobile-trigger.is-visible,
  .x25-order-sidebar-mobile-trigger.is-hidden {
    display: inline-flex !important;
  }
}

/* x25.website order sidebar drag behaviour --------------------------------- */
.x25-order-sidebar {
  cursor: grab;
  touch-action: none;
}

@media (max-width: 720px) {
  .x25-order-sidebar {
    cursor: pointer;
    touch-action: auto;
  }
}


.x25-order-sidebar.is-dragging {
  cursor: grabbing;
  -webkit-user-select: none;
  user-select: none;
}

/* v60 mobile CTA: always visible while scrolling */
@media (max-width: 720px) {
  .x25-order-sidebar-mobile-trigger,
  .x25-order-sidebar-mobile-trigger.is-visible,
  .x25-order-sidebar-mobile-trigger.is-hidden {
    position: fixed !important;
    right: 0 !important;
    left: auto !important;
    top: 50% !important;
    bottom: auto !important;
    z-index: 2147483647 !important;
    display: inline-flex !important;
    transform: translateY(-50%) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}


/* x25 mobile header and language fix 2026-05-25 */
.top-actions {
  justify-self: end;
}
.mobile-lang-switch {
  display: none;
}
@media (max-width: 1100px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .brand {
    min-width: 0;
  }
  .top-actions {
    justify-self: end;
  }
  .main-nav {
    left: max(18px, env(safe-area-inset-left));
    right: max(18px, env(safe-area-inset-right));
    top: 72px;
  }
  .mobile-lang-switch {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 12px 12px;
    margin-top: 6px;
    border-top: 1px solid rgba(8, 19, 28, 0.10);
  }
  .mobile-lang-switch button {
    min-height: 40px;
    border: 1px solid rgba(8, 19, 28, 0.10);
    border-radius: 999px;
    background: #f7faf9;
    color: #10222d;
    font-weight: 900;
    font-size: 12px;
    cursor: pointer;
  }
  .mobile-lang-switch button.active {
    background: #07121b;
    color: #fff;
    border-color: #07121b;
  }
}
@media (max-width: 720px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 12px;
    padding: 10px 18px !important;
  }
  .brand {
    min-width: 0 !important;
  }
  .brand strong {
    white-space: nowrap;
  }
  .top-actions {
    justify-self: end !important;
    margin-left: auto;
  }
  .menu-toggle {
    flex: 0 0 42px;
  }
  .main-nav {
    left: 18px !important;
    right: 18px !important;
    top: 72px !important;
  }
}

/* x25 spacing clean-up 2026-06-07 ---------------------------------------- */
:root {
  --section-space: clamp(54px, 5.2vw, 78px);
  --section-space-tight: clamp(42px, 4.2vw, 62px);
  --section-head-space: clamp(20px, 2.2vw, 30px);
}

.hero.section-shell {
  padding-top: clamp(28px, 3.2vw, 54px) !important;
  padding-bottom: clamp(42px, 4.6vw, 64px) !important;
}

.quickbar.section-shell {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.craft-map,
.proof-lab,
.area-band,
.request-zone,
.trust-zone,
.faq,
.contact {
  padding-top: var(--section-space) !important;
  padding-bottom: var(--section-space) !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.section-head {
  margin-top: 0 !important;
  margin-bottom: var(--section-head-space) !important;
}

.section-head > *:first-child,
.area-copy > *:first-child,
.request-info > *:first-child,
.trust-copy > *:first-child,
.request-form > *:first-child,
.legal-card > *:first-child {
  margin-top: 0 !important;
}

.section-head > *:last-child,
.area-copy > *:last-child,
.request-info > *:last-child,
.trust-copy > *:last-child,
.request-form > *:last-child,
.legal-card > *:last-child {
  margin-bottom: 0 !important;
}

.compact,
.split-head,
.area-band,
.request-zone,
.trust-zone,
.faq-grid,
.contact-cards,
.craft-grid,
.case-wall {
  row-gap: clamp(16px, 2.4vw, 32px) !important;
}

.eyebrow {
  margin-top: 0 !important;
  margin-bottom: 12px !important;
}

.lead {
  margin-top: clamp(16px, 1.8vw, 22px) !important;
}

.hero-actions {
  margin-top: clamp(22px, 2.3vw, 30px) !important;
}

.signal-row {
  margin-top: clamp(22px, 2.4vw, 32px) !important;
}

.request-points,
.trust-list {
  margin-top: clamp(18px, 2vw, 24px) !important;
}

@media (max-width: 1100px) {
  :root {
    --section-space: clamp(46px, 6vw, 64px);
  }

  .hero.section-shell {
    padding-top: clamp(24px, 4.5vw, 38px) !important;
    padding-bottom: clamp(38px, 5.8vw, 54px) !important;
  }
}

@media (max-width: 720px) {
  :root {
    --section-space: 46px;
    --section-head-space: 20px;
  }

  .hero.section-shell {
    padding-top: 24px !important;
    padding-bottom: 40px !important;
  }

  .craft-map,
  .proof-lab,
  .area-band,
  .request-zone,
  .trust-zone,
  .faq,
  .contact {
    padding-top: var(--section-space) !important;
    padding-bottom: var(--section-space) !important;
  }
}
