﻿/* shared site chrome — header + footer */

/* page background */
body {
  background: #fff;
  min-height: 100vh;
}

/* ── Header: floating rounded pill card ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 16px;
  /* no background on the sticky wrapper itself */
  background: transparent;
  transform: translateY(0);
  opacity: 1;
  transition: transform .28s ease, opacity .28s ease;
}

.page {
  position: relative;
  padding-top: 96px;
}

/* top glow bubbles for inner pages */
body:not(.home-page) .page::before, body:not(.home-page) .page::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  filter: blur(34px);
}

body:not(.home-page) .page::before {
  width: min(62vw, 980px);
  height: min(34vw, 520px);
  left: -16%;
  top: -120px;
  background:
    radial-gradient(ellipse at 34% 36%, rgba(139, 223, 255, .34) 0%, rgba(139, 223, 255, .2) 42%, rgba(139, 223, 255, .08) 62%, rgba(139, 223, 255, 0) 86%),
    linear-gradient(135deg, rgba(101, 196, 247, .2) 0%, rgba(165, 240, 207, .18) 100%);
}

body:not(.home-page) .page::after {
  width: min(54vw, 820px);
  height: min(30vw, 460px);
  right: -18%;
  top: -90px;
  background:
    radial-gradient(ellipse at 38% 32%, rgba(119, 220, 250, .3) 0%, rgba(119, 220, 250, .18) 44%, rgba(119, 220, 250, .06) 64%, rgba(119, 220, 250, 0) 88%),
    linear-gradient(140deg, rgba(111, 208, 249, .18) 0%, rgba(174, 244, 214, .2) 100%);
}

body:not(.home-page) .page > *:not(.site-header):not(#header-mount) {
  position: relative;
  z-index: 1;
}

body:not(.home-page) #header-mount {
  position: relative;
  z-index: 120;
}

.site-header.is-hidden {
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
}
.site-header .bar {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 28px;
  height: 80px;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 4px 24px -8px rgba(15,23,43,.10);
  transition: box-shadow var(--t-base), background-color var(--t-base);
  position: relative;
  z-index: 101;
}
.site-header.scrolled .bar {
  background: rgba(255,255,255,.97);
  box-shadow: 0 8px 32px -10px rgba(15,23,43,.18);
}

/* Logo */
.brand {
  display: flex; justify-content: center;
  flex-shrink: 0;
  user-select: none;
  margin-right: 48px;
  gap: 0;
  text-decoration: none;
}
.brand img {
  width: 223px;
  height: auto;
  display: block;
}


/* Nav */
.nav {
  display: flex; align-items: center; gap: 0;
  flex: 1;
}
.nav a {
  position: relative;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--text);
  padding: 8px 14px;
  white-space: nowrap;
  transition: color var(--t-base);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 0;
  height: 2px;
  background: var(--green-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease-out);
}
.nav a:hover { color: var(--green-primary); }
.nav a:hover::after, .nav a.is-current::after { transform: scaleX(1); }

/* Contact bits */
.contact-bits {
  display: flex; align-items: center; gap: 20px;
  flex-shrink: 0;
}
.contact-bits .phone, .contact-bits .email {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(15px, 1.1vw, 20px);
  color: var(--navy);
  white-space: nowrap;
  transition: color var(--t-base);
}
.contact-bits .phone:hover, .contact-bits .email:hover { color: var(--navy-deep); }

/* Chat icon — round purple/blue gradient */
.chat-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy-pale);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform var(--t-base) var(--ease-out), background-color var(--t-base);
  overflow: hidden;
}
.chat-icon:hover {
  transform: rotate(-8deg) scale(1.08);
  background: #DCEAFC;
}
.chat-icon svg { width: 28px; height: 28px; }
.chat-icon img { width: 32px; height: 32px; display: block; }

/* CTA button */
.cta-header {
  height: 52px;
  padding: 0 24px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(14px, 1vw, 17px);
  white-space: nowrap;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color var(--t-base), transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base);
  flex-shrink: 0;
}
.cta-header:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(53,99,152,.55);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 12px;
  background: rgba(53, 99, 152, 0.1);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  transition: transform var(--t-base), background-color var(--t-base);
  position: relative;
  z-index: 102;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .24s ease, opacity .24s ease;
}

