  /* ==========================================
    GILROY
  ========================================== */

  @font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Extrabold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
  }


  /* ==========================================
    VARIABLES
  ========================================== */

  :root {
    --white: #ffffff;
    --primary: #063767;
    --secondary: #0096d5;
    --accent-cyan: #7dd3f8;
    --text-muted: #454545;
    --bg-light: #f8fafc;
    --border: #e5e7eb;

    --shadow-card:
      0 2px 16px rgba(6, 55, 103, 0.07);

    --max-width: 1440px;

    --font: 'Gilroy', sans-serif;
  }


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

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

  html {
    scroll-behavior: smooth;
  }

  html,
  body {
    font-family: var(--font);
  }

  body {
    color: var(--primary);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  button,
  input,
  textarea,
  select {
    font-family: var(--font);
  }

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

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

  ul {
    list-style: none;
  }


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

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

    gap: 8px;

    border: none;
    border-radius: 8px;

    font-size: 16px;
    font-weight: 600;
    line-height: 24px;

    cursor: pointer;
    white-space: nowrap;

    transition: opacity 0.2s ease;
  }

  .btn:hover {
    opacity: 0.9;
  }

  .btn--primary {
    padding: 16px 32px;

    background: var(--secondary);
    color: var(--white);
  }

  .btn--outline {
    min-width: 112px;
    height: 36px;
    padding: 20px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0096d5;
    border: 1px solid var(--secondary);

    border-radius: 10px;

    color: #ffffff;

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

    line-height: 1;

    text-decoration: none;

    transition:
      background 0.2s ease,
      border-color 0.2s ease;
  }


  .btn--outline:hover {
    background: #0087bf;
    border-color: #0087bf;
    color: #ffffff;
  }


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

  #navbar-placeholder {
    min-height: 80px;
  }

  .navbar {
    width: 100%;
    height: 80px;

    position: sticky;
    top: 0;
    z-index: 1000;

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

    background: var(--white);
  }

  .navbar__inner {
    width: 100%;
    max-width: var(--max-width);

    padding: 0 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navbar__logo {
    flex-shrink: 0;
  }

  .navbar__logo img {
    width: 128px;
    height: 30px;

    object-fit: contain;
  }

  .navbar__links {
    display: flex;
    align-items: center;

    gap: 28px;
  }

  .navbar__link {
    height: 40px;

    padding: 8px 4px;

    display: flex;
    align-items: center;

    gap: 5px;

    color: var(--primary);

    font-size: 16px;
    font-weight: 500;
    line-height: 24px;

    transition: color 0.2s ease;
  }

  .navbar__link:hover {
    color: var(--secondary);
  }

  .navbar__link--dropdown {
    background: none;
    border: none;

    cursor: pointer;
  }

  .navbar__actions {
    display: flex;
    align-items: center;

    gap: 12px;
  }

  .navbar__actions .btn {
    font-size: 15px;
  }


  /* ==========================================
    ACTIVE NAVIGATION
  ========================================== */

  .navbar__link.active,
  #solutionsButton.active {
    color: #0096d5 !important;
  }

  #solutionsButton.active .navbar__chevron {
    color: #0096d5 !important;
  }

  #solutionsButton.active .navbar__chevron path {
    stroke: #0096d5 !important;
  }


  /* ==========================================
    SOLUTIONS DROPDOWN
  ========================================== */

  .navbar__dropdown {
    position: relative;
  }

  .navbar__chevron {
    transition: transform 0.2s ease;
  }

  .navbar__dropdown.is-open .navbar__chevron {
    transform: rotate(180deg);
  }

  .solutions-dropdown {
    width: 220px;

    position: absolute;
    top: 50px;
    left: 0;

    display: none;

    background: var(--white);

    border-radius: 0 0 12px 12px;

    box-shadow:
      0 10px 30px rgba(6, 55, 103, 0.14);
  }

  .navbar__dropdown.is-open .solutions-dropdown {
    display: block;
  }

  .solutions-dropdown__item {
    width: 100%;
    min-height: 54px;

    padding: 0 16px;

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

    color: var(--primary);

    font-size: 16px;
    font-weight: 400;
  }

  .solutions-dropdown__item:hover {
    background: #f7f9fb;
  }

  .solutions-dropdown__item {
  width: 100%;
  min-height: 54px;

  padding: 0 16px;

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

  color: var(--primary);

  font-size: 16px;
  font-weight: 400;
}

