:root {
  color-scheme: dark;
  --ink: #f8fbff;
  --ink-soft: #d5deec;
  --muted: #97a6ba;
  --blue: #4f8df7;
  --blue-bright: #63a0ff;
  --blue-deep: #10233c;
  --panel: rgba(9, 14, 20, 0.68);
  --panel-strong: rgba(8, 12, 18, 0.86);
  --line: rgba(188, 211, 242, 0.34);
  --line-soft: rgba(188, 211, 242, 0.18);
  --white: #ffffff;
  --dark: #02070d;
  --radius: 8px;
  --container: min(1471px, calc(100vw - 64px));
  --content: min(1260px, calc(100vw - 128px));
  --shadow-blue: 0 22px 48px rgba(43, 120, 255, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--dark);
  color: var(--ink);
  font-family:
    Montserrat, Avenir Next, Avenir, Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.is-booking-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

[hidden] {
  display: none !important;
}

section {
  scroll-margin-top: 112px;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100000;
  padding: 10px 14px;
  border-radius: 4px;
  background: #fff;
  color: #07111b;
  font-weight: 850;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-columns: 230px 1fr 230px auto auto;
  align-items: start;
  gap: 18px;
  width: 100%;
  min-height: 98px;
  padding: 16px max(54px, calc((100vw - 1320px) / 2));
  color: var(--white);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-solid {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(1, 7, 13, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: block;
  width: 218px;
}

.brand img {
  width: 205px;
  height: auto;
  object-fit: contain;
  object-position: left top;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 72px;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1rem;
  font-weight: 850;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
  content: "";
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 14px;
  padding: 0 28px;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #4d8df3, #3b75d5);
  color: var(--white);
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 850;
  text-align: center;
  white-space: nowrap;
  box-shadow: var(--shadow-blue);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: linear-gradient(135deg, #5b9bff, #477fe0);
  box-shadow: 0 24px 54px rgba(43, 120, 255, 0.36);
  transform: translateY(-1px);
}

.nav-booking {
  display: none;
}

.language-switcher {
  position: relative;
  margin-top: 14px;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 76px;
  min-height: 50px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.language-toggle svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-toggle:hover,
.language-toggle:focus-visible,
.language-switcher.is-open .language-toggle {
  border-color: rgba(99, 160, 255, 0.72);
  background: rgba(79, 141, 247, 0.16);
  transform: translateY(-1px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 70;
  display: grid;
  min-width: 190px;
  padding: 8px;
  border: 1px solid rgba(177, 209, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(3, 9, 15, 0.98);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.language-menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 10px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 760;
  text-align: left;
}

.language-menu button:hover,
.language-menu button:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.language-menu button[aria-checked="true"] {
  background: rgba(79, 141, 247, 0.18);
  color: var(--white);
}

.language-menu button[aria-checked="true"]::after {
  color: var(--blue-bright);
  content: "✓";
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero-section {
  position: relative;
  min-height: 764px;
  overflow: hidden;
  background: #02070d;
}

.hero-section::after,
.details-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.54), transparent 80%);
  content: "";
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.92;
  pointer-events: none;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 54%, rgba(28, 101, 206, 0.14), transparent 22%),
    linear-gradient(90deg, rgba(2, 7, 13, 0.94) 0%, rgba(2, 7, 13, 0.76) 36%, rgba(2, 7, 13, 0.36) 64%, rgba(2, 7, 13, 0.9) 100%),
    linear-gradient(180deg, rgba(2, 7, 13, 0.14) 0%, rgba(2, 7, 13, 0.32) 62%, rgba(5, 18, 32, 0.98) 100%);
  content: "";
}

.hero-bg picture,
.hero-bg img {
  width: 100%;
  height: 100%;
}

.hero-bg picture {
  display: block;
}

.hero-bg img {
  object-fit: cover;
  object-position: center;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 520px);
  align-items: start;
  gap: 42px;
  width: 100%;
  min-height: 764px;
  margin: 0;
  padding-top: 98px;
  padding-right: max(25px, calc((100% - 1471px) / 2));
  padding-bottom: 42px;
  padding-left: max(25px, calc((100% - 1471px) / 2));
}

.hero-copy {
  min-width: 0;
  padding-top: 78px;
  padding-left: 64px;
}

.hero-copy h1 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3.35rem, 3.85vw, 4.25rem);
  font-weight: 900;
  line-height: 0.98;
}

.hero-copy h1 span,
.hero-copy h1 strong {
  display: block;
}

.hero-copy h1 strong {
  margin-top: 20px;
  color: var(--blue);
  font-weight: 900;
}

.hero-copy p {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
  line-height: 1.45;
}

.hero-contact {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  max-width: 620px;
  margin-top: 26px;
  padding: 14px;
  border: 1px solid rgba(177, 209, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(79, 141, 247, 0.12), transparent 58%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.hero-contact img {
  width: 76px;
  height: 90px;
  border: 1px solid rgba(177, 209, 255, 0.18);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: 50% 18%;
}

.hero-contact strong {
  display: block;
  color: var(--white);
  font-size: 1.02rem;
  line-height: 1.12;
}

.hero-contact span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}

.hero-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.hero-contact-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(177, 209, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.052);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 820;
}

.hero-contact-actions a:first-child {
  border-color: rgba(79, 141, 247, 0.64);
  background: rgba(79, 141, 247, 0.16);
  color: var(--white);
}

.hero-contact-actions a:hover,
.hero-contact-actions a:focus-visible {
  border-color: rgba(99, 160, 255, 0.7);
  color: var(--white);
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 860px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 560;
}

.proof-list svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-anchor {
  min-width: 0;
  scroll-margin-top: 112px;
}

.lead-form {
  min-width: 0;
  padding: 18px 30px 18px;
  border: 1px solid rgba(220, 234, 255, 0.46);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(12, 18, 26, 0.82), rgba(9, 14, 20, 0.68)),
    rgba(6, 10, 15, 0.74);
  color: var(--white);
  box-shadow:
    0 22px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.form-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.form-title svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-title h2 {
  margin: 0;
  color: var(--blue);
  font-size: 1.24rem;
  font-weight: 900;
  line-height: 1.12;
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0 12px;
  padding: 0;
  list-style: none;
}

.form-progress li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(188, 211, 242, 0.16);
  color: rgba(213, 222, 236, 0.58);
  font-size: 0.72rem;
  font-weight: 760;
}

