:root {
  --w3x-green: #5ad53c;
  --w3x-blue: #11a7e8;
  --w3x-yellow: #ffd32a;
  --w3x-ink: #14243a;
  --w3x-white: #fff;
  --w3x-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}
.w3x-sitebar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  color: #fff;
  transition: transform 0.38s var(--w3x-ease), background 0.35s ease,
    box-shadow 0.35s ease;
}
.w3x-sitebar-inner {
  width: min(1540px, calc(100% - 48px));
  margin: 0 auto;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  gap: 22px;
  position: relative;
}
.w3x-brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.w3x-logo {
  width: 250px;
  height: auto;
  display: block;
}
.w3x-logo-dark {
  display: none;
}
.w3x-nav-shell {
  margin-left: auto;
}
.w3x-nav-list {
  list-style: none;
  margin: 0;
  padding: 4px;
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.22);
 background: radial-gradient(circle at 78% 25%, rgba(202, 213, 221, 0.35), transparent 34%), linear-gradient(120deg, #FFFFFF 0%, #F8FBFD 48%, #EAF3F9 100%);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  border-radius: 34px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}
.w3x-nav-item {
  position: relative;
}
.w3x-nav-link {
  border: 0;
  background: transparent;
  color: #060606;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 20px;
  border-radius: 28px;
  
  font-size: 16px;
font-weight: 500;
line-height: 1.1;

  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.w3x-nav-link:hover,
.w3x-nav-link:focus-visible {
  color: #ffffff;
      background: #343131;
  /*color: #2c890b;
  background: rgba(255, 255, 255, 0.09); 
  outline: none;*/
}
.w3x-nav-link.w3x-active {
  color: #000000;
  position: relative;
}
.w3x-nav-link.w3x-active:hover {
    color: #ffffff;
}
.w3x-nav-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--w3x-yellow);
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(255, 211, 42, 0.85);
}
.w3x-chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
}
.w3x-has-dropdown.w3x-open .w3x-chevron,
.w3x-has-mega.w3x-open .w3x-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}
.w3x-sitebar-cta,
.w3x-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}
.w3x-sitebar-cta {
  background: var(--w3x-yellow);
  color: #111;
  padding: 18px 30px;
  border-radius: 31px;
  box-shadow: 0 8px 28px rgba(255, 211, 42, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.w3x-sitebar-cta:hover {
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 211, 42, 0.28);
}
.w3x-dropdown,
.w3x-mega {
  position: absolute;
  top: 100%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.25s var(--w3x-ease),
    visibility 0.2s ease;
}
.w3x-dropdown:before,
.w3x-mega:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 16px;
  background: transparent;
}
.w3x-dropdown {
  left: 50%;
  width: 330px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(250, 252, 255, 0.96);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 20, 45, 0.24);
}
.w3x-has-dropdown:hover .w3x-dropdown,
.w3x-has-dropdown.w3x-open .w3x-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.w3x-dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 10px;
  border-radius: 15px;
  text-decoration: none;
  color: var(--w3x-ink);
  font-size: 14px;
  font-weight: 650;
  transition: background 0.2s ease, transform 0.2s ease;
}
.w3x-dropdown-link:hover {
  background: #edf5fa;
  color: #0e4d83;
  transform: translateX(2px);
}
.w3x-arrow {
  font-size: 19px;
  color: #168ed0;
  flex: 0 0 auto;
}
.w3x-has-mega .w3x-mega {
  left: auto;
  right: -250px;
}
.w3x-mega {
  width: min(980px, calc(100vw - 32px));
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 292px;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(250, 252, 255, 0.95);
  backdrop-filter: blur(25px) saturate(135%);
  -webkit-backdrop-filter: blur(25px) saturate(135%);
  border-radius: 25px;
  box-shadow: 0 28px 80px rgba(0, 22, 44, 0.28);
}
.w3x-mega:before {
  left: auto;
  right: 95px;
  width: 14px;
  height: 14px;
  top: -7px;
  background: rgba(250, 252, 255, 0.95);
  border-left: 1px solid rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.62);
  transform: rotate(45deg);
}
.w3x-has-mega:hover .w3x-mega,
.w3x-has-mega.w3x-open .w3x-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.w3x-mega-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 0;
}
.w3x-mega-column {
  padding: 4px 10px;
}
.w3x-mega-column + .w3x-mega-column {
  border-left: 1px solid #dce5ed;
}
.w3x-mega-link {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 14px 8px;
  border-radius: 13px;
  text-decoration: none;
  color: #17365d;
  font-size: 15px;
  font-weight: 550;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.w3x-mega-link:hover {
  background: rgba(229, 239, 248, 0.8);
  color: #0e4d83;
  transform: translateX(2px);
}
.w3x-mini-icon {
  width: 18px;
  text-align: center;
  font-size: 14px;
  color: #215a92;
}
.w3x-spotlight {
  border: 1px solid #e0e8ef;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(23, 54, 93, 0.08);
  min-width: 0;
}
.w3x-spotlight-image {
  display: block;
  aspect-ratio: 1.7;
  overflow: hidden;
}
.w3x-spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--w3x-ease);
}
.w3x-spotlight:hover .w3x-spotlight-image img {
  transform: scale(1.035);
}
.w3x-spotlight-body {
  padding: 15px 16px 17px;
}
.w3x-spotlight-kicker {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: #168ed0;
  font-weight: 800;
}
.w3x-spotlight h3 {
  font-size: 19px;
  line-height: 1.15;
  margin: 7px 0 7px;
  color: #14243a;
}
.w3x-spotlight p {
  font-size: 12px;
  line-height: 1.5;
  color: #5f7085;
  margin: 0 0 12px;
}
.w3x-spotlight-link {
  font-size: 13px;
  font-weight: 700;
  color: #078fd0;
  text-decoration: none;
}
.w3x-spotlight-link span {
  font-size: 18px;
  margin-left: 5px;
}
.w3x-sitebar.w3x-sticky {
  background: rgba(250, 252, 255, 0.86);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  box-shadow: 0 10px 35px rgba(9, 34, 55, 0.1);
  color: #172335;
}
.w3x-sitebar.w3x-sticky .w3x-sitebar-inner {
          padding: 14px 14px;
}
.w3x-sitebar.w3x-sticky .w3x-logo-light {
  display: none;
}
.w3x-sitebar.w3x-sticky .w3x-logo-dark {
  display: block;
}
.w3x-sitebar.w3x-sticky .w3x-nav-list {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(16, 35, 55, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.w3x-sitebar.w3x-sticky .w3x-nav-link {
  color: #182637;
}
.w3x-sitebar.w3x-sticky .w3x-nav-link:hover {
 color: #ffffff;
      background: #343131;
 /* background: #edf3f7;
  color: #102033;*/
}
.w3x-sitebar.w3x-hidden {
  transform: translateY(-110%);
}

.w3x-sitebar.w3x-page-solid {
  background: rgba(250, 252, 255, 0.92);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  box-shadow: 0 10px 35px rgba(9, 34, 55, 0.08);
  color: #172335;
}

.w3x-sitebar.w3x-page-solid .w3x-logo-light {
  display: none;
}

.w3x-sitebar.w3x-page-solid .w3x-logo-dark {
  display: block;
}

.w3x-sitebar.w3x-page-solid .w3x-nav-list {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(16, 35, 55, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.w3x-sitebar.w3x-page-solid .w3x-nav-link {
  color: #182637;
}

.w3x-sitebar.w3x-page-solid .w3x-nav-link:hover,
.w3x-sitebar.w3x-page-solid .w3x-nav-link:focus-visible {
  color: #ffffff;
      background: #343131;
  /*color: #102033;
  background: #edf3f7;*/
}

.w3x-sitebar.w3x-page-solid .w3x-sitebar-cta {
  box-shadow: 0 8px 28px rgba(255, 211, 42, 0.18);
}


/* ==========================================
   GLOBAL FIXED HEADER OFFSET
   Reserves space for the fixed header
========================================== */

#header-placeholder {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
}

/* Internal pages only: JS sets the actual height */
body.w3x-inner-page #header-placeholder {
  height: var(--w3x-header-height, 0px);
  min-height: var(--w3x-header-height, 0px);
}

/* Keep the fixed header independent of the reserved space */
.w3x-sitebar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
}

/* Remove the old zero-height mobile spacer override */
@media (max-width: 991.98px) {
  .w3x-page-spacer {
    height: auto !important;
  }
}


/* Desktop-only floating tagline */
.hero-floating-tagline {
    position: absolute;
    top: 24%;
    left: 45%;
    z-index: 5;

    width: 220px;
    text-align: center;

    transform: rotate(-7deg);
    pointer-events: none;
}


.hero-tagline-text {
    font-family: "Segoe Print", "Comic Sans MS", cursive;
    font-size: 17px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.4;

    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-tagline-arrow {
    display: block;
    width: 165px;
    height: 28px;
    margin: 0 auto;
    overflow: visible;
}

/* Hide on tablets and mobile */
@media (max-width: 991px) {
    .hero-floating-tagline {
        display: none !important;
    }
}


.w3x-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #061826 url("../imgs/home/w3-hero-dark.webp") center center/cover
    no-repeat;
  color: #fff;
}
.w3x-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(2, 15, 25, 0.9) 0%,
      rgba(2, 15, 25, 0.64) 42%,
      rgba(2, 15, 25, 0.2) 73%,
      rgba(2, 15, 25, 0.62) 100%
    ),
    linear-gradient(
      0deg,
      rgba(0, 13, 21, 0.7),
      transparent 35%,
      rgba(0, 8, 16, 0.25)
    );
}
.w3x-hero-side-shield {
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 0;
  width: 48%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(2, 15, 25, 0.14) 18%,
    rgba(2, 15, 25, 0.3)
  );
  filter: blur(8px);
  pointer-events: none;
}
.w3x-hero-container {
  position: relative;
  z-index: 2;
  width: min(1540px, calc(100% - 48px));
  margin: auto;
  padding-top: 90px;
  padding-bottom: 90px;
}
.w3x-hero-row {
  min-height: calc(100svh - 194px);
}
.w3x-hero-copy {
  padding: 40px 5% 0 2%;
}
.w3x-eyebrow {
  font-size: 11px;
  letter-spacing: 0.21em;
  font-weight: 700;
  margin-bottom: 19px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.w3x-eyebrow span {
  width: 34px;
  height: 3px;
  background: var(--w3x-yellow);
  display: inline-block;
}
.w3x-hero h1 {
  font-size: clamp(40px, 3.2vw, 58px);
  line-height: 1.18;
  color: #f7f7f7 !important;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
  font-weight: 400;
}
.hero-city {
    position: relative;
    display: inline-block;

    font-family: "Segoe Print", "Bradley Hand",
                 "Comic Sans MS", cursive;
    font-size: 0.92em;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -1px;
    line-height: 1.5;

    color: #FFD32A;
    white-space: nowrap;

    padding: 0 10px 14px 2px;
    margin-bottom: 5px;

    vertical-align: baseline;
    overflow: visible;
}

/* Text being written */
.hero-city-writing {
    display: inline-block;
    position: relative;

    white-space: nowrap;
    overflow: visible;

    clip-path: inset(0 100% 0 0);

    animation: hero-city-write 2.8s
               steps(24, end) 0.5s forwards;
}

/* Location icon - appears after writing */
.hero-city i {
    display: inline-block;
    position: relative;

    margin-left: 6px;
    font-size: 0.55em;
    font-style: normal;
    vertical-align: middle;

    color: #FFD32A;
    opacity: 0;

    animation: hero-city-icon 0.4s
               ease-out 3.3s forwards;
}

/* Thin hand-drawn underline */
.hero-city::after {
    content: "";

    position: absolute;

    left: 2px;
    bottom: 1px;

    width: 100%;
    height: 2px;

    background: #FFD32A;
    border-radius: 50%;

    transform: rotate(-1.5deg) scaleX(0);
    transform-origin: left center;

    animation: hero-city-underline 0.7s
               ease-out 3.5s forwards;
}

/* ==========================================
   ANIMATIONS
========================================== */

/* Reveal the text progressively */
@keyframes hero-city-write {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 -5px 0 0);
    }
}