.solutions-dropdown__item:hover {
  background: #f7f9fb;
  color: var(--secondary);
}


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

  .footer {
    width: 100%;

    padding: 80px 48px;

    display: flex;
    flex-direction: column;
    align-items: center;

    background: var(--primary);
  }

  .footer__main {
    width: 100%;
    max-width: 1344px;

    display: flex;
    justify-content: space-between;

    gap: 24px;
  }

  .footer__brand {
    width: 154px;

    display: flex;
    flex-direction: column;

    gap: 20px;
  }

  .footer__logo {
    width: 150px;
  }

  .footer__tagline {
    color: var(--white);

    font-size: 14px;
    font-weight: 400;
    line-height: 24.38px;
  }

  .footer__col {
    width: 154px;
  }

  .footer__heading {
    color: var(--white);

    font-size: 16px;
    font-weight: 600;
    line-height: 22.4px;
  }

  .footer__list {
    padding-top: 16px;

    display: flex;
    flex-direction: column;

    gap: 10px;
  }

  .footer__list a {
    color: var(--white);

    font-size: 14px;
    font-weight: 400;
    line-height: 22.5px;
  }

  .footer__col--office {
    width: 154px;
  }

  .footer__contact {
    margin-top: 20px;

    display: flex;
    flex-direction: column;

    gap: 20px;
  }

  .footer__contact-label {
    display: flex;
    align-items: center;

    gap: 5px;

    color: var(--white);

    font-size: 12px;
    font-weight: 600;
    line-height: 16.5px;

    letter-spacing: 0.0667em;

    text-transform: uppercase;
  }

  .footer__contact-text {
    margin-top: 6px;

    color: var(--white);

    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }

  .footer__col--newsletter {
    width: 284px;
  }

  .footer__subscribe {
    height: 55px;

    margin-top: 14px;

    display: flex;
  }

  .footer__input {
    flex: 1;

    padding: 10px 14px;

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

    border:
      0.8px solid rgba(255, 255, 255, 0.15);

    border-right: none;

    border-radius: 4px 0 0 4px;

    color: var(--white);

    font-size: 13px;

    outline: none;
  }

  .footer__input::placeholder {
    color: var(--white);
    opacity: 0.7;
  }

  .footer__subscribe-btn {
    padding: 10px 14px;

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

    background: #1e90ff;

    border: none;

    border-radius: 0 4px 4px 0;

    color: #ffffff;

    cursor: pointer;
  }

  .footer__subheading {
    margin-top: 24px;

    color: var(--white);

    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
  }

  .footer__social {
    margin-top: 14px;

    display: flex;

    gap: 14px;
  }

  .footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer__social img {
    width: 20px;
    height: 20px;
  }

  .footer__app-badges {
    margin-top: 14px;

    display: flex;

    gap: 10px;
  }

  .footer__app-badge {
    padding: 8px 16px;

    display: flex;
    align-items: center;

    gap: 10px;

    background: #111111;

    border:
      0.8px solid rgba(255, 255, 255, 0.2);

    border-radius: 8px;
  }

  .footer__app-badge>img {
    width: 20px;

    flex-shrink: 0;
  }

  .footer__app-small {
    display: block;

    color: var(--white);

    font-size: 9px;
    line-height: 9px;
  }

  .footer__app-name {
    display: block;

    color: var(--white);

    font-size: 14px;
    font-weight: 700;
    line-height: 18.2px;
  }

  .footer__bottom {
    width: 100%;
    max-width: 1344px;

    margin-top: 56px;
    padding-top: 32px;

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

    border-top:
      0.8px solid rgba(255, 255, 255, 0.15);
  }

  .footer__copyright {
    color: rgba(255, 255, 255, 0.5);

    font-size: 14px;
    font-weight: 400;
  }

  .footer__legal {
    display: flex;

    gap: 24px;
  }

  .footer__legal a {
    color: rgba(255, 255, 255, 0.5);

    font-size: 14px;
    font-weight: 400;
  }


  /* ==========================================
    NAVBAR / FOOTER RESPONSIVE
  ========================================== */

  @media (max-width: 1200px) {

    .navbar__links {
      display: none;
    }

    .footer__main {
      flex-wrap: wrap;
    }
  }


  @media (max-width: 768px) {

    .navbar__inner {
      padding: 0 24px;
    }

    .navbar__actions .btn--outline {
      display: none;
    }

    .footer {
      padding: 60px 24px;
    }

    .footer__main {
      gap: 35px;
    }

    .footer__bottom {
      flex-direction: column;
      align-items: flex-start;

      gap: 20px;
    }
  }


  /* =========================================================
    CONTACT SALES + BOOK DEMO POPUPS
  ========================================================= */

  body.wd-modal-open {
    overflow: hidden;
  }


  /* ==========================================
    MODAL WRAPPER
  ========================================== */

  .wd-modal {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: none;

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

    padding: 24px;
  }

  .wd-modal.is-open {
    display: flex;
  }


  /* ==========================================
    BACKGROUND OVERLAY
  ========================================== */

  .wd-modal__overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.26);
  }


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

  .wd-modal__dialog {
    position: relative;
    z-index: 1;

    width: min(1335px, calc(100vw - 120px));

    height: auto;
    max-height: none;

    padding: 32px 44px 36px;

    overflow: visible;

    background: #ffffff;

    border-radius: 10px;
  }


  /* ==========================================
    CLOSE BUTTON
  ========================================== */

  .wd-modal__close {
    position: absolute;

    top: 14px;
    right: 18px;

    width: 30px;
    height: 30px;

    padding: 0;

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

    background: transparent;

    border: none;

    color: #454545;

    font-size: 28px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;
  }


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

  .wd-modal__header {
    margin-bottom: 20px;

    text-align: center;
  }

  .wd-modal__header h2 {
    margin: 0;

    color: #063767;

    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
  }

  .wd-modal__header p {
    margin: 7px 0 0;

    color: #454545;

    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }


  /* ==========================================
    FORM BACKGROUND
  ========================================== */

  .wd-form__box {
    width: 100%;

    padding: 18px 22px 20px;

    background: #f4f6f8;

    border-radius: 12px;
  }


  /* ==========================================
    FORM GRID
  ========================================== */

  .wd-form__grid {
    display: grid;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    column-gap: 22px;
    row-gap: 16px;
  }


  /* ==========================================
    FORM FIELD
  ========================================== */

  .wd-form__field {
    width: 100%;
  }

  .wd-form__field label {
    display: block;

    margin-bottom: 7px;

    color: #111111;

    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
  }


  /* ==========================================
    INPUT / SELECT / TEXTAREA
  ========================================== */

  .wd-form__field input,
  .wd-form__field select,
  .wd-form__field textarea {
    width: 100%;

    background: #ffffff;

    border: none;
    border-radius: 5px;

    outline: none;

    color: #111111;

    font-family: "Gilroy", sans-serif;

    font-size: 16px;
    font-weight: 400;
  }

  .wd-form__field input {
    height: 48px;

    padding: 0 14px;
  }


  /* ==========================================
    SELECT
  ========================================== */

  .wd-select-wrap {
    position: relative;
  }

  .wd-form__field select {
    height: 48px;

    padding: 0 45px 0 14px;

    color: #8a8a8a;

    appearance: none;
    -webkit-appearance: none;

    cursor: pointer;
  }

  .wd-select-wrap::after {
    content: "";

    position: absolute;

    top: 50%;
    right: 18px;

    width: 10px;
    height: 10px;

    border-right: 2px solid #666666;
    border-bottom: 2px solid #666666;

    transform:
      translateY(-70%) rotate(45deg);

    pointer-events: none;
  }


  /* ==========================================
    MESSAGE
  ========================================== */

  .wd-form__field--message {
    margin-top: 16px;
  }

  .wd-form__field textarea {
    height: 175px;

    padding: 14px;

    display: block;

    resize: none;
  }


  /* ==========================================
    SUBMIT BUTTON
  ========================================== */

  .wd-form__submit {
    margin-top: 18px;

    display: flex;
    justify-content: center;
  }

  .wd-form__submit-btn {
    width: 245px;
    height: 58px;

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

    background: #0096d5;

    border: none;
    border-radius: 9px;

    color: #ffffff;

    font-family: "Gilroy", sans-serif;

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

    cursor: pointer;

    transition: opacity 0.2s ease;
  }

  .wd-form__submit-btn:hover {
    opacity: 0.92;
  }


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

  @media (max-width: 900px) {

    .wd-modal {
      padding: 16px;
    }

    .wd-modal__dialog {
      width: 100%;

      padding: 28px 22px;
    }

    .wd-form__grid {
      grid-template-columns: 1fr;
    }

    .wd-form__field textarea {
      height: 140px;
    }
  }


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

  @media (max-width: 600px) {

    .wd-modal {
      padding: 10px;
    }

    .wd-modal__dialog {
      width: 100%;

      padding: 30px 14px 18px;

      border-radius: 8px;
    }

    .wd-modal__header {
      margin-bottom: 16px;
    }

    .wd-modal__header h2 {
      font-size: 21px;
    }

    .wd-modal__header p {
      font-size: 14px;
    }

    .wd-form__box {
      padding: 15px 12px;
    }

    .wd-form__field label {
      font-size: 14px;
    }

    .wd-form__field input,
    .wd-form__field select {
      height: 44px;
    }

    .wd-form__field textarea {
      height: 110px;
    }

    .wd-form__submit-btn {
      width: 100%;
      height: 50px;
    }
  }