.site-header.menu-open .menu-toggle {
  background: var(--navy);
  box-shadow: 0 10px 22px -12px rgba(15, 23, 43, .6);
}
.site-header.menu-open .menu-toggle span {
  background: #fff;
}
.site-header.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
  z-index: 98;
}

.mobile-menu-panel {
  position: fixed;
  top: 92px;
  left: 16px;
  right: 16px;
  z-index: 99;
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 44px -20px rgba(15, 23, 43, .35);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  transform: translateY(-8px) scale(.985);
  opacity: 0;
  pointer-events: none;
  transition: transform .24s var(--ease-out), opacity .24s ease;
}

.mobile-nav {
  display: grid;
  gap: 6px;
}

.mobile-nav-link {
  display: block;
  padding: 12px 10px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text);
  transition: background-color var(--t-base), color var(--t-base), transform var(--t-base);
}

.mobile-nav-link:hover, .mobile-nav-link.is-current {
  background: #edf2fb;
  color: var(--navy-deep);
}

.mobile-contact {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 23, 43, 0.08);
  display: grid;
  gap: 8px;
}

.mobile-contact > a:not(.mobile-menu-action) {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
  display: block;
  padding: 2px 0;
}

.mobile-menu-action {
  display: flex;
  width: 100%;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: #eef3fb;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
}

.mobile-menu-action.primary {
  background: var(--navy);
  color: #fff;
}

.site-header.menu-open .mobile-menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.site-header.menu-open .mobile-menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* glow corner backdrop — removed, page bg handles atmosphere */
.brand-glow { display: none; }

/* breadcrumbs */
.breadcrumbs {
  text-align: center;
  font-family: var(--font-display);
  color: #000;
  font-size: 13px;
  padding: 18px 0;
}
.breadcrumbs a { color: #000; }
.breadcrumbs a:hover { color: var(--green-primary); }
.breadcrumbs span { color: var(--green-primary); }

@media (max-width: 1700px) {
  .site-header .bar {
    padding: 0 18px;
    gap: 14px;
  }
  .brand {
    margin-right: 20px;
  }
  .nav {
    display: none;
  }
  .contact-bits {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
}

/* Lead form (consultation) */
#lead.section {
  padding-top: 0;
  padding-bottom: 0;
}

#lead .shell {
  background: transparent;
  border-radius: 0;
  max-width: 1870px;
  padding: 0 clamp(20px, 3vw, 56px);
}

.lead-form {
  background: #1d346b;
  border-radius: 24px;
  color: #fff;
  height: 710px;
  min-height: 710px;
  width: 100%;
  padding: 27px 32px 32px 72px;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 901px;
  gap: clamp(24px, 2.3vw, 38px);
  align-items: stretch;
}

.lead-form > div {
  padding-top: 72px;
}

.lead-form h2 {
  margin: 0;
  max-width: 472px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 3vw, 58px);
  line-height: .94;
}

.lead-form p {
  margin: 84px 0 0;
  max-width: 498px;
  font-family: var(--font-body);
  font-size: clamp(19px, 1.3vw, 26px);
  line-height: 1.3;
  color: #fff;
  opacity: 1;
}

.lead-form .grid {
  background: #fff;
  border-radius: 20px;
  padding: 55px 51px 56px 56px;
  min-height: 651px;
  width: 901px;
  display: grid;
  grid-template-columns: 397px 385px;
  grid-template-rows: auto auto auto auto;
  column-gap: 12px;
  row-gap: 41px;
  align-content: start;
  justify-self: end;
}

.lead-form .span-2 {
  grid-column: span 2;
  width: 794px;
}

.lead-form .actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-top: 2px;
}

.lead-form .actions .btn.btn-primary {
  width: 355px;
  justify-content: center;
}

.lead-form .grid .input.is-invalid, .lead-form .grid .textarea.is-invalid, .lead-popup-form .input.is-invalid, .lead-popup-form .textarea.is-invalid {
  border-color: #e5484d;
  box-shadow: 0 0 0 2px rgba(229, 72, 77, 0.15);
}

