
:root {

  --lr-black: #000000;
  --lr-black-soft: #070707;
  --lr-panel: #0d0d0d;
  --lr-panel-light: #121212;

  --lr-cyan: #90f7f9;
  --lr-cyan-light: #cafeff;

  --lr-grey: #ededed;
  --lr-grey-mid: #a9a9a9;
  --lr-grey-dark: #6e6e6e;

  --lr-white: #ffffff;

  --lr-border:
    rgba(255, 255, 255, 0.12);

  --lr-border-cyan:
    rgba(144, 247, 249, 0.28);

  --font-title:
    "Plus Jakarta Sans",
    sans-serif;

  --font-body:
    "Manrope",
    sans-serif;

  --container-width: 1380px;

  --transition: 220ms ease;

}


/* ==========================================================
   RESET
========================================================== */


*,
*::before,
*::after {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;

  background:
    var(--lr-black);

  color:
    var(--lr-white);

  font-family:
    var(--font-body);

  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}


body.modal-open {
  padding-right: 0 !important;
}


body,
button,
input,
select,
textarea,
a,
p,
li {
  font-family:
    var(--font-body);
}


img {
  display: block;
  max-width: 100%;
}


a {
  color: inherit;
  text-decoration: none;
}


button,
input,
select,
textarea {
  font: inherit;
}


button {
  cursor: pointer;
}


::selection {
  color: #000000;
  background: var(--lr-cyan);
}


/* ==========================================================
   TYPOGRAPHY
========================================================== */


h1,
h2,
.section-title {
  margin-top: 0;

  font-family:
    var(--font-title);

  font-weight: 700;

  letter-spacing:
    -0.045em;
}


h3,
h4,
h5,
h6 {
  margin-top: 0;

  font-family:
    var(--font-body);

  font-weight: 600;

  letter-spacing:
    -0.03em;
}


p {
  margin-top: 0;
}


.container-xl {
  width:
    min(
      calc(100% - 64px),
      var(--container-width)
    );

  max-width:
    var(--container-width);

  margin-inline: auto;
}


.section {
  position: relative;

  padding:
    120px
    0;
}


.section-kicker {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 22px;

  color:
    var(--lr-cyan);

  font-size: 11px;
  font-weight: 600;

  letter-spacing:
    0.16em;

  text-transform: uppercase;
}


.section-kicker::before {
  width: 26px;
  height: 1px;

  background:
    var(--lr-cyan);

  content: "";
}


.section-title {
  max-width: 820px;

  margin:
    0;

  color:
    var(--lr-white);

  font-size:
    clamp(
      40px,
      4.35vw,
      70px
    );

  line-height: 1.03;
}


.section-heading-row {
  display: grid;

  grid-template-columns:
    minmax(0, 1.55fr)
    minmax(280px, 0.75fr);

  align-items: end;

  gap: 80px;

  margin-bottom: 55px;
}


.section-heading-copy {
  max-width: 430px;

  margin:
    0
    0
    5px
    auto;

  color:
    #9a9a9a;

  font-size: 15px;
}


.text-link {
  position: relative;

  display: inline-block;

  margin-top: 7px;
  padding-bottom: 4px;

  color:
    var(--lr-cyan);

  font-size: 13px;
  font-weight: 600;
}


.text-link::after {
  position: absolute;

  right: 0;
  bottom: 0;
  left: 0;

  height: 1px;

  background:
    currentColor;

  content: "";

  transform:
    scaleX(0.32);

  transform-origin:
    left center;

  transition:
    transform var(--transition);
}


.text-link:hover {
  color:
    var(--lr-cyan-light);
}


.text-link:hover::after {
  transform:
    scaleX(1);
}


/* ==========================================================
   BUTTONS
========================================================== */


.btn-brand,
.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 50px;

  padding:
    0
    26px;

  border-radius:
    999px;

  font-size: 13px;
  font-weight: 700;
  line-height: 1;

  transition:
    color var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}


.btn-brand {
  color:
    #000000;

  background:
    var(--lr-cyan);

  border:
    1px solid
    var(--lr-cyan);
}


.btn-brand:hover {
  color:
    #000000;

  background:
    var(--lr-cyan-light);

  border-color:
    var(--lr-cyan-light);

  transform:
    translateY(-2px);
}


.btn-outline-brand {
  color:
    #ffffff;

  background:
    rgba(255, 255, 255, 0.02);

  border:
    1px solid
    rgba(255, 255, 255, 0.26);
}