/* Show location icon after text */
@keyframes hero-city-icon {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Draw underline */
@keyframes hero-city-underline {
    from {
        transform: rotate(-1.5deg) scaleX(0);
    }

    to {
        transform: rotate(-1.5deg) scaleX(1);
    }
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {
    .hero-city {
        letter-spacing: -0.5px;
        padding-right: 12px;
    }
}

@media (max-width: 575px) {
    .hero-city {
        font-size: 0.88em;
        letter-spacing: -0.4px;
        padding: 0 12px 12px 2px;
        margin-bottom: 4px;
    }

    .hero-city i {
        margin-left: 4px;
    }

    .hero-city::after {
        height: 1.5px;
        bottom: 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero-city-writing,
    .hero-city i,
    .hero-city::after {
        animation: none;
        clip-path: none;
        opacity: 1;
        transform: none;
    }
}
.w3x-hero h1 em {
  font-style: normal;
  color: var(--w3x-green);
}
.w3x-hero h2 {
  font-size: clamp(21px, 1.65vw, 31px);
  line-height: 1.15;
  margin: 0 0 22px;
  font-weight: 500;
  color: #bf9e07;
  letter-spacing: -0.025em;
}
.w3x-hero-copy > p {
  max-width: 610px;
  font-size: 16px;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 27px;
}
.w3x-hero-cta {
  background: var(--w3x-yellow);
  color: #111;
  padding: 17px 26px;
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(255, 211, 42, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.w3x-hero-cta:hover {
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(255, 211, 42, 0.24);
}
.w3x-hero-cta span {
  font-size: 22px;
}
.w3x-trust-points {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 31px;
}
.w3x-trust-points > i {
  height: 35px;
  width: 1px;
  background: rgba(255, 255, 255, 0.34);
}
.w3x-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
}
.w3x-trust-icon {
  width: 38px;
  height: 38px;
  border: 2px solid var(--w3x-green);
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--w3x-green);
  font-size: 20px;
}
.w3x-trust-icon.w3x-blue {
  border-color: var(--w3x-blue);
  color: var(--w3x-blue);
}
.w3x-hero-features {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 13px;
  padding: 0 1% 2% 4%;
  position: relative;
}
.w3x-feature-card {
  display: grid;
  grid-template-columns: 125px 1fr;
  align-items: center;
  gap: 19px;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 22px;
  background:
  radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.95), transparent 42%),
  radial-gradient(circle at 85% 20%, rgba(225, 240, 250, 0.55), transparent 45%),
  linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.88) 0%,
    rgba(248, 251, 253, 0.82) 50%,
    rgba(235, 244, 249, 0.78) 100%
  );
  backdrop-filter: blur(23px) saturate(130%);
  -webkit-backdrop-filter: blur(23px) saturate(130%);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}