.form-progress li[aria-current="step"] {
  border-color: var(--blue);
  color: var(--white);
}

.form-progress li span {
  display: inline-grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.68rem;
}

.form-step[data-form-step="2"] {
  display: none;
}

.lead-form.is-progressive .form-step.is-active {
  display: block;
}

.lead-form.is-progressive .form-step:not(.is-active) {
  display: none;
}

.form-step-intro {
  margin: 0 0 8px;
  color: rgba(213, 222, 236, 0.7);
  font-size: 0.76rem;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: grid;
  gap: 4px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.82rem;
  font-weight: 780;
}

.form-grid {
  display: grid;
  gap: 7px 10px;
  margin-top: 6px;
}

.form-grid label {
  margin-top: 0;
}

.form-grid-2 {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.form-grid-address {
  grid-template-columns: minmax(88px, 0.72fr) minmax(0, 1fr) minmax(0, 1fr);
}

.company-field {
  transition:
    opacity 150ms ease,
    transform 150ms ease;
}

.customer-type,
.address-fields,
.intervention-mode {
  display: grid;
  gap: 7px;
  margin: 8px 0 0;
  padding: 0;
  border: 0;
}

.customer-type legend,
.address-fields legend,
.intervention-mode legend {
  padding: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.82rem;
  font-weight: 780;
}

.customer-type {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.customer-type legend {
  grid-column: 1 / -1;
}

.customer-type label {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  margin: 0;
  padding: 7px 9px;
  border: 1px solid rgba(218, 231, 249, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.026);
  cursor: pointer;
  transition:
    border-color 150ms ease,
    background 150ms ease,
    box-shadow 150ms ease;
}

.customer-type label:has(input:checked) {
  border-color: rgba(79, 141, 247, 0.76);
  background: rgba(79, 141, 247, 0.14);
  box-shadow: inset 0 0 0 1px rgba(79, 141, 247, 0.18);
}

.customer-type input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--blue);
}