.btn-outline-brand:hover {
  color:
    #000000;

  background:
    var(--lr-cyan);

  border-color:
    var(--lr-cyan);
}


/* ==========================================================
   NAVBAR
========================================================== */


#global-navbar {
  position: fixed;

  z-index: 1050;

  top: 0;
  right: 0;
  left: 0;

  pointer-events: none;
}


.site-navbar {
  padding:
    15px
    18px;

  background:
    transparent;

  transition:
    padding var(--transition);
}


.site-navbar.navbar-scrolled {
  padding-top: 8px;
  padding-bottom: 8px;
}


.site-navbar .navbar-shell {
  display: flex;
  align-items: center;

  width:
    min(
      980px,
      calc(100% - 32px)
    ) !important;

  max-width:
    980px !important;

  min-height:
    66px;

  margin-inline:
    auto;

  padding:
    7px
    8px
    7px
    16px;

  pointer-events:
    auto;

  background:
    rgba(5, 7, 7, 0.83);

  border:
    1px solid
    rgba(255, 255, 255, 0.12);

  border-radius:
    999px;

  box-shadow:
    0
    14px
    45px
    rgba(0, 0, 0, 0.24);

  backdrop-filter:
    blur(20px);

  -webkit-backdrop-filter:
    blur(20px);
}


.site-navbar.navbar-scrolled
.navbar-shell {
  background:
    rgba(2, 2, 2, 0.94);
}


.navbar-brand {
  display: flex;
  align-items: center;

  flex:
    0
    0
    auto;

  margin: 0;
  padding: 0;
}


.navbar-brand img {
  width: auto;
  height: 39px;

  object-fit: contain;
}


.navbar-collapse {
  align-items: center;

  flex-grow: 1;

  margin-left: 32px;
}


.navbar-nav {
  display: flex;
  align-items: center;

  gap: 1px;

  margin:
    0
    auto !important;
}


.navbar-nav
.nav-link {
  padding:
    10px
    15px !important;

  color:
    rgba(255, 255, 255, 0.66);

  border-radius:
    999px;

  font-size: 14px;
  font-weight: 600;

  white-space: nowrap;

  transition:
    color var(--transition),
    background-color var(--transition);
}


.navbar-nav
.nav-link::after {
  display: none;
}


.navbar-nav
.nav-link:hover {
  color:
    #ffffff;

  background:
    rgba(255, 255, 255, 0.07);
}


.navbar-nav
.nav-link.active {
  color:
    #000000;

  background:
    var(--lr-cyan);
}


.navbar-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex:
    0
    0
    auto;

  gap: 8px;

  min-height:
    48px;

  padding:
    0
    21px;

  color:
    #000000;

  background:
    var(--lr-cyan);

  border:
    1px solid
    var(--lr-cyan);

  border-radius:
    999px;

  font-size: 14px;
  font-weight: 700;

  white-space: nowrap;

  transition:
    background-color var(--transition),
    transform var(--transition);
}


.navbar-call i {
  font-size: 15px;
}


.navbar-call:hover {
  color:
    #000000;

  background:
    var(--lr-cyan-light);

  transform:
    translateY(-1px);
}


.navbar-toggler {
  display: none;

  width: 43px;
  height: 43px;

  padding: 0;

  border: 0;
  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.08);

  box-shadow:
    none !important;
}


.navbar-toggler span {
  display: block;

  width: 20px;
  height: 1px;

  margin:
    5px
    auto;

  background:
    #ffffff;
}


/* ==========================================================
   FORMS
========================================================== */

.quote-form {
  position: relative;
  width: 100%;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quote-field {
  min-width: 0;
}

.quote-field-full {
  grid-column: 1 / -1;
}

.quote-field label {
  display: block;
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
}

.quote-field input,
.quote-field select,
.quote-field textarea {
  display: block;
  width: 100%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition:
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.quote-field input,
.quote-field select {
  height: 47px;
  padding: 0 14px;
}

.quote-field textarea {
  min-height: 82px;
  padding: 12px 14px;
  line-height: 1.45;
  resize: vertical;
}

.quote-field input::placeholder,
.quote-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.43);
  opacity: 1;
}

.quote-field select {
  color-scheme: dark;
}

.quote-field select option {
  color: #ffffff;
  background: #111111;
}

.quote-field input:hover,
.quote-field select:hover,
.quote-field textarea:hover {
  background: rgba(255, 255, 255, 0.095);
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(144, 247, 249, 0.85);
  box-shadow: 0 0 0 3px rgba(144, 247, 249, 0.07);
}