.lead-form .grid .checkbox .box.is-invalid, .lead-popup-form .checkbox .box.is-invalid {
  border-color: #e5484d;
}

.lead-form .checkbox,
.lead-popup-form .checkbox {
  display: block;
  position: relative;
  padding-left: 34px;
  font-size: 14px;
  line-height: 1.28;
}

.lead-form .checkbox .box,
.lead-popup-form .checkbox .box {
  position: absolute;
  left: 0;
  top: 0.08em;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.lead-form .checkbox .consent-link,
.lead-popup-form .checkbox .consent-link {
  display: inline;
}

.form-validation-hint {
  grid-column: 1 / -1;
  margin: -8px 0 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.35;
  color: #e5484d;
  display: none;
}

.lead-form .form-validation-hint,
.lead-popup-form .form-validation-hint {
  color: #e5484d;
}

.form-validation-hint.is-visible {
  display: block;
}

@media (min-width: 1025px) {
  .lead-form .form-validation-hint.is-visible,
  .lead-popup-form .form-validation-hint.is-visible {
    display: none !important;
  }
}

.lead-form .btn.btn-primary:disabled, .lead-popup-form .btn.btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.lead-success-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(12px);
  z-index: 1400;
  width: min(680px, calc(100vw - 32px));
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(17, 24, 39, 0.94);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 16px 36px rgba(15, 23, 43, 0.24);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.lead-success-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Lead popup */
.lead-popup[hidden] {
  display: none;
}

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lead-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 43, 0.56);
}

.lead-popup-dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: #fff;
  border-radius: 20px;
  padding: 28px 28px 30px;
  box-shadow: 0 28px 60px rgba(15, 23, 43, 0.26);
}

.lead-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #edf2f7;
  color: #0f172b;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.lead-popup h2 {
  margin: 0 0 18px;
  max-width: 90%;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
  color: #0f172b;
}

.lead-popup-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 12px;
}

.lead-popup-form > .field:nth-of-type(3), .lead-popup-form > .checkbox, .lead-popup-form > .btn {
  grid-column: 1 / -1;
}

.lead-popup-form .textarea {
  min-height: 128px;
  resize: none;
}

.lead-popup-form .field label {
  color: #157a44;
  font-size: 16px;
}

.lead-popup-form .input, .lead-popup-form .textarea {
  background: #f6f6f6;
  border-color: #f6f6f6;
  color: #111;
}

.lead-popup-form .checkbox {
  color: #111;
  font-size: 14px;
  line-height: 1.28;
}

.lead-popup-form .checkbox .consent-link {
  color: #00a54f;
  text-decoration: none;
}

.lead-popup-form .checkbox .consent-link:hover {
  text-decoration: underline;
}

.lead-popup-form .checkbox .box {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 2px solid #00b956;
  background: #fff;
}

.lead-popup-form .checkbox input:checked + .box {
  background: #00b956;
}

.lead-popup-form .checkbox input:checked + .box::after {
  content: "✓";
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.lead-popup-form .btn.btn-primary {
  height: 64px;
  justify-content: center;
}

@media (max-width: 767px) {
  .lead-popup {
    align-items: flex-end;
    padding: 12px;
  }

  .lead-popup-dialog {
    width: 100%;
    max-height: calc(100vh - 20px);
    border-radius: 18px 18px 0 0;
    padding: 20px 16px 18px;
  }

  .lead-popup h2 {
    max-width: calc(100% - 40px);
    margin-bottom: 14px;
  }

  .lead-popup-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 1400px) {
  #lead .shell {
    padding: 80px 32px;
  }

  .lead-form {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 18px;
    align-items: start;
  }

  .lead-form > div {
    padding-top: 8px;
  }

  .lead-form p {
    margin-top: 18px;
  }

  .lead-form .grid {
    width: 100%;
    max-width: none;
    min-height: 0;
    padding: 20px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    row-gap: 18px;
    column-gap: 12px;
    justify-self: stretch;
  }

  .lead-form .span-2 {
    width: auto;
  }

  .lead-form .actions {
    gap: 14px;
    margin-top: 0;
  }

  .lead-form .actions .btn.btn-primary {
    width: 100%;
    max-width: 420px;
    height: 64px !important;
  }
}