.w3x-feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.w3x-feature-card:hover {
  transform: scale(1.03);
  box-shadow: 0 18px 45px rgba(255, 255, 255, 0.45), 0 0 22px rgba(255, 255, 255, 0.25);
  z-index: 2;
}
.w3x-feature-card img {
  width: 125px;
  height: 100px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.w3x-feature-card h3 {
  font-size: 15px;
  line-height: 1.18;
  margin: 0 0 7px;
  font-weight: 750;
}
.w3x-feature-card p {
  font-size: 13px;
  line-height: 1.45;
  color: rgb(0 0 0 / 82%);
  margin: 0 0 8px;
  max-width: 300px;
}
.w3x-feature-card a {
  font-size: 12px;
  font-weight: 700;
  color: #43c1f2;
  text-decoration: none;
}
.w3x-feature-card a span {
  font-size: 16px;
  margin-left: 5px;
}
.w3x-mobile-socials {
  display: none;
}
.w3x-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.w3x-menu-toggle {
  display: none;
}
@media (max-width: 1199.98px) {
  .w3x-logo {
    width: 175px;
  }
  .w3x-sitebar-inner {
    width: min(100% - 32px, 1540px);
    gap: 12px;
  }
  .w3x-nav-link {
    padding: 13px 13px;
    font-size: 14px;
  }
  .w3x-sitebar-cta {
    padding: 15px 19px;
    font-size: 13px;
  }
  .w3x-has-mega .w3x-mega {
    right: -180px;
  }
  .w3x-hero-copy {
    padding-left: 0;
  }
  .w3x-hero-features {
    padding-left: 2%;
  }
  .w3x-feature-card {
    grid-template-columns: 105px 1fr;
  }
  .w3x-feature-card img {
    width: 105px;
    height: 88px;
  }
  .w3x-hero h1 {
    font-size: clamp(42px, 5vw, 62px);
  }
}
@media (max-width: 991.98px) {
  .w3x-sitebar-inner {
    width: 100%;
    padding: 14px 18px;
    z-index: 1003;
  }
  .w3x-logo {
    width: 175px;
  }
  .w3x-nav-shell {
    position: fixed;
    inset: 0;
    z-index: 1001;
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
    background: rgba(246, 249, 252, 0.97);
    backdrop-filter: blur(26px) saturate(135%);
    -webkit-backdrop-filter: blur(26px) saturate(135%);
    padding: 78px 18px 28px;
    transform: translate3d(102%, 0, 0);
    transition: transform 0.48s var(--w3x-ease);
    pointer-events: none;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable;
  }
  .w3x-sitebar.w3x-mobile-open .w3x-nav-shell {
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }

  @media (max-width: 991.98px) {
  .w3x-page-spacer {
    height: 0 !important;
  }

  .w3x-sitebar.w3x-page-solid {
    background: #fff;
    color: #172335;
  }

  @media (max-width: 991.98px) {

  .w3x-sitebar.w3x-page-solid {
    background: #fff;
    color: #172335;
  }

  .w3x-sitebar.w3x-page-solid.w3x-sticky {
    background: rgb(253 253 253 / 77%);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
  }

}

  .w3x-sitebar.w3x-page-solid .w3x-logo-light {
    display: none;
  }

  .w3x-sitebar.w3x-page-solid .w3x-logo-dark {
    display: block;
  }
}

.hero-greeting {
    display: inline-block;
    color: #FFD32A !important;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .hero-greeting {
        font-size: 14px;
        margin-bottom: 8px;
    }
}

  .w3x-sitebar.w3x-mobile-open {
    background: transparent;
    box-shadow: none;
  }
  .w3x-sitebar.w3x-mobile-open .w3x-brand {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .w3x-nav-list {
    display: block;
    border: 1px solid rgba(19, 45, 68, 0.07);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 55px rgba(16, 43, 65, 0.1);
    border-radius: 18px;
    overflow: hidden;
    padding: 0;
  }
  .w3x-nav-item {
    border-bottom: 1px solid rgba(18, 44, 67, 0.08);
  }
  .w3x-nav-item:last-child {
    border-bottom: 0;
  }
  .w3x-nav-link {
    width: 100%;
    padding: 17px 16px;
    color: #17283b;
    background: transparent;
    border-radius: 0;
    font-size: 19px;
    font-weight: 650;
    justify-content: space-between;
  }
  .w3x-nav-link:hover,
  .w3x-nav-link:focus-visible {
    background: #f4f8fb;
    color: #17283b;
  }
  .w3x-nav-link.w3x-active {
    font-weight: 800;
    background: #fff;
  }
  .w3x-nav-dot {
    left: auto;
    right: 12px;
    bottom: 7px;
    transform: none;
    width: 7px;
    height: 7px;
  }
  .w3x-chevron {
    width: 8px;
    height: 8px;
  }
  .w3x-sitebar-cta {
    display: none;
  }
  .w3x-sitebar.w3x-mobile-open .w3x-sitebar-cta {
    display: inline-flex;
    position: fixed;
    z-index: 1006;
    top: 10px;
    left: 18px;
    right: 70px;
    bottom: auto;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 16px;
    font-size: 14px;
    gap: 10px;
    box-shadow: 0 10px 28px rgba(255, 211, 42, 0.22);
  }
  .w3x-sitebar.w3x-mobile-open .w3x-sitebar-cta span {
    font-size: 18px;
  }
  .w3x-menu-toggle {
    display: flex;
    position: fixed;
    top: 10px;
    right: 12px;
    z-index: 1007;
    margin: 0;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(20, 43, 61, 0.58);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    flex: 0 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  .w3x-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.28s ease, opacity 0.2s ease;
  }
  .w3x-sitebar.w3x-sticky .w3x-menu-toggle {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(20, 35, 50, 0.12);
  }
  .w3x-sitebar.w3x-sticky .w3x-menu-toggle span {
    background: #152233;
  }
  .w3x-sitebar.w3x-mobile-open .w3x-menu-toggle {
    background: #edf2f5;
    border-color: rgba(20, 35, 50, 0.1);
    box-shadow: 0 8px 22px rgba(20, 35, 50, 0.08);
  }
  .w3x-sitebar.w3x-mobile-open .w3x-menu-toggle span {
    background: #152233;
  }
  .w3x-sitebar.w3x-mobile-open .w3x-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .w3x-sitebar.w3x-mobile-open .w3x-menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .w3x-sitebar.w3x-mobile-open .w3x-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .w3x-dropdown,
  .w3x-mega {
    position: static;
    width: auto;
    transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease, opacity 0.25s ease, visibility 0.25s ease;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    border-radius: 0;
  }
  .w3x-has-dropdown.w3x-open .w3x-dropdown,
  .w3x-has-mega.w3x-open .w3x-mega {
    transform: none;
    max-height: 1800px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .w3x-dropdown:before,
  .w3x-mega:before {
    display: none;
  }
  .w3x-dropdown-link {
    padding: 13px 16px 13px 30px;
    border-radius: 0;
    color: #43586e;
    font-size: 15px;
    font-weight: 650;
    background: #f8fafc;
  }
  .w3x-dropdown-link + .w3x-dropdown-link {
    border-top: 1px solid rgba(18, 44, 67, 0.05);
  }
  .w3x-dropdown-link:hover {
    background: #f0f6fa;
    color: #0e4d83;
    transform: none;
  }
  .w3x-dropdown-link .w3x-arrow {
    font-size: 17px;
  }
  .w3x-mega {
    display: block;
  }
  .w3x-mega-links {
    display: block;
  }
  .w3x-mega-column {
    padding: 0;
    border: 0 !important;
  }
  .w3x-mega-link {
    grid-template-columns: 18px 1fr auto;
    padding: 13px 16px 13px 30px;
    border-radius: 0;
    color: #43586e;
    font-size: 15px;
    font-weight: 650;
    background: #f8fafc;
  }
  .w3x-mega-link + .w3x-mega-link {
    border-top: 1px solid rgba(18, 44, 67, 0.05);
  }
  .w3x-mini-icon {
    font-size: 13px;
  }
  .w3x-spotlight {
    margin: 14px 0 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
  }
  .w3x-spotlight-image {
    aspect-ratio: 1.9;
  }
  .w3x-spotlight-body {
    padding: 13px 14px 15px;
  }
  .w3x-spotlight h3 {
    font-size: 18px;
  }
  .w3x-spotlight p {
    font-size: 12px;
  }
  .w3x-mobile-socials {
    display: block;
    margin: 18px 2px 0;
    padding: 18px 6px 7px;
    border-top: 1px solid rgba(18, 44, 67, 0.08);
    text-align: center;
  }
  .w3x-social-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 14px;
    color: #8090a0;
  }
  .w3x-social-line span {
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #cbd6df);
  }
  .w3x-social-line span:last-child {
    background: linear-gradient(90deg, #cbd6df, transparent);
  }
  .w3x-social-line b {
    font-size: 9px;
    letter-spacing: 0.19em;
    font-weight: 800;
    color: #7b8c9d;
    white-space: nowrap;
  }
  .w3x-social-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
  }
  .w3x-social-list a {
    position: relative;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(18, 50, 76, 0.1);
    border-radius: 14px;
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.96),
      rgba(240, 246, 250, 0.86)
    );
    box-shadow: 0 8px 22px rgba(20, 48, 72, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    color: #173650;
    text-decoration: none;
    transition: transform 0.24s var(--w3x-ease), box-shadow 0.24s ease,
      border-color 0.24s ease, background 0.24s ease;
  }
  .w3x-social-list a:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
      circle at 30% 15%,
      rgba(255, 255, 255, 0.85),
      transparent 45%
    );
    pointer-events: none;
  }
  .w3x-social-list a:hover,
  .w3x-social-list a:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(17, 167, 232, 0.28);
    box-shadow: 0 13px 28px rgba(20, 48, 72, 0.13),
      0 0 0 3px rgba(17, 167, 232, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
    background: #fff;
    outline: 0;
  }
  .w3x-social-icon {
    position: relative;
    z-index: 1;
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
  }
  .w3x-social-icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .w3x-social-instagram:hover {
    color: #d62976;
  }
  .w3x-social-facebook:hover {
    color: #1877f2;
  }
  .w3x-social-linkedin:hover {
    color: #0a66c2;
  }
  .w3x-social-youtube:hover {
    color: #ff0033;
  }
  .w3x-social-x:hover {
    color: #111;
  }
  .w3x-social-whatsapp:hover {
    color: #16a34a;
  }
  .w3x-social-github:hover {
    color: #24292f;
  }
  .w3x-hero {
    min-height: auto;
  }
  .w3x-hero-container {
    width: min(100% - 30px, 720px);
    padding-top: 120px;
    padding-bottom: 50px;
  }
  .w3x-hero-row {
    min-height: auto;
  }
  .w3x-hero-copy {
    padding: 30px 0 0;
  }
  .w3x-hero h1 {
    font-size: clamp(44px, 9vw, 68px);
  }
  .w3x-hero-copy > p {
    max-width: 650px;
  }
  .w3x-hero-features {
    padding: 45px 0 0;
    gap: 12px;
  }
  .w3x-feature-card {
    grid-template-columns: 115px 1fr;
  }
  .w3x-feature-card img {
    width: 115px;
    height: 90px;
  }
}
@media (max-width: 575.98px) {
  .w3x-logo {
    width: 185px;
  }
  .w3x-sitebar-inner {
    width: 100%;
    padding: 14px 14px;
  }
  .w3x-nav-shell {
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 24px;
  }
  .w3x-sitebar.w3x-mobile-open .w3x-sitebar-cta {
    left: 14px;
    right: 66px;
    top: 9px;
    min-height: 44px;
    padding: 11px 15px;
    border-radius: 15px;
    font-size: 13px;
  }
  .w3x-menu-toggle {
    top: 15px;
    right: 10px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
  .w3x-nav-link {
    font-size: 18px;
    padding: 16px 14px;
  }
  .w3x-dropdown-link,
  .w3x-mega-link {
    font-size: 14px;
    padding-left: 28px;
    padding-right: 14px;
  }
  .w3x-mobile-socials {
    margin-top: 16px;
    padding: 17px 0 5px;
  }
  .w3x-social-line {
    gap: 7px;
    margin-bottom: 12px;
  }
  .w3x-social-line span {
    width: 20px;
  }
  .w3x-social-line b {
    font-size: 8px;
    letter-spacing: 0.16em;
  }
  .w3x-social-list {
    gap: 7px;
  }
  .w3x-social-list a {
    width: 39px;
    height: 39px;
    border-radius: 13px;
  }
  .w3x-social-icon {
    width: 18px;
    height: 18px;
  }
  .w3x-hero-container {
    width: calc(100% - 28px);
    padding-top: 105px;
  }
  .w3x-eyebrow {
    font-size: 9px;
    letter-spacing: 0.16em;
  }
  .w3x-eyebrow span {
    width: 25px;
  }
  .w3x-hero h1 {
    font-size: clamp(40px, 12vw, 55px);
  }
  .w3x-hero h2 {
    font-size: 21px;
  }
  .w3x-hero-copy > p {
    font-size: 14px;
  }
  .w3x-hero-cta {
    padding: 15px 20px;
    border-radius: 14px;
  }
  .w3x-trust-points {
    gap: 12px;
  }
  .w3x-trust-item {
    font-size: 11px;
  }
  .w3x-trust-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }
  .w3x-feature-card {
    grid-template-columns: 92px 1fr;
    padding: 9px;
    gap: 12px;
    border-radius: 18px;
  }
  .w3x-feature-card img {
    width: 92px;
    height: 82px;
    border-radius: 13px;
  }
  .w3x-feature-card h3 {
    font-size: 13px;
  }
  .w3x-feature-card p {
    font-size: 10px;
  }
}
html.w3x-lock-scroll {
  overflow: hidden;
}

@media (max-width: 359.98px) {
  .w3x-social-list {
    gap: 5px;
  }
  .w3x-social-list a {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }
  .w3x-social-icon {
    width: 16px;
    height: 16px;
  }
}