.quote-field input.is-invalid,
.quote-field select.is-invalid,
.quote-field textarea.is-invalid {
  border-color: #ff6a6a;
}

.quote-submit {
  display: flex;
  align-items: center;
  grid-column: 1 / -1;
  margin-top: 3px;
}

.quote-submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 185px;
  min-height: 49px;
  padding: 0 25px;
  color: #000000;
  background: var(--lr-cyan);
  border: 1px solid var(--lr-cyan);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.quote-submit-button:hover {
  color: #000000;
  background: var(--lr-cyan-light);
  border-color: var(--lr-cyan-light);
  transform: translateY(-2px);
}

/* Web3Forms honeypot */
.form-botcheck {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


/* ==========================================================
   FAQ
========================================================== */

.faq-section {
  position: relative;
  padding-top: 65px;
  padding-bottom: 120px;
  background: #050505;
}

.faq-glow {
  display: none;
}

.faq-heading {
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}

.faq-heading .section-kicker {
  justify-content: center;
}

.faq-title {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-title);
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.faq-title span {
  color: var(--lr-cyan-light);
}

.faq-heading > p {
  max-width: 690px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  line-height: 1.72;
}

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

.faq-column {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  align-items: center;
  gap: 20px;
  min-height: 91px;
  padding: 23px 4px;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-question {
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.025em;
  transition: color var(--transition);
}

.faq-item[open] .faq-question {
  color: var(--lr-cyan-light);
}

.faq-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  width: 12px;
  height: 1.5px;
  background: var(--lr-cyan);
  content: "";
  transition: transform var(--transition);
}

.faq-toggle::after {
  transform: rotate(90deg);
}

.faq-item[open] .faq-toggle::after {
  transform: rotate(0deg);
}

.faq-answer {
  padding: 0 55px 26px 4px;
}

.faq-answer p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.75;
}

/* ==========================================================
   FOOTER
========================================================== */

.site-footer {
  padding:
    88px
    0
    28px;

  background:
    #030303;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.09);
}


/* ==========================================================
   FOOTER MAIN GRID
========================================================== */

.footer-main {
  display: grid;

  grid-template-columns:
    minmax(0, 2fr)
    minmax(120px, 0.68fr)
    minmax(175px, 1fr)
    minmax(210px, 1.08fr);

  gap:
    clamp(
      42px,
      5vw,
      72px
    );

  padding-bottom: 70px;
}


/* ==========================================================
   BRAND
========================================================== */

.footer-brand {
  min-width: 0;
}


.footer-logo {
  display: inline-block;

  margin-bottom: 25px;
}


.footer-logo img {
  width: 220px;
  height: auto;

  object-fit: contain;
}


.footer-description {
  max-width: 530px;

  margin: 0;

  color:
    #9a9a9a;

  font-size: 14px;

  line-height: 1.82;
}


/* ==========================================================
   SOCIAL ICONS

   No border.
   No circular button.
   Just clean brand-cyan icons.
========================================================== */

.footer-socials {
  display: flex;

  align-items: center;

  gap: 19px;

  margin-top: 28px;
}


.footer-socials a {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: auto;
  height: auto;

  padding: 0;

  color:
    var(--lr-cyan);

  background: transparent;

  border: 0;
  border-radius: 0;

  font-size: 22px;

  line-height: 1;

  transition:
    color var(--transition),
    transform var(--transition);
}


.footer-socials a i {
  display: block;

  color: inherit;

  font-size: 22px;

  line-height: 1;
}


.footer-socials a:hover {
  color:
    var(--lr-cyan-light);

  background: transparent;

  transform:
    translateY(-2px);
}


/* ==========================================================
   FOOTER COLUMNS
========================================================== */

.footer-column {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 10px;

  min-width: 0;
}


.footer-column h2 {
  margin:
    0
    0
    12px;

  color: #ffffff;

  font-family:
    var(--font-body);

  font-size: 11px;

  font-weight: 700;

  line-height: 1.2;

  letter-spacing: 0.13em;

  text-transform: uppercase;
}


.footer-column a,
.footer-column p {
  margin: 0;

  color:
    #939393;

  font-size: 13px;

  line-height: 1.72;
}


.footer-column a {
  transition:
    color var(--transition);
}


.footer-column a:hover {
  color:
    var(--lr-cyan);
}


/* ==========================================================
   VIEW ALL SERVICES LINK
========================================================== */