@media (max-width: 1400px) and (min-width: 1025px) {
  .lead-form {
    grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
    min-height: 600px;
    padding: 28px;
    gap: 24px;
  }

  .lead-form > div {
    padding-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .lead-form h2 {
    max-width: 560px;
    font-size: clamp(50px, 3.6vw, 64px);
    line-height: 0.98;
  }

  .lead-form p {
    margin-top: 0;
    max-width: 560px;
    font-size: clamp(24px, 1.75vw, 30px);
    line-height: 1.32;
  }

  .lead-form .grid {
    min-height: 540px;
    padding: 26px;
    row-gap: 18px;
    column-gap: 12px;
    border-radius: 18px;
  }

  .lead-form .field {
    gap: 12px;
  }

  .lead-form .field label {
    font-size: 16px;
  }

  .lead-form .input {
    height: 64px;
    padding: 0 18px;
    font-size: 21px;
  }

  .lead-form .textarea {
    min-height: 150px;
    padding: 16px 18px;
    font-size: 21px;
  }

  .lead-form .checkbox {
    display: block;
    position: relative;
    padding-left: 34px;
    font-size: 14px;
    line-height: 1.3;
  }

  .lead-form .checkbox .box {
    position: absolute;
    left: 0;
    top: 0.08em;
    width: 24px;
    height: 24px;
  }

  .lead-form .checkbox .consent-link {
    display: inline;
  }

  .lead-form .actions {
    gap: 14px;
  }

  .lead-form .btn.btn-primary {
    height: 66px !important;
    font-size: 24px;
    border-radius: 14px;
    padding: 0 24px !important;
  }

  .lead-form .actions .btn.btn-primary {
    max-width: 460px;
  }
}

@media (max-width: 1024px) {
  .page {
    padding-top: 88px;
  }

  #lead .shell {
    padding: 42px 20px;
  }

  .lead-form .grid {
    grid-template-columns: 1fr;
    row-gap: 14px;
    padding: 16px;
    border-radius: 16px;
  }

  .lead-form .span-2 {
    grid-column: span 1;
  }

  .lead-form h2 {
    max-width: 100%;
    font-size: clamp(34px, 6.2vw, 44px);
    line-height: 0.98;
  }

  .lead-form p {
    max-width: 100%;
    font-size: clamp(16px, 2.6vw, 20px);
    line-height: 1.28;
  }

  .lead-form .field {
    gap: 10px;
  }

  .lead-form .field label {
    font-size: 15px;
  }

  .lead-form .input {
    height: 56px;
    font-size: 18px;
    padding: 0 16px;
  }

  .lead-form .textarea {
    min-height: 110px;
    font-size: 18px;
    padding: 14px 16px;
  }

  .lead-form .checkbox {
    display: block;
    position: relative;
    padding-left: 34px;
    font-size: 14px;
    line-height: 1.3;
  }

  .lead-form .checkbox .box {
    position: absolute;
    left: 0;
    top: 0.08em;
    width: 24px;
    height: 24px;
  }

  .lead-form .checkbox .consent-link {
    display: inline;
  }

  .lead-form .btn.btn-primary {
    height: 58px !important;
    font-size: 20px;
    border-radius: 14px;
    padding: 0 18px !important;
    width: 100% !important;
    max-width: none !important;
  }
}

/* Contact section */


@media (min-width: 1201px) {


  body.home-page .site-footer {
    margin-left: calc(clamp(20px, 3vw, 56px) + 136px);
    margin-right: calc(clamp(20px, 3vw, 56px) + 136px);
  }

  body:not(.home-page) .site-footer {
    margin-left: calc(clamp(20px, 3vw, 56px) + 136px);
    margin-right: calc(clamp(20px, 3vw, 56px) + 136px);
  }
}

@media (max-width: 1600px) and (min-width: 1201px) {
  body.home-page .site-footer, body:not(.home-page) .site-footer {
    margin-left: clamp(20px, 3vw, 56px);
    margin-right: clamp(20px, 3vw, 56px);
  }
}









.contact-main {
  display: grid;
  grid-template-columns: 655px 925px;
  gap: 19px;
  align-items: stretch;
}