.customer-type span {
  min-width: 0;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 780;
}

.customer-type small {
  color: rgba(151, 191, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 880;
}

label small {
  color: rgba(213, 222, 236, 0.58);
  font-size: 0.68rem;
  font-weight: 620;
}

.intervention-mode {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.intervention-mode legend {
  grid-column: 1 / -1;
}

.intervention-mode label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin: 0;
  padding: 6px 8px;
  border: 1px solid rgba(218, 231, 249, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.026);
  cursor: pointer;
  text-align: center;
}

.intervention-mode label:has(input:checked) {
  border-color: rgba(79, 141, 247, 0.76);
  background: rgba(79, 141, 247, 0.14);
}

.intervention-mode input {
  position: absolute;
  width: 1px;
  min-height: 1px;
  opacity: 0;
}

.address-fields {
  margin-top: 10px;
  padding: 10px;
  border: 1px solid rgba(188, 211, 242, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.address-fields > p {
  margin: 0;
  color: rgba(213, 222, 236, 0.62);
  font-size: 0.7rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(218, 231, 249, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  color: var(--white);
  outline: none;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

input,
select {
  min-height: 32px;
  padding: 0 10px;
  font-size: 0.79rem;
}

textarea {
  min-height: 50px;
  padding: 10px;
  resize: vertical;
  font-size: 0.79rem;
}

input::placeholder,
textarea::placeholder {
  color: rgba(216, 226, 240, 0.56);
}

select {
  color: rgba(255, 255, 255, 0.74);
}

select option {
  background: #0b1119;
  color: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(79, 141, 247, 0.94);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 0 3px rgba(79, 141, 247, 0.16);
}

.was-validated input:invalid,
.was-validated select:invalid,
.was-validated textarea:invalid,
.was-validated .consent-line input:invalid {
  border-color: rgba(255, 112, 112, 0.76);
}

.consent-line {
  grid-template-columns: 16px 1fr;
  align-items: start;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 520;
  line-height: 1.3;
}

.consent-line input {
  width: 16px;
  min-height: 16px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.consent-line a {
  color: #99c2ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-result {
  margin-top: 10px;
  padding: 10px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  line-height: 1.42;
}

.form-result.is-success {
  border: 1px solid rgba(102, 210, 146, 0.38);
  background: rgba(48, 135, 80, 0.16);
  color: #d8f8e2;
}

.form-result.is-error {
  border: 1px solid rgba(255, 120, 120, 0.4);
  background: rgba(170, 46, 46, 0.18);
  color: #ffdede;
}

.form-result strong {
  display: block;
  margin-bottom: 4px;
}

.form-result a {
  color: #99c2ff;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  min-height: 40px;
  margin-top: 10px;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #4f92ff, #3476db);
  color: var(--white);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 760;
  box-shadow: var(--shadow-blue);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    opacity 160ms ease;
}

.submit-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.submit-button:hover,
.submit-button:focus-visible {
  box-shadow: 0 22px 50px rgba(43, 120, 255, 0.38);
  transform: translateY(-1px);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.74;
  transform: none;
}

.form-next,
.form-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 12px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
}

.form-next {
  gap: 12px;
  width: 100%;
  border: 0;
  background: linear-gradient(135deg, #4f92ff, #3476db);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.form-next svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-back {
  min-width: 112px;
  border: 1px solid rgba(188, 211, 242, 0.26);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.88);
}

.form-actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: end;
}

.form-actions .submit-button {
  margin-top: 10px;
}

.form-step.was-validated-step input:invalid,
.form-step.was-validated-step select:invalid,
.form-step.was-validated-step textarea:invalid,
.form-step.was-validated-step .consent-line input:invalid {
  border-color: rgba(255, 112, 112, 0.76);
}

.local-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1fr);
  gap: 46px;
  align-items: center;
  padding: 58px max(32px, calc((100vw - 1260px) / 2));
  border-top: 1px solid rgba(98, 156, 255, 0.22);
  border-bottom: 1px solid rgba(98, 156, 255, 0.16);
  background:
    radial-gradient(circle at 12% 0%, rgba(79, 141, 247, 0.18), transparent 30%),
    linear-gradient(180deg, #05111d 0%, #061a2e 100%);
}

.local-heading span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.local-heading h2 {
  max-width: 620px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.04;
}

.local-heading p {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.local-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(177, 209, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.024)),
    rgba(8, 15, 23, 0.72);
}

.local-grid strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.16;
}

.local-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.87rem;
  line-height: 1.42;
}