/* Secure form integration */
.wd-form__field--other-city { grid-column: 1 / -1; }
.wd-form__field--other-city[hidden] { display: none; }
.wd-form__submit-btn:disabled { cursor: wait; opacity: 0.62; }
.wd-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; clip-path: inset(50%) !important; white-space: nowrap !important; }
.wd-turnstile { min-height: 65px; margin-top: 18px; display: flex; justify-content: center; }

/* =========================================================
   PRODUCTION SHELL ADAPTATIONS
========================================================= */
.navbar__logo img {
  width: auto;
  height: 50px;
  max-width: min(214px, 34vw);
  object-fit: contain;
}

.navbar__contact {
  border: 0;
  cursor: pointer;
}

.navbar__menu-button,
.navbar__mobile {
  display: none;
}

.navbar__menu-button {
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 8px;
  background: #f1f8fb;
  cursor: pointer;
}

.navbar__menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--primary);
}

.wd-modal__overlay {
  border: 0;
  cursor: pointer;
}

.wd-modal__dialog {
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.wd-form__status {
  min-height: 22px;
  margin: 14px 0 0;
  color: #086f3d;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.wd-form__status[data-state="error"] {
  color: #9e2a2b;
}

.wd-form__status[data-state="pending"] {
  color: #454545;
}

.wd-contact-section {
  padding: 96px 50px;
  background: #eef7fb;
}

.wd-contact-section__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.wd-contact-section__copy {
  padding-top: 24px;
}

.wd-contact-section__eyebrow {
  margin-bottom: 14px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
}

.wd-contact-section__copy h2 {
  color: var(--primary);
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.05;
}

.wd-contact-section__copy > p:last-child {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
}

.wd-form--inline .wd-form__box {
  box-shadow: 0 16px 44px rgba(6, 55, 103, .1);
}

@media (min-width: 1201px) and (max-width: 1400px) {
  .navbar__inner {
    padding: 0 20px;
  }

  .navbar__links {
    gap: 16px;
  }

  .navbar__link,
  .navbar__actions .btn {
    font-size: 14px;
  }

  .navbar__actions .btn {
    padding: 12px 18px;
  }
}

@media (max-width: 1200px) {
  .navbar__inner {
    padding: 0 24px;
  }

  .navbar__links,
  .navbar__actions {
    display: none;
  }

  .navbar__menu-button {
    display: block;
  }

  .navbar__mobile {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 80px);
    padding: 14px 24px 24px;
    overflow-y: auto;
    border-top: 1px solid var(--border);
    background: #fff;
    box-shadow: 0 18px 34px rgba(6, 55, 103, .12);
  }

  .navbar__mobile.is-open {
    display: grid;
  }

  .navbar__mobile > a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    color: var(--primary);
    font-weight: 600;
  }

  .navbar__mobile .btn {
    width: 100%;
    margin-top: 18px;
    border: 0;
  }

  .wd-contact-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ==========================================
   REQUEST DEMO IFRAME MODAL
========================================== */

.wd-demo-modal .wd-modal__dialog {
  width: min(920px, calc(100vw - 48px));
  padding: 52px 28px 28px;
  overflow: auto;
}

.wd-demo-modal .wd-modal__header {
  margin-bottom: 18px;
}

.wd-demo-modal__iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
}

@media (max-width: 600px) {
  .wd-modal.wd-demo-modal {
    padding: 12px;
  }

  .wd-demo-modal .wd-modal__dialog {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    padding: 48px 12px 12px;
  }

  .wd-demo-modal__iframe {
    height: min(600px, 76vh);
  }
}

@media (max-width: 600px) {
  .navbar__logo img {
    width: auto;
    height: 50px;
  }

  .wd-contact-section {
    padding: 72px 16px;
  }

  .wd-contact-section__copy h2 {
    font-size: 38px;
  }
}