.footer-column
.footer-view-all {
  position: relative;

  margin-top: 7px;

  padding-bottom: 3px;

  color:
    var(--lr-cyan);

  font-weight: 600;
}


.footer-column
.footer-view-all::after {
  position: absolute;

  right: 0;
  bottom: 0;
  left: 0;

  height: 1px;

  background:
    currentColor;

  content: "";

  transform:
    scaleX(0.35);

  transform-origin:
    left center;

  transition:
    transform var(--transition);
}


.footer-column
.footer-view-all:hover {
  color:
    var(--lr-cyan-light);
}


.footer-column
.footer-view-all:hover::after {
  transform:
    scaleX(1);
}


/* ==========================================================
   CONTACT
========================================================== */

.footer-contact
.footer-phone {
  margin-bottom: 3px;

  color: #ffffff;

  font-family:
    var(--font-title);

  font-size: 19px;

  font-weight: 600;

  letter-spacing:
    -0.025em;
}


.footer-contact
.footer-phone:hover {
  color:
    var(--lr-cyan);
}


.footer-email {
  overflow-wrap: anywhere;
}


.footer-contact
.footer-email {
  color:
    #a5a5a5;
}


.footer-contact
.footer-email:hover {
  color:
    var(--lr-cyan);
}


.footer-location {
  margin-top:
    10px !important;

  color:
    #7f7f7f !important;
}


/* ==========================================================
   FOOTER BOTTOM
========================================================== */

.footer-bottom {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 35px;

  padding-top: 25px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.08);
}


/* ==========================================================
   COPYRIGHT + DESIGN CREDIT
========================================================== */

.footer-bottom-left {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 5px;
}


.footer-copyright,
.footer-designer {
  margin: 0;

  color:
    #747474;

  font-size: 11px;

  line-height: 1.55;
}


.footer-designer {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 4px;
}


.footer-heart {
  display: inline-block;

  line-height: 1;

  transform:
    translateY(-1px);
}


.footer-designer a {
  position: relative;

  color:
    var(--lr-cyan);

  font-weight: 600;

  transition:
    color var(--transition);
}


.footer-designer a::after {
  position: absolute;

  right: 0;
  bottom: -1px;
  left: 0;

  height: 1px;

  background:
    currentColor;

  content: "";

  opacity: 0.5;

  transform:
    scaleX(0);

  transform-origin:
    left center;

  transition:
    transform var(--transition);
}


.footer-designer a:hover {
  color:
    var(--lr-cyan-light);
}


.footer-designer a:hover::after {
  transform:
    scaleX(1);
}


/* ==========================================================
   LEGAL LINKS
========================================================== */

.footer-legal {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 24px;
}


.footer-legal a {
  color:
    #747474;

  font-size: 11px;

  line-height: 1.5;

  transition:
    color var(--transition);
}


.footer-legal a:hover {
  color:
    var(--lr-cyan);
}


/* ==========================================================
   FOOTER LAPTOP
   <= 1199px
========================================================== */

@media (max-width: 1199px) {

  .footer-main {
    grid-template-columns:
      minmax(0, 1.5fr)
      minmax(120px, 0.7fr)
      minmax(170px, 1fr);

    gap:
      52px
      42px;
  }


  .footer-contact {
    grid-column:
      2 / 4;
  }

}


/* ==========================================================
   FOOTER TABLET
   <= 991px
========================================================== */

@media (max-width: 991px) {

  .site-footer {
    padding-top: 70px;
  }


  .footer-main {
    grid-template-columns:
      minmax(0, 1.5fr)
      minmax(160px, 1fr);

    gap:
      48px
      38px;

    padding-bottom: 55px;
  }


  .footer-contact {
    grid-column: auto;
  }


  .footer-description {
    max-width: 500px;
  }

}


/* ==========================================================
   FOOTER MOBILE
   <= 767px
========================================================== */

@media (max-width: 767px) {

  .site-footer {
    padding:
      60px
      0
      25px;
  }


  .footer-main {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );

    gap:
      42px
      25px;

    padding-bottom: 45px;
  }


  .footer-brand {
    grid-column:
      1 / -1;
  }


  .footer-logo {
    margin-bottom: 20px;
  }


  .footer-logo img {
    width: 195px;
  }


  .footer-description {
    max-width: 610px;

    font-size: 13px;

    line-height: 1.75;
  }


  .footer-socials {
    gap: 18px;

    margin-top: 23px;
  }


  .footer-socials a,
  .footer-socials a i {
    font-size: 21px;
  }


  .footer-column h2 {
    margin-bottom: 9px;

    font-size: 10px;
  }


  .footer-column a,
  .footer-column p {
    font-size: 12px;

    line-height: 1.65;
  }


  .footer-contact
  .footer-phone {
    font-size: 17px;
  }


  .footer-email {
    font-size:
      11px !important;

    overflow-wrap: anywhere;
  }


  .footer-bottom {
    flex-direction: column;

    align-items: flex-start;

    gap: 17px;

    padding-top: 22px;
  }


  .footer-legal {
    gap: 19px;
  }

}