.needs-section {
  position: relative;
  z-index: 2;
  padding: 28px 0 36px;
  border-top: 1px solid rgba(98, 156, 255, 0.28);
  background:
    radial-gradient(circle at 50% 0%, rgba(55, 137, 255, 0.28), transparent 42%),
    linear-gradient(180deg, #061a2e 0%, #05111d 100%);
  box-shadow: 0 -18px 60px rgba(13, 76, 150, 0.24);
}

.needs-section h2 {
  margin: 0 0 20px;
  color: var(--white);
  font-size: clamp(1.55rem, 2.2vw, 1.9rem);
  line-height: 1.1;
  text-align: center;
}

.needs-section h2::after {
  display: block;
  width: 44px;
  height: 2px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: var(--blue);
  content: "";
}

.needs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: min(1260px, calc(100vw - 128px));
  margin: 0 auto;
}

.needs-grid button {
  display: grid;
  justify-items: center;
  min-height: 150px;
  padding: 22px 18px;
  border: 1px solid rgba(177, 209, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
  text-align: center;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.needs-grid button:hover,
.needs-grid button:focus-visible,
.needs-grid button.is-selected {
  border-color: rgba(79, 141, 247, 0.88);
  background: rgba(79, 141, 247, 0.1);
  box-shadow: 0 18px 38px rgba(15, 89, 190, 0.22);
  transform: translateY(-2px);
}

.needs-grid svg {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.needs-grid strong {
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.12;
}

.needs-grid span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.35;
}

.service-links-section {
  padding: 68px max(32px, calc((100vw - 1260px) / 2));
  border-top: 1px solid rgba(188, 211, 242, 0.12);
  background: #060d15;
}

.service-links-section .section-heading {
  width: 100%;
}

.service-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
  border-top: 1px solid rgba(188, 211, 242, 0.2);
  border-bottom: 1px solid rgba(188, 211, 242, 0.2);
}

.service-links-grid a {
  display: block;
  min-width: 0;
  padding: 26px 22px;
  border-right: 1px solid rgba(188, 211, 242, 0.2);
  transition: background 160ms ease;
}

.service-links-grid a:last-child {
  border-right: 0;
}

.service-links-grid a:hover,
.service-links-grid a:focus-visible {
  background: rgba(79, 141, 247, 0.1);
}

.service-links-grid span,
.service-links-grid strong,
.service-links-grid small {
  display: block;
}

.service-links-grid span {
  color: #63a0ff;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-links-grid strong {
  margin-top: 12px;
  color: #fff;
  font-size: 1rem;
}

.service-links-grid small {
  margin-top: 8px;
  color: rgba(213, 222, 236, 0.66);
  font-size: 0.8rem;
}

.possibilities-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1fr);
  gap: 46px;
  align-items: start;
  padding: 76px max(32px, calc((100vw - 1260px) / 2));
  border-top: 1px solid rgba(98, 156, 255, 0.16);
  background:
    radial-gradient(circle at 18% 20%, rgba(79, 141, 247, 0.14), transparent 30%),
    linear-gradient(180deg, #05111d 0%, #02070d 100%);
}