.contact-map {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  background: #e5eaf0;
  height: 100%;
  min-height: 722px;
}

.contact-map iframe {
  width: 100%; height: 100%; border: 0; display: block;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 1201px) {
  .contact-main {
    grid-template-columns: 655px 1fr;
    justify-content: start;
  }

  .contact-right {
    width: 100%;
    max-width: 790px;
    justify-self: end;
  }
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 56px 48px;
}

.contact-card-methods {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-card-address .meta {
  margin-bottom: 12px;
}

.contact-card-address .val {
  font-size: 22px;
  line-height: 1;
  color: #111;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base);
}

.contact-row:hover { transform: translateX(2px); }

.contact-row .ic {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #eef7ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0f172b;
}

.contact-row .ic img {
  display: block;
  width: 30px;
  height: 30px;
}

.contact-row .meta, .contact-card-address .meta {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  color: #009e49;
}

.contact-row .val {
  font-size: 44px;
  line-height: 1;
  color: #111;
}

.contact-launch-btn {
  margin-top: -4px;
  width: fit-content;
  min-height: 75px;
  padding: 10px 26px;
  border-radius: 12px;
  background: #356398;
  color: #fff;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Footer */
.site-footer {
  background: #f5f7fa;
  border-radius: 24px;
  margin: 24px 0 0;
  padding: 4px 0 36px;
  overflow: hidden;
}

.site-footer .shell {
  width: 100%;
  max-width: 1870px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 136px;
  padding-right: 136px;
}









.site-footer .brand {
  margin: 0;
}

.site-footer .brand img {
  width: 330px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(16px);
  width: min(1240px, calc(100vw - 40px));
  z-index: 1300;
  background: rgba(15, 23, 43, 0.96);
  color: #fff;
  border-radius: 20px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.cookie-banner__text {
  font-size: 16px;
  line-height: 1.4;
  max-width: 890px;
}

.cookie-banner__text a {
  color: #98edc0;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 0 18px;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
  transition: transform var(--t-base) var(--ease-out), background-color var(--t-base), border-color var(--t-base);
}

.cookie-banner__btn:hover {
  transform: translateY(-1px);
}

.cookie-banner__btn--accept {
  background: #009e49;
  color: #fff;
}

.cookie-banner__btn--accept:hover {
  background: #00b150;
}

.cookie-banner__btn--reject {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.cookie-banner__btn--reject:hover {
  border-color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 1460px) {
  .contact-main {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-map {
    height: 420px;
  }

  .contact-card {
    padding: 28px 22px;
  }

  .contact-card-methods {
    gap: 20px;
  }

  .contact-row {
    gap: 16px;
  }

  .contact-row .ic {
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }

  .contact-row .meta, .contact-card-address .meta {
    font-size: 14px;
  }

  .contact-row .val {
    font-size: clamp(24px, 5vw, 32px);
  }

  .contact-card-address .val {
    font-size: clamp(12px, 2.5vw, 16px);
    line-height: 1.2;
  }

  .contact-launch-btn {
    width: 100%;
    font-size: 22px;
    min-height: 64px;
  }

  .site-footer {
    padding: 9px 0 24px;
  }

  .site-footer .shell {
    padding-left: 20px;
    padding-right: 20px;
  }



  .site-footer .brand img {
    width: 240px;
  }

  .cookie-banner {
    width: calc(100vw - 20px);
    bottom: 10px;
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .cookie-banner__text {
    font-size: 14px;
  }

  .cookie-banner__actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .cookie-banner__btn {
    width: 100%;
    min-height: 44px;
    font-size: 15px;
  }
}

@media (max-width: 1460px) and (min-width: 1201px) {
  .contact-main {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 16px;
  }

  .contact-map {
    height: auto;
    min-height: 420px;
  }

  .contact-right {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }
}

/* Non-home pages: proportional content downscale (-10%), header excluded */
@media (min-width: 1201px) {
  body:not(.home-page) .page > .breadcrumbs, body:not(.home-page) .page > .section, body:not(.home-page) .page > article.section, body:not(.home-page) .page > #lead-mount, body:not(.home-page) .page > #contact-mount, body:not(.home-page) .page > #footer-mount {
    zoom: 0.9;
  }
}