/* ==========================================================
   FOOTER SMALL MOBILE
   <= 479px
========================================================== */

@media (max-width: 479px) {

  .footer-main {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );

    gap:
      37px
      20px;
  }


  .footer-contact {
    grid-column:
      1 / -1;
  }


  .footer-contact
  .footer-email {
    font-size:
      12px !important;

    overflow-wrap: normal;

    word-break: normal;
  }


  .footer-copyright,
  .footer-designer,
  .footer-legal a {
    font-size: 10px;
  }


  .footer-designer {
    gap: 3px;
  }

}

/* ==========================================================
   WHATSAPP
========================================================== */

.whatsapp-float {
  position: fixed;

  z-index: 1040;

  right: 22px;
  bottom: 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  min-height: 52px;

  padding:
    0
    20px;

  color: #000000;

  background:
    var(--lr-cyan);

  border:
    1px solid
    var(--lr-cyan);

  border-radius: 999px;

  box-shadow:
    0
    18px
    50px
    rgba(0, 0, 0, 0.32);

  font-size: 13px;
  font-weight: 700;

  line-height: 1;

  white-space: nowrap;

  transition:
    color var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}


.whatsapp-float i {
  color: #000000;

  font-size: 21px;
}


.whatsapp-float span {
  color: #000000;
}


.whatsapp-float:hover {
  color: #000000;

  background:
    var(--lr-cyan-light);

  border-color:
    var(--lr-cyan-light);

  transform:
    translateY(-3px);

  box-shadow:
    0
    22px
    55px
    rgba(0, 0, 0, 0.38);
}


.whatsapp-float:hover i,
.whatsapp-float:hover span {
  color: #000000;
}


/* ==========================================================
   COOKIE BANNER
========================================================== */


.cookie-banner {
  position:
    fixed;

  z-index:
    1080;

  right:
    22px;

  bottom:
    22px;

  left:
    22px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    35px;

  max-width:
    1000px;

  margin-inline:
    auto;

  padding:
    19px
    21px;

  background:
    rgba(10, 10, 10, 0.97);

  border:
    1px solid
    rgba(255, 255, 255, 0.14);

  border-radius:
    20px;

  box-shadow:
    0
    25px
    70px
    rgba(0, 0, 0, 0.5);

  backdrop-filter:
    blur(18px);
}


.cookie-banner[hidden] {
  display:
    none;
}


.cookie-banner-copy strong {
  display:
    block;

  margin-bottom:
    5px;

  font-size:
    15px;

  font-weight:
    700;
}


.cookie-banner-copy p {
  max-width:
    580px;

  margin:
    0;

  color:
    #a5a5a5;

  font-size:
    11px;

  line-height:
    1.6;
}


.cookie-banner-copy a {
  color:
    var(--lr-cyan);
}


.cookie-actions {
  display:
    flex;

  flex-shrink:
    0;

  gap:
    7px;
}


.cookie-button {
  min-height:
    40px;

  padding:
    0
    15px;

  border-radius:
    999px;

  font-size:
    10px;

  font-weight:
    700;
}


.cookie-button-primary {
  color:
    #000000;

  background:
    var(--lr-cyan);

  border:
    1px solid
    var(--lr-cyan);
}


.cookie-button-secondary {
  color:
    #ffffff;

  background:
    transparent;

  border:
    1px solid
    rgba(255, 255, 255, 0.2);
}


.cookie-modal
.modal-content {
  color:
    #ffffff;

  background:
    #0d0d0d;

  border:
    1px solid
    rgba(255, 255, 255, 0.14);

  border-radius:
    22px;
}


.cookie-modal
.modal-header,
.cookie-modal
.modal-footer {
  border-color:
    rgba(255, 255, 255, 0.1);
}


.cookie-preference-row {
  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    25px;

  padding:
    18px
    0;

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.08);
}