.possibilities-copy span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--blue-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.possibilities-copy h2 {
  max-width: 650px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  line-height: 1.04;
}

.possibilities-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.possibilities-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.possibilities-grid article {
  min-height: 188px;
  padding: 24px;
  border: 1px solid rgba(177, 209, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.024)),
    rgba(8, 15, 23, 0.82);
}

.possibilities-grid span {
  display: inline-block;
  color: var(--blue-bright);
  font-size: 0.76rem;
  font-weight: 900;
}

.possibilities-grid h3 {
  margin: 16px 0 0;
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.18;
}

.possibilities-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.62fr);
  gap: 54px;
  align-items: end;
  width: var(--content);
  margin: 0 auto 34px;
}

.section-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.04;
}

.section-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.scope-section {
  padding: 76px 0;
  border-top: 1px solid rgba(98, 156, 255, 0.16);
  background:
    radial-gradient(circle at 84% 8%, rgba(79, 141, 247, 0.12), transparent 26%),
    linear-gradient(180deg, #02070d 0%, #071320 100%);
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: var(--content);
  margin: 0 auto;
}

.scope-grid article {
  min-height: 248px;
  padding: 26px;
  border: 1px solid rgba(177, 209, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(8, 15, 23, 0.82);
}

.scope-grid svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scope-grid h3 {
  margin: 24px 0 0;
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.18;
}

.scope-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.details-section {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(79, 141, 247, 0.13), transparent 28%),
    linear-gradient(135deg, #02070d 0%, #0b121c 100%);
}

.details-copy,
.details-grid {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 0 auto;
}

.details-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 0.7fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 32px;
}

.details-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 3.3vw, 3.3rem);
  line-height: 1.03;
}

.details-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.details-grid article {
  padding: 24px;
  border: 1px solid rgba(177, 209, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.details-grid span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 950;
}

.details-grid h3 {
  margin: 18px 0 0;
  color: var(--white);
  font-size: 1.12rem;
}

.details-grid p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.assurance-section {
  padding: 76px 0;
  background:
    radial-gradient(circle at 18% 100%, rgba(79, 141, 247, 0.12), transparent 30%),
    linear-gradient(180deg, #071320 0%, #02070d 100%);
}

.assurance-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 0.62fr);
  gap: 48px;
  align-items: start;
  width: var(--content);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(177, 209, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(79, 141, 247, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.04);
}

.assurance-panel h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.04;
}

.assurance-panel p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.consultant-proof {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 16px;
  max-width: 520px;
  margin-top: 26px;
  padding: 14px;
  border: 1px solid rgba(177, 209, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(79, 141, 247, 0.12), transparent 58%),
    rgba(255, 255, 255, 0.045);
}

.consultant-proof img {
  width: 72px;
  height: 82px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: 50% 18%;
  filter: saturate(0.98) contrast(1.02);
}

.consultant-proof strong {
  display: block;
  color: var(--white);
  font-size: 0.98rem;
}

.consultant-proof span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
  line-height: 1.4;
}

.assurance-panel ul {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.assurance-panel li {
  padding-left: 18px;
  border-left: 2px solid var(--blue);
}

.assurance-panel strong {
  display: block;
  color: var(--white);
  font-size: 0.98rem;
}

.assurance-panel span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.trust-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 76px max(32px, calc((100vw - 1260px) / 2));
  border-top: 1px solid rgba(188, 211, 242, 0.14);
  border-bottom: 1px solid rgba(188, 211, 242, 0.14);
  background:
    radial-gradient(circle at 82% 14%, rgba(79, 141, 247, 0.13), transparent 26%),
    radial-gradient(circle at 16% 100%, rgba(28, 101, 206, 0.09), transparent 28%),
    linear-gradient(180deg, #02070d 0%, #071320 52%, #02070d 100%);
  color: var(--ink);
}

.trust-section::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 88%);
  content: "";
}