.cookie-preference-row:last-child {
  border-bottom:
    0;
}


.cookie-preference-row p {
  margin:
    4px
    0
    0;

  color:
    #999999;

  font-size:
    11px;
}


.cookie-required {
  color:
    var(--lr-cyan);

  font-size:
    10px;

  font-weight:
    700;
}


.form-check-input:checked {
  background-color:
    var(--lr-cyan);

  border-color:
    var(--lr-cyan);
}


/* ==========================================================
   RESPONSIVE GLOBAL
========================================================== */


@media (max-width: 1199px) {

  .container-xl {
    width:
      min(
        calc(100% - 44px),
        var(--container-width)
      );
  }


  .footer-main {
    grid-template-columns:
      1.5fr
      0.7fr
      1fr;
  }


  .footer-contact {
    grid-column:
      2 / 4;
  }

}


@media (max-width: 991px) {

  .section {
    padding:
      90px
      0;
  }


  .site-navbar {
    padding:
      12px
      14px;
  }


  .site-navbar
  .navbar-shell {
    position:
      relative;

    width:
      100% !important;

    max-width:
      none !important;

    min-height:
      58px;

    padding:
      7px
      8px
      7px
      15px;
  }


  .navbar-brand img {
    height:
      33px;
  }


  .navbar-toggler {
    display:
      block;

    margin-left:
      auto;
  }


  .navbar-collapse {
    position:
      absolute;

    top:
      calc(100% + 9px);

    right:
      0;

    left:
      0;

    margin:
      0;

    padding:
      14px;

    background:
      rgba(3, 3, 3, 0.98);

    border:
      1px solid
      rgba(255, 255, 255, 0.11);

    border-radius:
      22px;

    box-shadow:
      0
      24px
      55px
      rgba(0, 0, 0, 0.5);

    backdrop-filter:
      blur(20px);
  }


  .navbar-nav {
    display:
      block;

    margin:
      0
      0
      10px !important;
  }


  .navbar-nav
  .nav-link {
    padding:
      11px
      14px !important;

    font-size:
      14px;
  }


  .navbar-call {
    width:
      100%;

    min-height:
      48px;

    font-size:
      14px;
  }


  .section-heading-row {
    grid-template-columns:
      1fr;

    gap:
      24px;
  }


  .section-heading-copy {
    max-width:
      650px;

    margin:
      0;
  }


  .faq-question {
    font-size: 17px;
  }


  .footer-main {
    grid-template-columns:
      1.6fr
      1fr;
  }


  .footer-contact {
    grid-column:
      auto;
  }

}


@media (max-width: 767px) {

  .container-xl {
    width:
      min(
        calc(100% - 28px),
        var(--container-width)
      );
  }


  .section {
    padding:
      72px
      0;
  }


  .section-kicker {
    margin-bottom:
      16px;

    font-size:
      9px;
  }


  .section-title {
    font-size:
      clamp(
        33px,
        9.5vw,
        47px
      );
  }


  .section-heading-row {
    margin-bottom:
      35px;
  }


  .footer-main {
    grid-template-columns:
      1fr
      1fr;

    gap:
      44px
      30px;
  }


  .footer-brand {
    grid-column:
      1 / -1;
  }


  .footer-bottom {
    flex-direction:
      column;

    gap:
      12px;
  }
  /* Global mobile forms: one comfortable column */
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .quote-field-full {
    grid-column: auto;
  }

  .quote-field label {
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 1.3;
  }

  .quote-field input,
  .quote-field select {
    height: 50px;
    padding: 0 14px;
    font-size: 16px;
  }

  .quote-field textarea {
    min-height: 96px;
    padding: 13px 14px;
    font-size: 16px;
  }

  .quote-submit {
    grid-column: auto;
    width: 100%;
    margin-top: 1px;
  }

  .quote-submit-button {
    width: 100%;
    min-height: 50px;
    font-size: 14px;
  }

  /* Global FAQ mobile layout */
  .faq-section {
    padding-top: 52px;
    padding-bottom: 76px;
  }

  .faq-heading {
    margin-bottom: 39px;
    text-align: left;
  }

  .faq-heading .section-kicker {
    justify-content: flex-start;
  }

  .faq-title {
    font-size: clamp(34px, 9.4vw, 46px);
  }

  .faq-heading > p {
    margin: 18px 0 0;
    font-size: 15px;
  }

  .faq-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-column + .faq-column {
    border-top: 0;
  }

  .faq-item summary {
    min-height: 80px;
    padding: 19px 1px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 46px 23px 1px;
  }

  .faq-answer p {
    font-size: 14px;
  }


  .whatsapp-float {
    right: 14px;
    bottom: 14px;

    width: 54px;
    height: 54px;
    min-height: 54px;

    padding: 0;

    background:
      var(--lr-cyan);

    border-color:
      var(--lr-cyan);

    border-radius: 50%;
  }


  .whatsapp-float span {
    display: none;
  }


  .whatsapp-float i {
    color: #000000;

    font-size: 24px;
  }



  .cookie-banner {
    right:
      12px;

    bottom:
      12px;

    left:
      12px;

    display:
      block;

    padding:
      17px;
  }


  .cookie-actions {
    display:
      grid;

    grid-template-columns:
      repeat(
        3,
        1fr
      );

    margin-top:
      14px;
  }

}