.trust-section > * {
  position: relative;
  z-index: 1;
}

.trust-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 18px 48px;
  align-items: end;
}

.trust-heading > span {
  grid-column: 1 / -1;
  color: var(--blue-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-heading h2 {
  margin: 0;
  max-width: 620px;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.06;
}

.trust-heading p {
  margin: 0;
  max-width: 620px;
  color: rgba(213, 226, 239, 0.74);
  font-size: 1rem;
}

.trust-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 46px;
  border-top: 1px solid rgba(188, 211, 242, 0.2);
  border-bottom: 1px solid rgba(188, 211, 242, 0.2);
}

.trust-facts article {
  min-width: 0;
  padding: 28px 24px;
  border-right: 1px solid rgba(188, 211, 242, 0.2);
}

.trust-facts article:first-child {
  padding-left: 0;
}

.trust-facts article:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-facts span {
  display: block;
  color: #89a8c7;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.trust-facts strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 1.05rem;
}

.trust-facts p,
.trust-facts a {
  display: block;
  margin: 8px 0 0;
  color: rgba(213, 226, 239, 0.7);
  font-size: 0.82rem;
}

.trust-facts a {
  width: fit-content;
  color: var(--blue-bright);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.trust-commitment {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  gap: 42px;
  margin-top: 36px;
  padding: 28px 0 0;
}

.trust-commitment h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.25rem;
}

.trust-commitment ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-commitment li {
  position: relative;
  padding-left: 24px;
  color: rgba(213, 226, 239, 0.76);
  font-size: 0.9rem;
}

.trust-commitment li::before {
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #49c9a2;
  content: "";
}

.faq-section {
  padding: 76px 0;
  background: #02070d;
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(980px, calc(100vw - 64px));
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid rgba(177, 209, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 0 22px;
  color: var(--white);
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
  transition: transform 160ms ease;
  content: "";
}

.faq-list details[open] summary::after {
  transform: rotate(225deg);
}

.faq-list p {
  margin: -2px 22px 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  width: var(--content);
  margin: 0 auto;
  padding: 60px 0;
}

.contact-section h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.8rem, 2.6vw, 2.55rem);
  line-height: 1.05;
}

.contact-section p {
  max-width: 620px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-booking {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 22px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #4f92ff, #3476db);
  color: var(--white);
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 820;
  box-shadow: var(--shadow-blue);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.contact-booking:hover,
.contact-booking:focus-visible {
  background: linear-gradient(135deg, #5b9bff, #477fe0);
  box-shadow: 0 22px 50px rgba(43, 120, 255, 0.34);
  transform: translateY(-1px);
}

.contact-card {
  display: grid;
  gap: 18px;
  width: min(440px, 100%);
  min-width: 360px;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(177, 209, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.contact-profile {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(177, 209, 255, 0.16);
}

.contact-profile img {
  width: 92px;
  height: 108px;
  border: 1px solid rgba(177, 209, 255, 0.18);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: 50% 18%;
  filter: saturate(0.98) contrast(1.02);
}

.contact-profile strong {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.1;
}

.contact-profile span {
  display: block;
  margin-top: 7px;
  color: var(--blue-bright);
  font-size: 0.82rem;
  font-weight: 820;
  line-height: 1.35;
}

.contact-card address {
  display: grid;
  gap: 9px;
  margin: 0;
  font-style: normal;
}

.contact-card address a,
.contact-card address span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-card address a:hover,
.contact-card address a:focus-visible {
  color: var(--blue-bright);
}

.contact-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 88px;
  padding: 18px max(54px, calc((100vw - 1320px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #02070d;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer img {
  width: 170px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.site-footer p {
  margin: 0;
  font-size: 0.84rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
}

.footer-links a,
.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  font-weight: 650;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links button:hover,
.footer-links button:focus-visible {
  color: var(--blue-bright);
}

.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.64);
  backdrop-filter: blur(10px);
}

.booking-modal {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(900px, 100%);
  height: min(85vh, 820px);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(177, 209, 255, 0.22);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.56);
}

.booking-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.12);
  background: #f8fbff;
  color: #0b1320;
}

.booking-modal-header span {
  display: block;
  color: #41699d;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-modal-header h2 {
  margin: 2px 0 0;
  color: #111827;
  font-size: 1.1rem;
  line-height: 1.2;
}

.booking-close {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: var(--radius);
  background: #ffffff;
  color: #475569;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.booking-close:hover,
.booking-close:focus-visible {
  border-color: rgba(79, 141, 247, 0.5);
  color: #1d4ed8;
  outline: none;
}

.booking-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #ffffff;
}

.booking-fallback {
  display: block;
  padding: 12px 18px 14px;
  border-top: 1px solid rgba(17, 24, 39, 0.12);
  background: #f8fbff;
  color: #2563eb;
  font-size: 0.86rem;
  font-weight: 760;
  text-align: center;
}

.booking-fallback:hover,
.booking-fallback:focus-visible {
  color: #1d4ed8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(760px, calc(100vw - 44px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(2, 7, 13, 0.94);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.cookie-consent strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 0.96rem;
}

.cookie-consent p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.cookie-consent a {
  display: inline-block;
  margin-top: 7px;
  color: var(--blue-bright);
  font-size: 0.8rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-consent-actions button {
  min-height: 40px;
  min-width: 146px;
  padding: 0 16px;
  border: 1px solid rgba(99, 160, 255, 0.72);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 850;
  background: rgba(79, 141, 247, 0.18);
  cursor: pointer;
}

.cookie-consent-actions button:hover,
.cookie-consent-actions button:focus-visible {
  background: var(--blue);
}

@media (max-width: 1280px) {
  :root {
    --container: min(1160px, calc(100vw - 64px));
  }

  .site-header {
    grid-template-columns: 220px 1fr 210px auto auto;
    padding-right: 32px;
    padding-left: 32px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(410px, 490px);
  }

  .needs-grid {
    gap: 14px;
  }

  .scope-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 210px 1fr auto auto;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 92px;
    right: 32px;
    display: none;
    min-width: 220px;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(3, 9, 15, 0.96);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.38);
  }

  .language-switcher {
    justify-self: end;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-booking {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 8px;
    padding: 0 18px;
    border: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #4d8df3, #3b75d5);
    color: var(--white);
    cursor: pointer;
    font-size: 0.93rem;
    font-weight: 850;
    box-shadow: var(--shadow-blue);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    height: auto;
    min-height: 0;
    padding-bottom: 40px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .lead-form {
    max-width: 680px;
  }

  .form-grid-2,
  .form-grid-address {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .needs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-links-grid a:nth-child(2) {
    border-right: 0;
  }

  .service-links-grid a:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(188, 211, 242, 0.2);
  }

  .local-section,
  .possibilities-section {
    grid-template-columns: 1fr;
  }

  .local-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .details-copy,
  .section-heading,
  .assurance-panel,
  .contact-section,
  .trust-heading,
  .trust-commitment {
    grid-template-columns: 1fr;
  }

  .trust-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-facts article:nth-child(2) {
    border-right: 0;
  }

  .trust-facts article:nth-child(-n + 2) {
    border-bottom: 1px solid #c4d0db;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(calc(100% - 28px), 1160px);
  }

  .site-header {
    grid-template-columns: 128px 1fr auto auto;
    min-height: 70px;
    gap: 12px;
    padding: 8px 14px;
  }

  .brand {
    width: 128px;
    gap: 0;
  }

  .brand img {
    width: 124px;
    height: auto;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    margin-top: 4px;
  }

  .language-switcher {
    margin-top: 4px;
  }

  .language-toggle {
    min-width: 54px;
    min-height: 44px;
    padding: 0 10px;
  }

  .language-toggle svg {
    display: none;
  }

  .main-nav {
    top: 68px;
    right: 14px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-bg {
    opacity: 0.62;
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(2, 7, 13, 0.94) 0%, rgba(2, 7, 13, 0.84) 56%, rgba(2, 7, 13, 0.94) 100%),
      linear-gradient(90deg, rgba(2, 7, 13, 0.92), rgba(2, 7, 13, 0.48));
  }

  .hero-layout {
    min-height: auto;
    padding-top: 92px;
    padding-right: 14px;
    padding-left: 14px;
    padding-bottom: 38px;
  }

  .hero-copy {
    padding-top: 0;
    padding-left: 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 10vw, 3.35rem);
  }

  .hero-copy h1 strong {
    margin-top: 12px;
  }

  .hero-copy p {
    margin-top: 22px;
    font-size: 1rem;
  }

  .hero-contact {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
    margin-top: 22px;
  }

  .hero-contact img {
    width: 62px;
    height: 74px;
  }

  .hero-contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .proof-list {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .proof-list li {
    grid-template-columns: 28px 1fr;
  }

  .proof-list svg {
    width: 28px;
    height: 28px;
  }

  .lead-form {
    max-width: none;
    padding: 22px;
  }

  .form-grid-2,
  .form-grid-address,
  .customer-type,
  .intervention-mode {
    grid-template-columns: 1fr;
  }

  .needs-section {
    padding: 30px 14px 38px;
  }

  .local-section {
    gap: 26px;
    padding: 48px 14px;
  }

  .local-heading h2,
  .local-heading p {
    max-width: none;
  }

  .local-grid {
    grid-template-columns: 1fr;
  }

  .local-grid article {
    min-height: 0;
    padding: 22px;
  }

  .needs-grid,
  .possibilities-grid,
  .scope-grid,
  .details-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .service-links-grid {
    grid-template-columns: 1fr;
  }

  .service-links-grid a,
  .service-links-grid a:nth-child(2) {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(188, 211, 242, 0.2);
  }

  .service-links-grid a:last-child {
    border-bottom: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    width: var(--container);
    margin-bottom: 26px;
  }

  .scope-section,
  .possibilities-section,
  .service-links-section,
  .assurance-section,
  .trust-section,
  .faq-section {
    padding: 56px 14px;
  }

  .trust-heading {
    gap: 14px;
  }

  .trust-facts {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .trust-facts article,
  .trust-facts article:first-child,
  .trust-facts article:last-child {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(188, 211, 242, 0.2);
  }

  .trust-facts article:last-child {
    border-bottom: 0;
  }

  .trust-commitment {
    gap: 20px;
  }

  .trust-commitment ul {
    grid-template-columns: 1fr;
  }

  .possibilities-section {
    gap: 26px;
  }

  .possibilities-copy h2,
  .possibilities-copy p {
    max-width: none;
  }

  .possibilities-grid article {
    min-height: 0;
    padding: 22px;
  }

  .scope-grid article {
    min-height: 0;
    padding: 22px;
  }

  .details-section {
    padding: 56px 14px;
  }

  .assurance-panel {
    width: var(--container);
    padding: 24px;
  }

  .faq-list {
    width: var(--container);
  }

  .details-copy,
  .details-grid,
  .contact-section {
    width: var(--container);
  }

  .contact-section {
    padding: 48px 0;
  }

  .contact-booking {
    width: 100%;
  }

  .contact-card {
    min-width: 0;
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 14px;
    padding-left: 14px;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .booking-overlay {
    padding: 12px;
  }

  .booking-modal {
    width: 100%;
    height: min(88vh, 820px);
    min-height: 520px;
    border-radius: var(--radius);
  }

  .booking-modal-header {
    min-height: 64px;
    padding: 12px 14px;
  }

  .booking-modal-header h2 {
    font-size: 1rem;
  }

  .booking-close {
    width: 38px;
    height: 38px;
  }

  .cookie-consent {
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: calc(100vw - 24px);
    padding: 14px;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-consent-actions button {
    min-width: 0;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 0.84rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