@media (max-width: 479px) {

  .faq-title {
    font-size: 33px;
  }


  .footer-main {
    grid-template-columns:
      1fr
      1fr;
  }


  .footer-contact {
    grid-column:
      1 / -1;
  }


  .cookie-actions {
    grid-template-columns:
      1fr;
  }

}

/* ==========================================================
   MOBILE CUSTOM SELECT
   Replaces native full-screen mobile select UI
========================================================== */


/*
   Desktop:
   Keep the normal select.
   Custom mobile control stays hidden.
*/

.mobile-select {
  display: none;
}



/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

  /*
     Hide the browser's native select visually.

     The select remains in the DOM so:
     - Web3Forms still receives its value
     - your existing JS validation still works
     - no form names need to change
  */

  .quote-field select.mobile-select-native {
    display: none !important;
  }


  .mobile-select {
    display: block;

    position: relative;

    width: 100%;
  }


  /* --------------------------------------------------------
     BUTTON THAT LOOKS LIKE THE NORMAL FORM FIELD
  -------------------------------------------------------- */

  .mobile-select-trigger {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    width: 100%;
    height: 52px;

    padding:
      0
      15px;

    color: #ffffff;

    text-align: left;

    background:
      rgba(255, 255, 255, 0.075);

    border:
      1px solid
      rgba(255, 255, 255, 0.16);

    border-radius: 15px;

    outline: none;

    font-family:
      var(--font-body);

    font-size: 16px;
    font-weight: 500;

    transition:
      background-color var(--transition),
      border-color var(--transition),
      box-shadow var(--transition);
  }


  .mobile-select-trigger:hover {
    background:
      rgba(255, 255, 255, 0.095);
  }


  .mobile-select-trigger:focus-visible {
    border-color:
      rgba(144, 247, 249, 0.85);

    box-shadow:
      0 0 0 3px
      rgba(144, 247, 249, 0.08);
  }


  .mobile-select-trigger-value {
    min-width: 0;

    overflow: hidden;

    text-overflow: ellipsis;
    white-space: nowrap;
  }


  /*
     Placeholder appearance.
  */

  .mobile-select-trigger.is-placeholder
  .mobile-select-trigger-value {
    color:
      rgba(255, 255, 255, 0.43);
  }


  .mobile-select-trigger-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    flex:
      0
      0
      auto;

    width: 24px;
    height: 24px;

    color:
      var(--lr-cyan);

    font-size: 15px;

    transition:
      transform
      var(--transition);
  }


  .mobile-select-trigger[
    aria-expanded="true"
  ]
  .mobile-select-trigger-icon {
    transform:
      rotate(180deg);
  }


  /*
     Existing validation can add
     .is-invalid to the real select.
     This then makes our visible
     mobile trigger red as well.
  */

  .mobile-select-native.is-invalid
  +
  .mobile-select
  .mobile-select-trigger {
    border-color:
      #ff6a6a;

    box-shadow:
      0 0 0 3px
      rgba(255, 106, 106, 0.07);
  }



  /* ========================================================
     BACKDROP
  ======================================================== */

  .mobile-select-backdrop {
    position: fixed;

    z-index: 2000;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    padding:
      22px;

    background:
      rgba(0, 0, 0, 0.68);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    backdrop-filter:
      blur(5px);

    -webkit-backdrop-filter:
      blur(5px);

    transition:
      opacity 180ms ease,
      visibility 180ms ease;
  }


  .mobile-select-backdrop.is-open {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
  }



  /* ========================================================
     POPUP
  ======================================================== */

  .mobile-select-popup {
    position: relative;

    display: flex;

    flex-direction: column;

    width: 100%;
    max-width: 420px;

    /*
       Crucial part:
       never takes over the whole screen.
    */

    max-height:
      min(
        68vh,
        540px
      );

    overflow: hidden;

    background:
      #0b0d0d;

    border:
      1px solid
      rgba(144, 247, 249, 0.22);

    border-radius:
      23px;

    box-shadow:
      0
      28px
      85px
      rgba(0, 0, 0, 0.58);

    transform:
      translateY(15px)
      scale(0.97);

    transition:
      transform 200ms ease;
  }


  .mobile-select-backdrop.is-open
  .mobile-select-popup {
    transform:
      translateY(0)
      scale(1);
  }



  /* ========================================================
     POPUP HEADER
  ======================================================== */

  .mobile-select-popup-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 18px;

    flex:
      0
      0
      auto;

    padding:
      17px
      17px
      14px
      20px;

    border-bottom:
      1px solid
      rgba(255, 255, 255, 0.1);
  }


  .mobile-select-popup-title {
    margin: 0;

    color:
      #ffffff;

    font-family:
      var(--font-title);

    font-size: 18px;
    font-weight: 700;

    line-height: 1.25;

    letter-spacing:
      -0.025em;
  }


  /*
     Very obvious close button.
  */

  .mobile-select-close {
    display: flex;

    align-items: center;
    justify-content: center;

    flex:
      0
      0
      39px;

    width: 39px;
    height: 39px;

    padding: 0;

    color:
      #000000;

    background:
      var(--lr-cyan);

    border: 0;

    border-radius:
      50%;

    font-size: 20px;

    line-height: 1;
  }


  .mobile-select-close:active {
    transform:
      scale(0.95);
  }



  /* ========================================================
     SCROLLABLE OPTIONS
  ======================================================== */

  .mobile-select-options {
    flex:
      1
      1
      auto;

    overflow-x: hidden;
    overflow-y: auto;

    overscroll-behavior:
      contain;

    padding:
      9px;

    -webkit-overflow-scrolling:
      touch;

    scrollbar-width:
      thin;

    scrollbar-color:
      rgba(144, 247, 249, 0.5)
      rgba(255, 255, 255, 0.05);
  }


  .mobile-select-options::-webkit-scrollbar {
    width: 5px;
  }


  .mobile-select-options::-webkit-scrollbar-track {
    background:
      rgba(255, 255, 255, 0.04);
  }


  .mobile-select-options::-webkit-scrollbar-thumb {
    background:
      rgba(144, 247, 249, 0.48);

    border-radius:
      999px;
  }



  /* ========================================================
     ONE OPTION
  ======================================================== */

  .mobile-select-option {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 14px;

    width: 100%;

    min-height: 52px;

    padding:
      10px
      12px;

    color:
      rgba(255, 255, 255, 0.82);

    text-align: left;

    background:
      transparent;

    border:
      1px solid
      transparent;

    border-radius:
      13px;

    font-family:
      var(--font-body);

    font-size: 15px;
    font-weight: 500;

    transition:
      color var(--transition),
      background-color var(--transition),
      border-color var(--transition);
  }


  .mobile-select-option
  +
  .mobile-select-option {
    margin-top: 3px;
  }


  .mobile-select-option:hover,
  .mobile-select-option:focus-visible {
    color:
      #ffffff;

    background:
      rgba(255, 255, 255, 0.06);

    outline: none;
  }


  /*
     Currently selected option.
  */

  .mobile-select-option.is-selected {
    color:
      #000000;

    background:
      var(--lr-cyan);

    border-color:
      var(--lr-cyan);
  }


  .mobile-select-option-check {
    display: none;

    flex:
      0
      0
      auto;

    font-size: 17px;
  }


  .mobile-select-option.is-selected
  .mobile-select-option-check {
    display: block;
  }


  /*
     Small phones.
  */

  @media (max-width: 479px) {

    .mobile-select-backdrop {
      padding:
        18px;
    }


    .mobile-select-popup {
      max-height:
        64vh;

      border-radius:
        20px;
    }


    .mobile-select-popup-header {
      padding:
        15px
        14px
        13px
        17px;
    }


    .mobile-select-popup-title {
      font-size: 17px;
    }


    .mobile-select-option {
      min-height: 50px;

      font-size: 14px;
    }

  }

}



/* ==========================================================
   PREVENT PAGE SCROLL WHILE OPTION POPUP IS OPEN
========================================================== */

body.mobile-select-open {
  overflow: hidden;
}