*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}





:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}


.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}


@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}


body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}


p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}


a {
  cursor: pointer;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}


ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}


.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
.hs-form-field {
  margin-bottom: 1.4rem;
}


form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

.form-title {
  margin-bottom: 0;
}


form legend {
  font-size: 0.875rem;
}


form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}


.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}


form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}


form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

form fieldset {
  background-color: transparent !important;
}

.hs-form {
  background-color: transparent !important;
}

form label {
  background-color: transparent !important;
}


.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}


.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}


form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}


.grecaptcha-badge {
  margin: 0 auto;
}


table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}


td,
th {
  vertical-align: top;
}


thead th {
  vertical-align: bottom;
}


.header-dnd-area .dnd-section,
.header-dnd-area .dnd-column,
.header-dnd-area .dnd-row,
.header-dnd-area .row-fluid,
.header-dnd-area .span12,
.header-dnd-area > .row-fluid-wrapper,
.header-dnd-area .row-fluid-wrapper .row-fluid,
.header-dnd-area .dnd-section > .row-fluid-wrapper,
.header-dnd-area .dnd-section .row-fluid {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.busup-header {
  height: 89px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  z-index: 1000;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  will-change: position, transform, height;
}

/* Floating header state when scrolled */
.busup-header.scrolled {
  position: fixed !important;
  top: 6px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  height: 70px;
  width: calc(100% - 40px);
  max-width: 1200px;
  min-width: 280px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 0 40px;
  will-change: auto;
  transition: none;
  animation: slideDownHeader 0.3s ease-out;
}

@keyframes slideDownHeader {
  from {
    transform: translateX(-50%) translateY(-100%);
  }
  to {
    transform: translateX(-50%) translateY(0);
  }
}

.busup-header.scrolled .busup-header__container {
  padding: 0 8px;
  gap: 20px;
  max-width: 100%;
}

.busup-header.scrolled .busup-header__logo img {
  height: 24px;
  flex-shrink: 0;
}

.busup-header.scrolled .busup-header__cta .cta-button {
  width: 160px;
  height: 45px;
  font-size: 14px;
  flex-shrink: 0;
}

.busup-header.scrolled .busup-header__nav ul {
  gap: 28px;
  display: flex !important;
}

.busup-header.scrolled .busup-header__nav ul li a,
.busup-header.scrolled .nav-item-label {
  font-size: 14px !important;
}


.header--white {
  background-color: #fff;
}
.header--white .busup-header__nav ul li a,
.header--white .busup-header__nav ul li .nav-item-label {
  color: #515151 !important;
}
.header--white .busup-header__cta .cta-button {
  background: linear-gradient(180deg, #49E67F -31.46%, #00BF6F 153.37%);
  color: #2B2B2B;
}
.header--white .busup-header__mobile-cta {
  background: linear-gradient(180deg, #49E67F -31.46%, #00BF6F 153.37%);
  color: #2B2B2B;
}
.header--white .busup-header__mobile-cta:hover {
  box-shadow: 0 4px 15px rgba(0, 191, 111, 0.3);
}
.header--white .busup-header__logo img {
  filter: none;
}
.header--white .busup-header__lang .selected-lang {
  color: #515151;
}
.header--white .busup-header__lang .chevron,
.header--white .busup-header__mobile-toggle img {
  filter: none;
}

.header--green-gradient {
  background: linear-gradient(180deg, #49E67F -31.46%, #00BF6F 153.37%);
}
.header--green-gradient .busup-header__nav ul li a,
.header--green-gradient .busup-header__nav ul li .nav-item-label {
  color: #515151 !important;
}
.header--green-gradient .busup-header__cta .cta-button {
  background: linear-gradient(135deg, #ea6753 0%, #ff8a75 100%) !important;
  color: #FFFFFF !important;
  border: none !important;
  box-shadow: 0 6px 16px rgba(234, 103, 83, 0.3) !important;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease !important;
}
.header--green-gradient .busup-header__mobile-cta {
  background: linear-gradient(135deg, #ea6753 0%, #ff8a75 100%) !important;
  color: #FFFFFF !important;
  border: none !important;
  box-shadow: 0 6px 16px rgba(234, 103, 83, 0.3) !important;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease !important;
}
.header--green-gradient .busup-header__mobile-cta:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.header--green-gradient .busup-header__logo img {
  content: url("https://www.busup.com/hubfs/raw_assets/public/custom/themes/busup-site/images/logos/logo-white.svg");
}
.header--green-gradient .busup-header__lang .selected-lang {
  color: #515151;
}
.header--green-gradient .busup-header__lang .chevron,
.header--green-gradient .busup-header__mobile-toggle img {
  filter: none;
}



.busup-header__container {
  width: 100%;
  max-width: 1280px;
  padding: 0 53px;
  display: flex;
  align-items: center;
}

.busup-header__logo img {
  height: 27px;
  display: block;
}

.busup-header__nav {
  margin-left: auto;
}

.busup-header__nav .hs-menu-wrapper > ul {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.busup-header__nav .hs-menu-wrapper .hs-menu-item > a {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.busup-header__nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}
.busup-header__nav ul li {
  position: relative;
}
.busup-header__nav ul li a,
.busup-header__nav ul li .nav-item-label {
  font-size: 16px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}

.nav-item-with-dropdown {
  position: relative;
  display: inline-block;
}

.nav-item-label {
  cursor: pointer;
  display: inline-block;
}

.nav-dropdown-card {
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  transform: translateX(-50%);
  margin-top: 20px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, margin-top 0.3s ease;
  z-index: 1000;
}

.nav-item-with-dropdown:hover .nav-dropdown-card {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  margin-top: 12px;
}

.nav-dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px !important;
}

.nav-dropdown-list li {
  margin: 0;
  padding: 0;
  font-size: 13px !important;
}

.busup-header__nav .nav-dropdown-list li a {
  font-family: 'Bus Sans', sans-serif;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 20px !important;
  color: #2B2B2B !important;
  text-decoration: none !important;
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.busup-header__nav .nav-dropdown-list li a:hover {
  background-color: #F5F5F5;
  color: #00BF6F;
}

.busup-header__cta {
  margin-left: 53px; 
}
.busup-header__cta .cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 208px;
  height: 45px;
  font-family: 'Bus Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.busup-header__cta .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 191, 111, 0.3);
}

.busup-header__lang {
  position: relative;
  font-size: 12px;
  font-weight: 400;
  z-index: 20;
  margin-left: 53px;
}
.busup-header__lang .selected-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.2s ease;
  width: auto;
  min-width: 80px;
}
.busup-header__lang .selected-lang img {
  width: 28px;
  height: 28px;
}
.busup-header__lang .selected-lang .chevron {
  width: 15px;
  height: 8px;
  object-fit: contain;
}
.busup-header__lang .lang-options {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  list-style: none;
  padding: 8px 0;
  min-width: 120px;
  z-index: 20;
}
.busup-header__lang .lang-options li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.busup-header__lang .lang-options li:hover {
  background: #f5f5f5;
}
.busup-header__lang .lang-options img {
  width: 28px;
  height: 28px;
}

.hidden {
  display: none;
}

.busup-header__mobile-toggle {
  display: none;
  cursor: pointer;
}

.busup-header__mobile-cta {
  display: none;
}

.busup-header__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; 
  max-width: 224px;
  min-height: 460px;
  max-height: 100vh;
  background: linear-gradient(180deg, #49E67F 0%, #00BF6F 100%); 
  border-radius: 20px;
  z-index: 10000;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.busup-header__mobile-menu.hidden {
  display: none !important;
}

.mobile-menu-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

@media (max-width: 1280px) {
  .busup-header__container {
    width: 100%;
    max-width: none;
    padding: 0 40px;
  }

  .busup-header__nav ul {
    gap: 28px;
  }

  .busup-header__nav ul li a,
  .nav-item-label {
    font-size: 13px !important;
  }

  .busup-header__cta {
    margin-left: 40px;
  }

  .busup-header__cta .cta-button {
    width: 180px;
    height: 45px;
    font-size: 14px;
  }

  .busup-header__lang {
    margin-left: 40px;
  }
}

@media (max-width: 920px) {
  .busup-header__nav,
  .busup-header__cta {
    display: none;
  }
  .busup-header__mobile-toggle {
    display: block;
    width: 36px;
    height: 36px;
  }
  .busup-header__lang--desktop {
    display: none;
  }
  .busup-header__lang--mobile {
    display: none;
  }
  .busup-header__lang .lang-options {
    left: -25px;
  }
  .busup-header__container {
    justify-content: flex-start;
    align-items: center;
    padding: 0 12px;
    position: relative;
    gap: 16px;
  }
  
  .busup-header__logo img {
    width: 80px;
    height: 20px;
    object-fit: contain;
  }

  .busup-header.scrolled {
    position: fixed;
    top: 12px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    height: 48px;
    width: calc(100% - 24px);
    border-radius: 50px;
    padding: 0 12px;
    z-index: 9999;
    transition: none;
    animation: slideDownHeaderMobile 0.3s ease-out;
  }

  @keyframes slideDownHeaderMobile {
    from {
      transform: translateX(-50%) translateY(-100%);
    }
    to {
      transform: translateX(-50%) translateY(0);
    }
  }

  .busup-header.scrolled .busup-header__container {
    padding: 0 6px;
    gap: 8px;
  }

  .busup-header.scrolled .busup-header__logo img {
    width: 60px;
    height: 16px;
  }

  .busup-header.scrolled .busup-header__mobile-cta {
    padding: 6px 12px;
    height: 32px;
    font-size: 11px;
  }

  .busup-header__mobile-menu {
    position: fixed !important;
    z-index: 10000 !important;
  }

  .busup-header__mobile-cta {
    margin-left: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    height: 40px;
    font-family: 'Bus Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
    background: linear-gradient(180deg, #49E67F -31.46%, #00BF6F 153.37%);
    color: #2B2B2B;
    white-space: nowrap;
  }

  .busup-header__mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 191, 111, 0.3);
    margin-left: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    height: 40px;
    font-family: 'Bus Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    text-align: center;
    text-decoration: none;
  }
  
  .busup-header__lang {
    margin-left: auto;
  }
  .busup-header__lang .selected-lang {
    padding: 0;
    border: none;
    background: transparent;
  }
  .busup-header__lang .selected-lang img {
    width: 28px;
    height: 28px;
  }
  .busup-header__lang .selected-lang span {
    display: none;
  }
  .busup-header__lang .selected-lang .chevron {
    width: 12px;
    height: 7px;
  }

  .busup-header__mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 21px 0 21px;
    flex-shrink: 0;
  }
  .mobile-menu-logo {
    width: 80px;
    height: 20px;
    filter: brightness(0) invert(1);
  }
  .busup-header__mobile-menu__header button {
    font-size: 32px;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: #000;
    cursor: pointer;
    line-height: 1;
  }
  .busup-header__mobile-menu__header button:hover,
  .busup-header__mobile-menu__header button:focus {
    background-color: transparent;
    outline: none;
    border: none;
  }

  .busup-header__mobile-menu__list {
    padding: 36px 21px;
    flex-grow: 1;
    overflow-y: auto;
    min-height: 0; 
  }
  .busup-header__mobile-menu__list details {
    margin-bottom: 32px;
  }
  .busup-header__mobile-menu__list details:last-of-type {
    margin-bottom: 0;
  }
  .busup-header__mobile-menu__list summary {
    font-size: 15px;
    line-height: 20px;
    color: #000;
    display: flex;
    align-items: center;
    cursor: pointer;
    list-style: none;
    justify-content: flex-start; 
    gap: 10px;
  }
  .busup-header__mobile-menu__list summary::-webkit-details-marker {
    display: none;
  }
  .menu-chevron {
    width: 8px;
    height: 5px;
    flex-shrink: 0;
    transition: transform 0.2s ease-in-out;
  }
  details[open] > summary .menu-chevron {
      transform: rotate(180deg);
  }
  .busup-header__mobile-menu__list ul {
    padding-left: 19px; 
    margin-top: 16px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px; 
  }
  .busup-header__mobile-menu__list ul li {
    font-size: 12px;
    line-height: 18px;
    color: #000;
  }
  .busup-header__mobile-menu__list ul li a {
    text-decoration: none;
    color: inherit;
  }
  
  /* --- ESTILIZAÇÃO DOS LINKS SIMPLES (SEM SUBMENU) NO MOBILE --- */
  .mobile-nav-item-link {
    display: block;
    font-size: 15px;
    line-height: 20px;
    color: #000 !important; /* Força a cor preta padrão do menu */
    text-decoration: none !important; /* Remove o sublinhado */
    margin-bottom: 32px; /* Mantém o mesmo espaçamento dos itens com dropdown */
    font-family: inherit;
  }

  .mobile-nav-item-link:last-child {
    margin-bottom: 0; /* Remove a margem extra se for o último item do menu */
  }

  .busup-header__lang--mobile {
    display: block;
    position: relative;
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    padding: 24px 21px;
  }

  .busup-header__lang--mobile .selected-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.2s ease;
    width: auto;
    background: rgba(0, 0, 0, 0.05);
  }

  .busup-header__lang--mobile .selected-lang:hover {
    background: rgba(0, 0, 0, 0.1);
  }

  .busup-header__lang--mobile .selected-lang img {
    width: 24px;
    height: 24px;
  }

  .busup-header__lang--mobile .selected-lang span {
    display: inline;
    color: #000;
    font-weight: 500;
  }

  .busup-header__lang--mobile .selected-lang .chevron {
    width: 12px;
    height: 7px;
    margin-left: auto;
    transition: transform 0.2s ease-in-out;
  }

  .busup-header__lang--mobile .lang-options {
    position: absolute;
    top: 100%;
    left: 21px;
    right: 21px;
    margin-top: 8px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    list-style: none;
    padding: 8px 0;
    width: calc(100% - 42px);
    z-index: 20;
  }

  .busup-header__lang--mobile .lang-options li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    font-size: 13px;
    color: #000;
  }

  .busup-header__lang--mobile .lang-options li:hover {
    background: #f5f5f5;
  }

  .busup-header__lang--mobile .lang-options img {
    width: 24px;
    height: 24px;
  }

  .mobile-menu-button-container {
    padding: 24px 21px 16px;
    flex-shrink: 0;
  }
  .mobile-menu-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background: #2B2B2B;
    border-radius: 50px;
    font-family: 'Bus Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    text-decoration: none;
  }
  
}





/* =========================================================
   BUSUP GLOBAL HEADER — SAFE TEST VERSION
   Only affects the new global header module.
   Do not remove legacy header styles yet.
   ========================================================= */

/* ---------------------------------------------------------
   GLOBAL HEADER BASE — SCOPED
   --------------------------------------------------------- */

.busup-header[data-busup-global-header] {
  height: 89px !important;
  width: 100% !important;
  position: relative !important;
  z-index: 1000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: visible !important;
}

.busup-header[data-busup-global-header],
.busup-header[data-busup-global-header] * {
  box-sizing: border-box;
}

.busup-header[data-busup-global-header] .busup-header__container {
  width: 100% !important;
  max-width: 1280px !important;
  padding: 0 53px !important;
  display: flex !important;
  align-items: center !important;
  overflow: visible !important;
}

.busup-header[data-busup-global-header].header--white {
  background-color: #ffffff !important;
}

.busup-header[data-busup-global-header].header--green-gradient {
  background: linear-gradient(180deg, #49E67F -31.46%, #00BF6F 153.37%) !important;
}

.busup-header[data-busup-global-header] .busup-header__logo {
  display: inline-flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
  text-decoration: none !important;
}

.busup-header[data-busup-global-header] .busup-header__logo img {
  height: 27px !important;
  width: auto !important;
  display: block !important;
  object-fit: contain !important;
}

.busup-header[data-busup-global-header].header--green-gradient .busup-header__logo img {
  content: url("https://www.busup.com/hubfs/raw_assets/public/custom/themes/busup-site/images/logos/logo-white.svg");
}

.busup-header[data-busup-global-header].header--white .busup-header__logo img {
  filter: none !important;
}

/* ---------------------------------------------------------
   STICKY / SCROLLED STATE — SCOPED
   JS should add .scrolled to the header.
   --------------------------------------------------------- */

.busup-header[data-busup-global-header].scrolled {
  position: fixed !important;
  top: 6px !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  height: 70px !important;
  width: calc(100% - 40px) !important;
  max-width: 1200px !important;
  min-width: 280px !important;
  border-radius: 50px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
  padding: 0 40px !important;
  z-index: 9999 !important;
  animation: busupGlobalHeaderSlideDown 0.3s ease-out !important;
}

@keyframes busupGlobalHeaderSlideDown {
  from {
    transform: translateX(-50%) translateY(-100%);
  }

  to {
    transform: translateX(-50%) translateY(0);
  }
}

.busup-header[data-busup-global-header].scrolled .busup-header__container {
  padding: 0 8px !important;
  gap: 20px !important;
  max-width: 100% !important;
}

.busup-header[data-busup-global-header].scrolled .busup-header__logo img {
  height: 24px !important;
}

.busup-header[data-busup-global-header].scrolled .busup-header__cta .cta-button {
  width: 160px !important;
  height: 45px !important;
  font-size: 14px !important;
}

.busup-header[data-busup-global-header].scrolled .busup-header__nav .hs-menu-wrapper > ul {
  gap: 28px !important;
}

.busup-header[data-busup-global-header].scrolled .busup-header__nav .hs-menu-depth-1 > a {
  font-size: 14px !important;
}

/* ---------------------------------------------------------
   DESKTOP NATIVE HUBSPOT MENU
   --------------------------------------------------------- */

.busup-header[data-busup-global-header] .busup-header__nav {
  margin-left: auto !important;
  display: flex !important;
  align-items: center !important;
  min-width: 0 !important;
  overflow: visible !important;
}

.busup-header[data-busup-global-header] .busup-header__nav .hs-menu-wrapper,
.busup-header[data-busup-global-header] .busup-header__nav .hs-menu-wrapper > ul {
  overflow: visible !important;
}

.busup-header[data-busup-global-header] .busup-header__nav .hs-menu-wrapper > ul {
  display: flex !important;
  align-items: center !important;
  gap: 40px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.busup-header[data-busup-global-header] .busup-header__nav .hs-menu-wrapper ul,
.busup-header[data-busup-global-header] .busup-header__nav .hs-menu-wrapper li {
  list-style: none !important;
}

.busup-header[data-busup-global-header] .busup-header__nav .hs-menu-depth-1 {
  position: relative !important;
  margin: 0 !important;
  padding: 0 !important;
}

.busup-header[data-busup-global-header] .busup-header__nav .hs-menu-depth-1 > a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: #515151 !important;
  font-size: 16px !important;
  line-height: 1 !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  padding: 12px 0 !important;
  transition: color 0.2s ease !important;
}

.busup-header[data-busup-global-header] .busup-header__nav .hs-menu-depth-1 > a:hover,
.busup-header[data-busup-global-header] .busup-header__nav .hs-menu-depth-1.active > a,
.busup-header[data-busup-global-header] .busup-header__nav .hs-menu-depth-1.active-branch > a {
  color: #00845a !important;
  text-decoration: none !important;
}

/* Dropdown indicator */
.busup-header[data-busup-global-header] .busup-header__nav .hs-item-has-children > a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.72;
  margin-left: 4px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.busup-header[data-busup-global-header] .busup-header__nav .hs-item-has-children:hover > a::after {
  transform: rotate(225deg) translateY(-1px);
  opacity: 1;
}

/* Desktop dropdown */
.busup-header[data-busup-global-header] .busup-header__nav .hs-menu-children-wrapper {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(8px) scale(0.985) !important;
  min-width: 230px !important;
  padding: 10px !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 132, 90, 0.08) !important;
  border-radius: 18px !important;
  box-shadow:
    0 24px 60px rgba(0, 64, 43, 0.13),
    0 8px 20px rgba(0, 64, 43, 0.08) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  z-index: 999999 !important;
  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease !important;
}

.busup-header[data-busup-global-header] .busup-header__nav .hs-item-has-children:hover > .hs-menu-children-wrapper,
.busup-header[data-busup-global-header] .busup-header__nav .hs-item-has-children:focus-within > .hs-menu-children-wrapper {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) scale(1) !important;
}

.busup-header[data-busup-global-header] .busup-header__nav .hs-menu-children-wrapper::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-left: 1px solid rgba(0, 132, 90, 0.08);
  border-top: 1px solid rgba(0, 132, 90, 0.08);
  transform: translateX(-50%) rotate(45deg);
}

.busup-header[data-busup-global-header] .busup-header__nav .hs-menu-children-wrapper .hs-menu-item {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.busup-header[data-busup-global-header] .busup-header__nav .hs-menu-children-wrapper .hs-menu-item > a {
  display: block !important;
  width: 100% !important;
  padding: 10px 12px !important;
  border-radius: 11px !important;
  color: #2B2B2B !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease !important;
}

.busup-header[data-busup-global-header] .busup-header__nav .hs-menu-children-wrapper .hs-menu-item > a:hover,
.busup-header[data-busup-global-header] .busup-header__nav .hs-menu-children-wrapper .hs-menu-item.active > a {
  background: #f0fdf7 !important;
  color: #00845a !important;
  transform: translateX(2px) !important;
}

/* ---------------------------------------------------------
   CTA BUTTONS — SCOPED
   --------------------------------------------------------- */

.busup-header[data-busup-global-header] .busup-header__cta {
  margin-left: 53px !important;
  flex-shrink: 0 !important;
}

.busup-header[data-busup-global-header] .busup-header__cta .cta-button,
.busup-header[data-busup-global-header] .busup-header__cta .cta-button:hover,
.busup-header[data-busup-global-header] .busup-header__cta .cta-button:focus,
.busup-header[data-busup-global-header] .busup-header__cta .cta-button:focus-visible,
.busup-header[data-busup-global-header] .busup-header__cta .cta-button:active {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 208px !important;
  height: 45px !important;
  padding: 0 24px !important;
  border-radius: 999px !important;
  border: none !important;
  outline: none !important;
  cursor: pointer !important;
  text-decoration: none !important;
  font-family: inherit !important;
  font-size: 16px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  text-align: center !important;
  white-space: nowrap !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease !important;
}

.busup-header[data-busup-global-header].header--white .busup-header__cta .cta-button {
  background: linear-gradient(180deg, #49E67F -31.46%, #00BF6F 153.37%) !important;
  color: #2B2B2B !important;
  box-shadow: 0 8px 18px rgba(0, 191, 111, 0.18) !important;
}

.busup-header[data-busup-global-header].header--green-gradient .busup-header__cta .cta-button {
  background: linear-gradient(135deg, #ea6753 0%, #ff8a75 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 18px rgba(234, 103, 83, 0.28) !important;
}

.busup-header[data-busup-global-header] .busup-header__cta .cta-button:hover,
.busup-header[data-busup-global-header] .busup-header__cta .cta-button:focus-visible {
  transform: translateY(-2px) !important;
}

.busup-header[data-busup-global-header].header--white .busup-header__cta .cta-button:hover,
.busup-header[data-busup-global-header].header--white .busup-header__cta .cta-button:focus-visible {
  box-shadow: 0 12px 24px rgba(0, 191, 111, 0.24) !important;
}

.busup-header[data-busup-global-header].header--green-gradient .busup-header__cta .cta-button:hover,
.busup-header[data-busup-global-header].header--green-gradient .busup-header__cta .cta-button:focus-visible {
  box-shadow: 0 12px 24px rgba(234, 103, 83, 0.34) !important;
}

/* ---------------------------------------------------------
   DESKTOP LANGUAGE SWITCHER — SCOPED
   --------------------------------------------------------- */

.busup-header[data-busup-global-header] .busup-header__lang--desktop {
  position: relative !important;
  z-index: 80 !important;
  display: flex !important;
  align-items: center !important;
  margin-left: 53px !important;
}

.busup-header[data-busup-global-header] .busup-lang-desktop-trigger {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  min-width: 104px !important;
  height: 42px !important;
  padding: 0 17px 0 15px !important;
  border: 1px solid rgba(255, 255, 255, 0.42) !important;
  border-radius: 999px !important;
  background:
    linear-gradient(180deg, rgba(235, 255, 245, 0.72) 0%, rgba(218, 249, 235, 0.58) 100%) !important;
  color: #004d33 !important;
  cursor: pointer !important;
  font-family: inherit !important;
  line-height: 1 !important;
  box-shadow:
    0 10px 24px rgba(0, 77, 51, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(18px) saturate(1.25) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.25) !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease !important;
}

.busup-header[data-busup-global-header] .busup-lang-desktop-trigger:hover {
  transform: translateY(-1px) !important;
  border-color: rgba(255, 255, 255, 0.62) !important;
  background:
    linear-gradient(180deg, rgba(244, 255, 249, 0.82) 0%, rgba(225, 252, 239, 0.70) 100%) !important;
  box-shadow:
    0 16px 36px rgba(0, 77, 51, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.88) !important;
}

.busup-header[data-busup-global-header] .busup-lang-desktop-trigger:focus-visible {
  outline: none !important;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.22),
    0 16px 36px rgba(0, 77, 51, 0.14) !important;
}

.busup-header[data-busup-global-header] .busup-lang-desktop-trigger img:first-child {
  width: 24px !important;
  height: 24px !important;
  border-radius: 999px !important;
  object-fit: cover !important;
  display: block !important;
  flex-shrink: 0 !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.75),
    0 3px 8px rgba(0, 77, 51, 0.10) !important;
}

.busup-header[data-busup-global-header] .busup-lang-desktop-trigger span {
  font-size: 12px !important;
  font-weight: 850 !important;
  letter-spacing: 0.01em !important;
  color: #004d33 !important;
}

.busup-header[data-busup-global-header] .busup-lang-desktop-trigger .chevron {
  width: 10px !important;
  height: 10px !important;
  display: block !important;
  flex-shrink: 0 !important;
  opacity: 0.68 !important;
  transition: transform 0.22s ease, opacity 0.22s ease !important;
}

.busup-header[data-busup-global-header] .busup-header__lang--desktop.is-open .busup-lang-desktop-trigger .chevron {
  transform: rotate(180deg) !important;
  opacity: 1 !important;
}

.busup-header[data-busup-global-header] .busup-lang-desktop-menu {
  position: absolute !important;
  top: calc(100% + 12px) !important;
  right: 0 !important;
  width: 264px !important;
  padding: 7px !important;
  margin: 0 !important;
  border-radius: 24px !important;
  background:
    linear-gradient(180deg, rgba(242, 255, 248, 0.88) 0%, rgba(224, 250, 237, 0.82) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.54) !important;
  box-shadow:
    0 30px 70px rgba(0, 64, 43, 0.18),
    0 10px 24px rgba(0, 64, 43, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(24px) saturate(1.35) !important;
  -webkit-backdrop-filter: blur(24px) saturate(1.35) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(8px) scale(0.985) !important;
  transform-origin: top right !important;
  pointer-events: none !important;
  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease !important;
  z-index: 999999 !important;
}

.busup-header[data-busup-global-header] .busup-header__lang--desktop.is-open .busup-lang-desktop-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
  pointer-events: auto !important;
}

.busup-header[data-busup-global-header] .busup-lang-desktop-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 32px;
  width: 12px;
  height: 12px;
  background: rgba(242, 255, 248, 0.88);
  border-left: 1px solid rgba(255, 255, 255, 0.54);
  border-top: 1px solid rgba(255, 255, 255, 0.54);
  transform: rotate(45deg);
}

.busup-header[data-busup-global-header] .busup-lang-desktop-option {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  min-height: 54px !important;
  padding: 10px 12px !important;
  border-radius: 17px !important;
  text-decoration: none !important;
  color: #004d33 !important;
  transition:
    background-color 0.16s ease,
    transform 0.16s ease !important;
}

.busup-header[data-busup-global-header] .busup-lang-desktop-option:hover {
  background: rgba(255, 255, 255, 0.48) !important;
  transform: translateX(2px) !important;
  text-decoration: none !important;
}

.busup-header[data-busup-global-header] .busup-lang-desktop-option.is-current {
  background: rgba(255, 255, 255, 0.58) !important;
  box-shadow: inset 0 0 0 1px rgba(0, 132, 90, 0.07) !important;
}

.busup-header[data-busup-global-header] .busup-lang-desktop-option img {
  width: 26px !important;
  height: 26px !important;
  border-radius: 999px !important;
  object-fit: cover !important;
  flex-shrink: 0 !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.76),
    0 3px 8px rgba(0, 77, 51, 0.10) !important;
}

.busup-header[data-busup-global-header] .busup-lang-desktop-option-text {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  min-width: 0 !important;
}

.busup-header[data-busup-global-header] .busup-lang-desktop-option-text strong {
  font-size: 14px !important;
  font-weight: 850 !important;
  line-height: 1.15 !important;
  color: #004d33 !important;
}

.busup-header[data-busup-global-header] .busup-lang-desktop-option-text small {
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
  color: rgba(0, 77, 51, 0.58) !important;
}

.busup-header[data-busup-global-header] .busup-lang-desktop-option.is-current::after {
  content: "";
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #00bf6f;
  box-shadow: 0 0 0 4px rgba(0, 191, 111, 0.14);
}

/* ---------------------------------------------------------
   MOBILE HEADER + MOBILE MENU — SCOPED
   --------------------------------------------------------- */

.busup-header[data-busup-global-header] .busup-header__mobile-toggle,
.busup-header[data-busup-global-header] .busup-header__mobile-cta {
  display: none !important;
}

.busup-header__mobile-menu[data-busup-mobile-menu] {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  max-width: 260px !important;
  min-height: 460px !important;
  max-height: 100vh !important;
  background: linear-gradient(180deg, #49E67F 0%, #00BF6F 100%) !important;
  border-radius: 0 0 24px 0 !important;
  z-index: 10000 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 24px 60px rgba(0, 64, 43, 0.22) !important;
  overflow: hidden !important;
}

.busup-header__mobile-menu[data-busup-mobile-menu].hidden {
  display: none !important;
}

.busup-header__mobile-menu[data-busup-mobile-menu] .mobile-menu-container {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  min-height: 0 !important;
}

.busup-header__mobile-menu[data-busup-mobile-menu] .busup-header__mobile-menu__header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 18px 22px 0 22px !important;
  flex-shrink: 0 !important;
}

.busup-header__mobile-menu[data-busup-mobile-menu] .mobile-menu-logo {
  width: 86px !important;
  height: auto !important;
  display: block !important;
  filter: brightness(0) invert(1) !important;
}

.busup-header__mobile-menu[data-busup-mobile-menu] .busup-header__mobile-menu-close,
.busup-header__mobile-menu[data-busup-mobile-menu] .busup-header__mobile-menu-close:hover,
.busup-header__mobile-menu[data-busup-mobile-menu] .busup-header__mobile-menu-close:focus,
.busup-header__mobile-menu[data-busup-mobile-menu] .busup-header__mobile-menu-close:active {
  appearance: none !important;
  -webkit-appearance: none !important;
  font-size: 32px !important;
  line-height: 1 !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #000000 !important;
  cursor: pointer !important;
  transform: none !important;
}

.busup-header__mobile-menu[data-busup-mobile-menu] .busup-header__mobile-menu__list {
  padding: 36px 22px 20px !important;
  flex-grow: 1 !important;
  overflow-y: auto !important;
  min-height: 0 !important;
}

.busup-header__mobile-menu[data-busup-mobile-menu] .busup-header__mobile-menu__list .hs-menu-wrapper ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.busup-header__mobile-menu[data-busup-mobile-menu] .busup-header__mobile-menu__list .hs-menu-depth-1 {
  margin: 0 0 28px 0 !important;
  padding: 0 !important;
}

.busup-header__mobile-menu[data-busup-mobile-menu] .busup-header__mobile-menu__list .hs-menu-depth-1 > a {
  display: block !important;
  color: #000000 !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}

.busup-header__mobile-menu[data-busup-mobile-menu] .busup-header__mobile-menu__list .hs-menu-children-wrapper {
  position: static !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
  padding: 16px 0 0 18px !important;
  margin: 0 !important;
}

.busup-header__mobile-menu[data-busup-mobile-menu] .busup-header__mobile-menu__list .hs-menu-children-wrapper .hs-menu-item {
  margin: 0 !important;
  padding: 0 !important;
}

.busup-header__mobile-menu[data-busup-mobile-menu] .busup-header__mobile-menu__list .hs-menu-children-wrapper .hs-menu-item > a {
  display: block !important;
  color: #000000 !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
  font-weight: 400 !important;
  text-decoration: none !important;
}

/* Mobile language selector */
.busup-header__mobile-menu[data-busup-mobile-menu] .busup-mobile-lang {
  margin: 0 22px 24px !important;
  padding-top: 24px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
  flex-shrink: 0 !important;
}

.busup-header__mobile-menu[data-busup-mobile-menu] .busup-mobile-lang__control {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 220px !important;
  height: 48px !important;
  border-radius: 999px !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
}

.busup-header__mobile-menu[data-busup-mobile-menu] .busup-lang-current-flag {
  position: absolute !important;
  left: 16px !important;
  top: 50% !important;
  width: 24px !important;
  height: 24px !important;
  border-radius: 999px !important;
  object-fit: cover !important;
  transform: translateY(-50%) !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

.busup-header__mobile-menu[data-busup-mobile-menu] .busup-lang-native-select {
  position: relative !important;
  z-index: 1 !important;
  width: 100% !important;
  height: 48px !important;
  padding: 0 38px 0 50px !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: #ffffff !important;
  cursor: pointer !important;
  font-family: inherit !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 48px !important;
  outline: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}

.busup-header__mobile-menu[data-busup-mobile-menu] .busup-lang-native-select option {
  color: #004d33 !important;
  font-weight: 700 !important;
  background: #ffffff !important;
}

.busup-header__mobile-menu[data-busup-mobile-menu] .busup-lang-select-chevron {
  position: absolute !important;
  right: 16px !important;
  top: 50% !important;
  width: 10px !important;
  height: 10px !important;
  transform: translateY(-50%) !important;
  pointer-events: none !important;
  z-index: 2 !important;
  filter: brightness(0) invert(1) !important;
  opacity: 0.9 !important;
}

/* ---------------------------------------------------------
   RESPONSIVE HEADER
   --------------------------------------------------------- */

@media (max-width: 1280px) {
  .busup-header[data-busup-global-header] .busup-header__container {
    max-width: none !important;
    padding: 0 40px !important;
  }

  .busup-header[data-busup-global-header] .busup-header__nav .hs-menu-wrapper > ul {
    gap: 28px !important;
  }

  .busup-header[data-busup-global-header] .busup-header__nav .hs-menu-depth-1 > a {
    font-size: 13px !important;
  }

  .busup-header[data-busup-global-header] .busup-header__cta,
  .busup-header[data-busup-global-header] .busup-header__lang--desktop {
    margin-left: 40px !important;
  }

  .busup-header[data-busup-global-header] .busup-header__cta .cta-button {
    width: 180px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 920px) {
  .busup-header[data-busup-global-header] {
    height: 72px !important;
  }

  .busup-header[data-busup-global-header] .busup-header__container {
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 0 12px !important;
    position: relative !important;
    gap: 16px !important;
  }

  .busup-header[data-busup-global-header] .busup-header__nav,
  .busup-header[data-busup-global-header] .busup-header__cta,
  .busup-header[data-busup-global-header] .busup-header__lang--desktop {
    display: none !important;
  }

  .busup-header[data-busup-global-header] .busup-header__mobile-toggle {
    appearance: none !important;
    -webkit-appearance: none !important;
    display: inline-flex !important;
    width: 36px !important;
    height: 36px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
  }

  .busup-header[data-busup-global-header] .busup-header__mobile-toggle img {
    width: 24px !important;
    height: 24px !important;
    display: block !important;
  }

  .busup-header[data-busup-global-header] .busup-header__logo img {
    width: 80px !important;
    height: 20px !important;
    object-fit: contain !important;
  }

  .busup-header[data-busup-global-header] .busup-header__mobile-cta,
  .busup-header[data-busup-global-header] .busup-header__mobile-cta:hover,
  .busup-header[data-busup-global-header] .busup-header__mobile-cta:focus,
  .busup-header[data-busup-global-header] .busup-header__mobile-cta:focus-visible,
  .busup-header[data-busup-global-header] .busup-header__mobile-cta:active {
    appearance: none !important;
    -webkit-appearance: none !important;
    margin-left: auto !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 8px 16px !important;
    height: 40px !important;
    border: none !important;
    border-radius: 999px !important;
    cursor: pointer !important;
    font-family: inherit !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    line-height: 1 !important;
    text-align: center !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transform: none !important;
  }

  .busup-header[data-busup-global-header].header--white .busup-header__mobile-cta {
    background: linear-gradient(180deg, #49E67F -31.46%, #00BF6F 153.37%) !important;
    color: #2B2B2B !important;
  }

  .busup-header[data-busup-global-header].header--green-gradient .busup-header__mobile-cta {
    background: linear-gradient(135deg, #ea6753 0%, #ff8a75 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(234, 103, 83, 0.28) !important;
  }

  .busup-header[data-busup-global-header].scrolled {
    top: 12px !important;
    height: 48px !important;
    width: calc(100% - 24px) !important;
    border-radius: 50px !important;
    padding: 0 12px !important;
  }

  .busup-header[data-busup-global-header].scrolled .busup-header__container {
    padding: 0 6px !important;
    gap: 8px !important;
  }

  .busup-header[data-busup-global-header].scrolled .busup-header__logo img {
    width: 60px !important;
    height: 16px !important;
  }

  .busup-header[data-busup-global-header].scrolled .busup-header__mobile-cta {
    padding: 6px 12px !important;
    height: 32px !important;
    font-size: 11px !important;
  }
}

/* =========================================================
   HEADER CTA CONTACT ROUTER
   Adapted from approved hero router styles.
   ========================================================= */

.busup-header-router {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483000 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  background-color: rgba(0, 0, 0, 0.76) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  padding: 20px !important;
  box-sizing: border-box !important;
  transition: opacity 0.3s cubic-bezier(0.4, 0.0, 0.2, 1), visibility 0.3s ease !important;
}

.busup-header-router.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.busup-header-router__modal {
  position: relative !important;
  width: 100% !important;
  max-width: 760px !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  background: #ffffff !important;
  border-radius: 24px !important;
  border: none !important;
  outline: none !important;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3) !important;
  transform: translateY(40px) scale(0.98) !important;
  opacity: 0 !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease !important;
  padding: 42px !important;
  box-sizing: border-box !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

.busup-header-router.is-visible .busup-header-router__modal {
  transform: translateY(0) scale(1) !important;
  opacity: 1 !important;
}

/* Modal mais largo apenas quando há formulário aberto */
.busup-header-router__modal[data-current-step="sales"],
.busup-header-router__modal[data-current-step="operator"] {
  max-width: 940px !important;
  padding: 48px 54px 52px !important;
}

.busup-header-router__close,
.busup-header-router__close:hover,
.busup-header-router__close:focus,
.busup-header-router__close:focus-visible,
.busup-header-router__close:active {
  position: absolute !important;
  top: 20px !important;
  right: 20px !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #999999 !important;
  transition: none !important;
  z-index: 10 !important;
  padding: 0 !important;
  transform: none !important;
}

.busup-header-router__close svg {
  width: 16px !important;
  height: 16px !important;
  display: block !important;
}

.busup-header-router__close::before,
.busup-header-router__close::after {
  display: none !important;
  content: none !important;
}

.busup-header-router__step {
  display: none !important;
}

.busup-header-router__step.is-active {
  display: block !important;
}

.busup-header-router__modal-header {
  max-width: 640px !important;
  margin-bottom: 32px !important;
}

.busup-header-router__modal-header--form {
  margin-bottom: 28px !important;
}

.busup-header-router__modal-header--support {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.busup-header-router__eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 14px !important;
  padding: 7px 12px !important;
  border-radius: 999px !important;
  background: rgba(0, 191, 111, 0.10) !important;
  color: #00845a !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

.busup-header-router__eyebrow span {
  width: 7px !important;
  height: 7px !important;
  border-radius: 999px !important;
  background: #00bf6f !important;
  box-shadow: 0 0 0 4px rgba(0, 191, 111, 0.14) !important;
}

.busup-header-router__modal-header h2 {
  margin: 0 !important;
  font-size: 24px !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
  font-weight: 800 !important;
  color: #515151 !important;
}

.busup-header-router__modal-header p {
  margin: 16px 0 0 !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  color: #666666 !important;
  font-weight: 400 !important;
}

.busup-header-router__choices {
  display: grid !important;
  gap: 12px !important;
}

.busup-header-router__choice-card,
.busup-header-router__choice-card:hover,
.busup-header-router__choice-card:focus,
.busup-header-router__choice-card:focus-visible,
.busup-header-router__choice-card:active {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 100% !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  border: 1px solid #ebfcf5 !important;
  outline: none !important;
  color: inherit !important;
  text-decoration: none !important;
  padding: 20px !important;
  display: grid !important;
  grid-template-columns: 44px 1fr auto !important;
  gap: 16px !important;
  align-items: center !important;
  text-align: left !important;
  cursor: pointer !important;
  font-family: inherit !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.035) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease !important;
}

.busup-header-router__choice-card:hover,
.busup-header-router__choice-card:focus-visible {
  background: #fbfffd !important;
  border-color: #dff7ed !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 24px rgba(0, 132, 90, 0.055) !important;
}

.busup-header-router__choice-card::before,
.busup-header-router__choice-card::after {
  display: none !important;
  content: none !important;
}

.busup-header-router__choice-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: #f0fdf7 !important;
  color: #00845a !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.busup-header-router__choice-icon svg,
.busup-header-router__support-icon svg {
  width: 22px !important;
  height: 22px !important;
  display: block !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.busup-header-router__choice-copy {
  display: flex !important;
  flex-direction: column !important;
  gap: 5px !important;
}

.busup-header-router__choice-copy strong {
  font-size: 17px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
  color: #515151 !important;
}

.busup-header-router__choice-copy small {
  font-size: 14px !important;
  line-height: 1.45 !important;
  font-weight: 400 !important;
  color: #666666 !important;
}

.busup-header-router__choice-action {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: #00845a !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}

.busup-header-router__back,
.busup-header-router__back:hover,
.busup-header-router__back:focus,
.busup-header-router__back:focus-visible,
.busup-header-router__back:active {
  appearance: none !important;
  -webkit-appearance: none !important;
  border: none !important;
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  transform: none !important;
  border-radius: 0 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  font-family: inherit !important;
  cursor: pointer !important;
  margin: 0 0 24px !important;
  padding: 0 !important;
  color: #777777 !important;
  transition: color 0.2s ease !important;
}

.busup-header-router__back:hover,
.busup-header-router__back:focus-visible {
  color: #00845a !important;
}

.busup-header-router__back::before,
.busup-header-router__back::after {
  display: none !important;
  content: none !important;
}

/* =========================================================
   HEADER ROUTER FORMS — MATCH HERO
   ========================================================= */

.busup-header-router__form {
  width: 100% !important;
  background: transparent !important;
  margin-top: 28px !important;
}

.busup-header-router__form-empty {
  padding: 48px 24px !important;
  border-radius: 18px !important;
  background: #f7f9f8 !important;
  border: 1px dashed #d7dedb !important;
  text-align: center !important;
  color: #777777 !important;
  font-size: 15px !important;
}

.busup-header-router__form .form-title,
.busup-header-router__form .hs-form-title,
.busup-header-router__form .hbspt-form > h3,
.busup-header-router__form .hs-form > .hs-richtext:first-child {
  display: none !important;
}

.busup-header-router__form .hs-form,
.busup-header-router__form .hs-form-private,
.busup-header-router__form .hs-form-frame,
.busup-header-router__form form {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.busup-header-router__form .hs-form fieldset,
.busup-header-router__form form fieldset {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.busup-header-router__form .hs-form fieldset.form-columns-1,
.busup-header-router__form .hs-form fieldset.form-columns-2,
.busup-header-router__form .hs-form fieldset.form-columns-3 {
  display: grid !important;
  gap: 22px !important;
}

.busup-header-router__form .hs-form fieldset.form-columns-1 {
  grid-template-columns: 1fr !important;
}

.busup-header-router__form .hs-form fieldset.form-columns-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.busup-header-router__form .hs-form fieldset.form-columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.busup-header-router__form .hs-form-field {
  width: 100% !important;
  float: none !important;
  margin: 0 0 22px 0 !important;
  padding: 0 !important;
  min-width: 0 !important;
}

.busup-header-router__form .hs-form-field .input {
  width: 100% !important;
  margin: 0 !important;
}

/* Labels + required asterisk inline */
.busup-header-router__form .hs-form-field > label,
.busup-header-router__form .hs-form-field > label span:not(.hs-form-required) {
  display: inline !important;
  color: #5f6368 !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
  margin: 0 !important;
  letter-spacing: -0.01em !important;
}

.busup-header-router__form .hs-form-field > label {
  display: block !important;
  margin: 0 0 9px 0 !important;
}

.busup-header-router__form .hs-form-required,
.busup-header-router__form .hs-form-field > label .hs-form-required,
.busup-header-router__form .hs-form-field > label span.hs-form-required {
  display: inline !important;
  color: #ea6753 !important;
  font-size: inherit !important;
  line-height: inherit !important;
  font-weight: 700 !important;
  margin-left: 1px !important;
  vertical-align: baseline !important;
}

.busup-header-router__form .hs-form-field > label > span {
  display: inline !important;
}

/* Inputs */
.busup-header-router__form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.busup-header-router__form textarea,
.busup-header-router__form select {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 100% !important;
  min-height: 42px !important;
  padding: 0 18px !important;
  box-sizing: border-box !important;
  background: #f7fafc !important;
  border: 1px solid #cbd9e6 !important;
  border-radius: 16px !important;
  color: #33475b !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  font-weight: 400 !important;
  outline: none !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease !important;
}

.busup-header-router__form textarea {
  min-height: 112px !important;
  padding-top: 15px !important;
  resize: vertical !important;
}

.busup-header-router__form input::placeholder,
.busup-header-router__form textarea::placeholder {
  color: #b4bec8 !important;
  opacity: 1 !important;
}

.busup-header-router__form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):focus,
.busup-header-router__form textarea:focus,
.busup-header-router__form select:focus {
  background: #ffffff !important;
  border-color: #9cdeb6 !important;
  box-shadow: 0 0 0 4px rgba(0, 191, 111, 0.10) !important;
}

.busup-header-router__form .hs-error input,
.busup-header-router__form .hs-error textarea,
.busup-header-router__form .hs-error select {
  border-color: #ea6753 !important;
  box-shadow: 0 0 0 4px rgba(234, 103, 83, 0.10) !important;
}

/* Errors */
.busup-header-router__form .hs-error-msgs,
.busup-header-router__form .hs-error-msgs li,
.busup-header-router__form .hs-error-msgs label,
.busup-header-router__form .hs-error-msg,
.busup-header-router__form [class*="error-msg"],
.busup-header-router__form [class*="Error"] {
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
  color: #ea6753 !important;
  margin-top: 7px !important;
}

.busup-header-router__form .hs-error-msgs {
  list-style: none !important;
  padding: 0 !important;
  margin: 7px 0 0 !important;
}

.busup-header-router__form .hs-error-msgs li {
  padding: 0 !important;
  margin: 0 !important;
}

.busup-header-router__form .hs-error-msgs *,
.busup-header-router__form .hs-error-msg * {
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
  color: #ea6753 !important;
}

/* Help text */
.busup-header-router__form .hs-field-desc,
.busup-header-router__form .hs-field-desc span,
.busup-header-router__form .hs-field-desc p {
  color: #7c98b6 !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
  margin: 6px 0 0 !important;
}

/* Phone field */
.busup-header-router__form .hs-fieldtype-intl-phone .input {
  display: flex !important;
  align-items: stretch !important;
  width: 100% !important;
}

.busup-header-router__form .hs-fieldtype-intl-phone select {
  flex: 0 0 92px !important;
  width: 92px !important;
  min-width: 92px !important;
  border-radius: 16px 0 0 16px !important;
  border-right: 0 !important;
  padding-left: 14px !important;
  padding-right: 10px !important;
}

.busup-header-router__form .hs-fieldtype-intl-phone input {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  border-radius: 0 16px 16px 0 !important;
}

/* Checkboxes and radios */
.busup-header-router__form .inputs-list,
.busup-header-router__form ul.inputs-list,
.busup-header-router__form .hs-form-checkbox,
.busup-header-router__form .hs-form-radio {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.busup-header-router__form .inputs-list li {
  width: 100% !important;
  margin: 0 0 12px 0 !important;
  padding: 0 !important;
  display: block !important;
  float: none !important;
  clear: both !important;
}

.busup-header-router__form .inputs-list label,
.busup-header-router__form .hs-form-checkbox label,
.busup-header-router__form .hs-form-radio label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #33475b !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
  font-weight: 400 !important;
  white-space: normal !important;
}

.busup-header-router__form input[type="checkbox"],
.busup-header-router__form input[type="radio"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  flex: 0 0 16px !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  margin: 3px 0 0 0 !important;
  padding: 0 !important;
  background: #ffffff !important;
  border: 1px solid #9aa8b5 !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

.busup-header-router__form input[type="checkbox"] {
  border-radius: 4px !important;
}

.busup-header-router__form input[type="radio"] {
  border-radius: 999px !important;
}

.busup-header-router__form input[type="checkbox"]:checked,
.busup-header-router__form input[type="radio"]:checked {
  background-color: #00bf6f !important;
  border-color: #00bf6f !important;
  box-shadow: inset 0 0 0 3px #ffffff !important;
}

.busup-header-router__form .inputs-list label span,
.busup-header-router__form .hs-form-checkbox label span,
.busup-header-router__form .hs-form-radio label span {
  display: inline !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  max-width: none !important;
  width: auto !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

/* Legal consent */
.busup-header-router__form .legal-consent-container {
  margin-top: 8px !important;
}

.busup-header-router__form .legal-consent-container,
.busup-header-router__form .legal-consent-container p,
.busup-header-router__form .legal-consent-container span,
.busup-header-router__form .legal-consent-container label,
.busup-header-router__form .legal-consent-container .hs-richtext,
.busup-header-router__form .hs-richtext,
.busup-header-router__form .hs-richtext p {
  color: #33475b !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.busup-header-router__form .legal-consent-container a,
.busup-header-router__form .hs-richtext a {
  color: #00845a !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
}

/* Submit */
.busup-header-router__form .hs-submit,
.busup-header-router__form .actions {
  width: 100% !important;
  text-align: center !important;
  margin-top: 12px !important;
  padding: 0 !important;
}

.busup-header-router__form .hs-button,
.busup-header-router__form input[type="submit"],
.busup-header-router__form button[type="submit"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 150px !important;
  min-height: 48px !important;
  padding: 14px 30px !important;
  border-radius: 16px !important;
  background: #00bf6f !important;
  border: 1px solid #00bf6f !important;
  color: #ffffff !important;
  font-size: 14px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  text-align: center !important;
  box-shadow: 0 10px 22px rgba(0, 191, 111, 0.22) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease !important;
}

.busup-header-router__form .hs-button:hover,
.busup-header-router__form input[type="submit"]:hover,
.busup-header-router__form button[type="submit"]:hover {
  transform: translateY(-1px) !important;
  background: #00b86a !important;
  border-color: #00b86a !important;
  box-shadow: 0 14px 26px rgba(0, 191, 111, 0.28) !important;
}

/* Thank-you message */
.busup-header-router__form .submitted-message,
.busup-header-router__form .submitted-message p,
.busup-header-router__form .submitted-message span {
  color: #33475b !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
  text-align: center !important;
}

/* =========================================================
   USER SUPPORT CARDS — MATCH HERO FINAL
   ========================================================= */

.busup-header-router__support-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 24px !important;
  width: 100% !important;
}

.busup-header-router__support-card,
.busup-header-router__support-card:hover,
.busup-header-router__support-card:focus,
.busup-header-router__support-card:focus-visible,
.busup-header-router__support-card:active {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
  min-height: 300px !important;
  padding: 38px 28px 32px !important;
  background: #ffffff !important;
  border: 1px solid #dff7ed !important;
  border-radius: 22px !important;
  box-shadow: 0 10px 30px rgba(0, 132, 90, 0.045) !important;
  color: inherit !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background-color 0.24s ease !important;
}

.busup-header-router__support-card *,
.busup-header-router__support-card:hover *,
.busup-header-router__support-card:focus *,
.busup-header-router__support-card:focus-visible *,
.busup-header-router__support-card:active * {
  text-decoration: none !important;
}

.busup-header-router__support-card:hover,
.busup-header-router__support-card:focus-visible {
  transform: translateY(-3px) !important;
  border-color: #c9f2df !important;
  box-shadow: 0 20px 46px rgba(0, 132, 90, 0.10) !important;
}

.busup-header-router__support-icon {
  width: 62px !important;
  height: 62px !important;
  border-radius: 999px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 0 30px 0 !important;
  background: #f0fdf7 !important;
  color: #00845a !important;
  transition:
    background-color 0.24s ease,
    color 0.24s ease,
    transform 0.24s ease !important;
}

.busup-header-router__support-icon svg {
  width: 25px !important;
  height: 25px !important;
}

.busup-header-router__support-card:hover .busup-header-router__support-icon,
.busup-header-router__support-card:focus-visible .busup-header-router__support-icon {
  background: #00845a !important;
  color: #ffffff !important;
  transform: none !important;
}

.busup-header-router__support-copy {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
  margin: 0 0 30px 0 !important;
}

.busup-header-router__support-copy small {
  display: block !important;
  margin: 0 0 14px 0 !important;
  color: #999999 !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

.busup-header-router__support-copy strong {
  display: block !important;
  margin: 0 !important;
  color: #111111 !important;
  font-size: 18px !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
  letter-spacing: -0.015em !important;
  max-width: 280px !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
  text-decoration: none !important;
}

.busup-header-router__support-action {
  margin-top: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 46px !important;
  padding: 0 26px !important;
  border-radius: 999px !important;
  background: rgba(0, 132, 90, 0.07) !important;
  color: #00845a !important;
  font-size: 15px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  transition:
    background-color 0.24s ease,
    color 0.24s ease,
    transform 0.24s ease,
    box-shadow 0.24s ease !important;
}

.busup-header-router__support-card:hover .busup-header-router__support-action,
.busup-header-router__support-card:focus-visible .busup-header-router__support-action {
  background: #00845a !important;
  color: #ffffff !important;
  transform: none !important;
  box-shadow: 0 10px 22px rgba(0, 132, 90, 0.18) !important;
  text-decoration: none !important;
}

/* ---------------------------------------------------------
   ROUTER MOBILE
   --------------------------------------------------------- */

@media (max-width: 760px) {
  .busup-header-router {
    align-items: flex-end !important;
    padding: 14px !important;
  }

  .busup-header-router__modal {
    max-height: 88vh !important;
    border-radius: 28px !important;
    padding: 34px 22px 24px !important;
  }

  .busup-header-router__modal[data-current-step="sales"],
  .busup-header-router__modal[data-current-step="operator"] {
    max-width: 100% !important;
    padding: 34px 22px 28px !important;
  }

  .busup-header-router__modal-header h2 {
    font-size: 32px !important;
  }

  .busup-header-router__modal-header p {
    font-size: 14px !important;
  }

  .busup-header-router__choice-card,
  .busup-header-router__choice-card:hover,
  .busup-header-router__choice-card:focus,
  .busup-header-router__choice-card:focus-visible,
  .busup-header-router__choice-card:active {
    grid-template-columns: 42px 1fr !important;
    gap: 14px !important;
  }

  .busup-header-router__choice-action {
    grid-column: 2 !important;
    margin-top: 4px !important;
  }

  .busup-header-router__form .hs-form fieldset.form-columns-2,
  .busup-header-router__form .hs-form fieldset.form-columns-3 {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .busup-header-router__form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
  .busup-header-router__form textarea,
  .busup-header-router__form select {
    min-height: 50px !important;
    border-radius: 14px !important;
  }

  .busup-header-router__form .hs-fieldtype-intl-phone select {
    flex-basis: 84px !important;
    width: 84px !important;
    min-width: 84px !important;
    border-radius: 14px 0 0 14px !important;
  }

  .busup-header-router__form .hs-fieldtype-intl-phone input {
    border-radius: 0 14px 14px 0 !important;
  }

  .busup-header-router__support-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .busup-header-router__support-card,
  .busup-header-router__support-card:hover,
  .busup-header-router__support-card:focus,
  .busup-header-router__support-card:focus-visible,
  .busup-header-router__support-card:active {
    min-height: 270px !important;
    padding: 34px 22px 28px !important;
  }

  .busup-header-router__support-icon {
    margin-bottom: 24px !important;
  }

  .busup-header-router__support-copy {
    margin-bottom: 26px !important;
  }
}

@media (max-width: 600px) {
  .busup-header-router__modal {
    padding: 35px 25px !important;
  }

  .busup-header-router__close {
    top: 15px !important;
    right: 15px !important;
  }
}


/* =========================================================
   BUSUP GLOBAL HEADER — FINAL INTERACTION FIXES
   Submenu bridge, sticky CTA hover, sticky animations
   ========================================================= */

/* ---------------------------------------------------------
   1. Desktop submenu hover bridge
   Prevents dropdown from closing while mouse moves down.
   --------------------------------------------------------- */

.busup-header[data-busup-global-header] .busup-header__nav .hs-menu-depth-1.hs-item-has-children,
.busup-header[data-busup-global-header] .busup-header__nav .hs-menu-wrapper > ul > li.hs-item-has-children {
  position: relative !important;
}

/* Invisible bridge between parent item and dropdown */
.busup-header[data-busup-global-header] .busup-header__nav .hs-menu-depth-1.hs-item-has-children::after,
.busup-header[data-busup-global-header] .busup-header__nav .hs-menu-wrapper > ul > li.hs-item-has-children::after {
  content: "" !important;
  position: absolute !important;
  left: -24px !important;
  right: -24px !important;
  top: 100% !important;
  height: 24px !important;
  display: block !important;
  background: transparent !important;
  pointer-events: auto !important;
  z-index: 2147481000 !important;
}

/* Bring dropdown slightly closer to the parent item */
.busup-header[data-busup-global-header] .busup-header__nav .hs-menu-wrapper ul ul,
.busup-header[data-busup-global-header] .busup-header__nav .hs-menu-wrapper > ul > li > ul,
.busup-header[data-busup-global-header] .busup-header__nav .hs-menu-wrapper .hs-menu-children-wrapper {
  top: calc(100% + 4px) !important;
}

/* Keep dropdown above the invisible bridge */
.busup-header[data-busup-global-header] .busup-header__nav .hs-menu-wrapper ul ul,
.busup-header[data-busup-global-header] .busup-header__nav .hs-menu-wrapper .hs-menu-children-wrapper {
  z-index: 2147482000 !important;
}


/* ---------------------------------------------------------
   2. Sticky CTA hover size fix
   Keeps CTA small while header is sticky, including hover.
   --------------------------------------------------------- */

.busup-header[data-busup-global-header].scrolled .busup-header__cta .cta-button,
.busup-header[data-busup-global-header].scrolled .busup-header__cta .cta-button:hover,
.busup-header[data-busup-global-header].scrolled .busup-header__cta .cta-button:focus,
.busup-header[data-busup-global-header].scrolled .busup-header__cta .cta-button:focus-visible,
.busup-header[data-busup-global-header].scrolled .busup-header__cta .cta-button:active {
  width: 160px !important;
  height: 45px !important;
  min-height: 45px !important;
  padding: 0 20px !important;
  font-size: 14px !important;
  border-radius: 999px !important;
}

/* Mobile sticky CTA also stays stable on hover */
@media (max-width: 920px) {
  .busup-header[data-busup-global-header].scrolled .busup-header__mobile-cta,
  .busup-header[data-busup-global-header].scrolled .busup-header__mobile-cta:hover,
  .busup-header[data-busup-global-header].scrolled .busup-header__mobile-cta:focus,
  .busup-header[data-busup-global-header].scrolled .busup-header__mobile-cta:focus-visible,
  .busup-header[data-busup-global-header].scrolled .busup-header__mobile-cta:active {
    height: 32px !important;
    min-height: 32px !important;
    padding: 6px 12px !important;
    font-size: 11px !important;
    border-radius: 999px !important;
    transform: none !important;
  }
}


/* ---------------------------------------------------------
   3. Sticky entering animation
   Enters only from top, never from the side.
   --------------------------------------------------------- */

.busup-header[data-busup-global-header].scrolled {
  transition: none !important;
}

.busup-header[data-busup-global-header].scrolled.is-entering {
  animation: busupGlobalHeaderEnterFromTop 0.28s ease-out both !important;
}

@keyframes busupGlobalHeaderEnterFromTop {
  from {
    opacity: 0.98;
    transform: translateX(-50%) translateY(-120%);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Stabilize inner elements during sticky transition */
.busup-header[data-busup-global-header].scrolled *,
.busup-header[data-busup-global-header].scrolled .busup-header__container {
  transition-property: background-color, color, box-shadow, opacity !important;
}


/* ---------------------------------------------------------
   4. Returning from sticky to original position
   Looks like it returns upward into the normal header place.
   --------------------------------------------------------- */

.busup-header[data-busup-global-header].scrolled.is-returning {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;

  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;

  height: 89px !important;
  padding: 0 !important;

  border-radius: 0 !important;
  box-shadow: none !important;

  transform: translateY(0) !important;

  animation: busupGlobalHeaderReturnToPlace 0.24s ease-out both !important;
}

@keyframes busupGlobalHeaderReturnToPlace {
  from {
    opacity: 0.98;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.busup-header[data-busup-global-header].scrolled.is-returning .busup-header__container {
  max-width: 1280px !important;
  padding: 0 53px !important;
  gap: 0 !important;
}

.busup-header[data-busup-global-header].scrolled.is-returning .busup-header__logo img {
  height: 27px !important;
}

.busup-header[data-busup-global-header].scrolled.is-returning .busup-header__nav .hs-menu-wrapper > ul {
  gap: 40px !important;
}

.busup-header[data-busup-global-header].scrolled.is-returning .busup-header__nav .hs-menu-depth-1 > a {
  font-size: 16px !important;
}

.busup-header[data-busup-global-header].scrolled.is-returning .busup-header__cta .cta-button,
.busup-header[data-busup-global-header].scrolled.is-returning .busup-header__cta .cta-button:hover,
.busup-header[data-busup-global-header].scrolled.is-returning .busup-header__cta .cta-button:focus,
.busup-header[data-busup-global-header].scrolled.is-returning .busup-header__cta .cta-button:active {
  width: 208px !important;
  height: 45px !important;
  font-size: 16px !important;
}

/* Mobile return state */
@media (max-width: 920px) {
  .busup-header[data-busup-global-header].scrolled.is-returning {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;

    width: 100% !important;
    height: 72px !important;

    padding: 0 !important;
    border-radius: 0 !important;

    transform: translateY(0) !important;

    animation: busupGlobalHeaderReturnToPlaceMobile 0.22s ease-out both !important;
  }

  @keyframes busupGlobalHeaderReturnToPlaceMobile {
    from {
      opacity: 0.98;
      transform: translateY(14px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .busup-header[data-busup-global-header].scrolled.is-returning .busup-header__container {
    padding: 0 12px !important;
    gap: 16px !important;
  }

  .busup-header[data-busup-global-header].scrolled.is-returning .busup-header__logo img {
    width: 80px !important;
    height: 20px !important;
  }

  .busup-header[data-busup-global-header].scrolled.is-returning .busup-header__mobile-cta,
  .busup-header[data-busup-global-header].scrolled.is-returning .busup-header__mobile-cta:hover,
  .busup-header[data-busup-global-header].scrolled.is-returning .busup-header__mobile-cta:focus,
  .busup-header[data-busup-global-header].scrolled.is-returning .busup-header__mobile-cta:active {
    height: 40px !important;
    padding: 8px 16px !important;
    font-size: 13px !important;
  }
}


/* ---------------------------------------------------------
   5. Extra hamburger stability
   Removes inherited transform/transition during sticky.
   --------------------------------------------------------- */

.busup-header[data-busup-global-header] .busup-header__mobile-toggle,
.busup-header[data-busup-global-header] .busup-header__mobile-toggle:hover,
.busup-header[data-busup-global-header] .busup-header__mobile-toggle:focus,
.busup-header[data-busup-global-header] .busup-header__mobile-toggle:active,
.busup-header[data-busup-global-header] .busup-header__hamburger,
.busup-header[data-busup-global-header] .busup-header__hamburger span {
  transform: none !important;
}

.busup-header[data-busup-global-header].scrolled .busup-header__mobile-toggle {
  transition: none !important;
}


/* =========================================================
   BUSUP GLOBAL HEADER — PREMIUM STICKY MOTION + HAMBURGER FIX
   Final override layer. Keep at the very end.
   ========================================================= */

/* ---------------------------------------------------------
   1. Kill previous rough sticky animations
   --------------------------------------------------------- */

.busup-header[data-busup-global-header],
.busup-header[data-busup-global-header].scrolled,
.busup-header[data-busup-global-header].scrolled.is-entering,
.busup-header[data-busup-global-header].scrolled.is-returning {
  animation: none !important;
}

/* Remove previous returning state visual overrides */
.busup-header[data-busup-global-header].scrolled.is-returning {
  top: 6px !important;
  left: 50% !important;
  right: auto !important;
  width: calc(100% - 40px) !important;
  max-width: 1200px !important;
  min-width: 280px !important;
  height: 70px !important;
  padding: 0 40px !important;
  border-radius: 50px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
  transform: translateX(-50%) !important;
}

/* Premium sticky base */
.busup-header[data-busup-global-header].scrolled {
  will-change: transform, opacity, filter !important;
  transform-origin: top center !important;
  backface-visibility: hidden !important;
  -webkit-font-smoothing: antialiased !important;
}

/* Premium entrance: from top only */
.busup-header[data-busup-global-header].scrolled.is-sticky-entering {
  animation: busupPremiumStickyEnter 420ms cubic-bezier(0.16, 1, 0.3, 1) both !important;
}

@keyframes busupPremiumStickyEnter {
  0% {
    opacity: 0;
    transform: translate3d(-50%, -22px, 0) scale(0.982);
    filter: blur(2px);
  }

  55% {
    opacity: 1;
    transform: translate3d(-50%, 2px, 0) scale(1);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translate3d(-50%, 0, 0) scale(1);
    filter: blur(0);
  }
}

/* Premium exit: disappears upward, then original header is revealed */
.busup-header[data-busup-global-header].scrolled.is-sticky-leaving {
  pointer-events: none !important;
  animation: busupPremiumStickyLeave 260ms cubic-bezier(0.4, 0, 0.2, 1) both !important;
}

@keyframes busupPremiumStickyLeave {
  0% {
    opacity: 1;
    transform: translate3d(-50%, 0, 0) scale(1);
    filter: blur(0);
  }

  100% {
    opacity: 0;
    transform: translate3d(-50%, -16px, 0) scale(0.985);
    filter: blur(1px);
  }
}

/* Prevent inner elements from doing weird lateral transitions */
.busup-header[data-busup-global-header].scrolled *,
.busup-header[data-busup-global-header].scrolled .busup-header__container,
.busup-header[data-busup-global-header].scrolled .busup-header__logo,
.busup-header[data-busup-global-header].scrolled .busup-header__mobile-toggle,
.busup-header[data-busup-global-header].scrolled .busup-header__mobile-cta,
.busup-header[data-busup-global-header].scrolled .busup-header__cta,
.busup-header[data-busup-global-header].scrolled .busup-header__lang {
  transition-property: color, background-color, border-color, box-shadow, opacity !important;
}

/* ---------------------------------------------------------
   2. Mobile version: same premium motion, no side entrance
   --------------------------------------------------------- */

@media (max-width: 920px) {
  .busup-header[data-busup-global-header].scrolled,
  .busup-header[data-busup-global-header].scrolled.is-returning {
    top: 12px !important;
    left: 50% !important;
    right: auto !important;
    width: calc(100% - 24px) !important;
    height: 48px !important;
    padding: 0 12px !important;
    border-radius: 50px !important;
    transform: translateX(-50%) !important;
  }

  .busup-header[data-busup-global-header].scrolled.is-sticky-entering {
    animation: busupPremiumStickyEnterMobile 400ms cubic-bezier(0.16, 1, 0.3, 1) both !important;
  }

  @keyframes busupPremiumStickyEnterMobile {
    0% {
      opacity: 0;
      transform: translate3d(-50%, -18px, 0) scale(0.984);
      filter: blur(2px);
    }

    58% {
      opacity: 1;
      transform: translate3d(-50%, 1px, 0) scale(1);
      filter: blur(0);
    }

    100% {
      opacity: 1;
      transform: translate3d(-50%, 0, 0) scale(1);
      filter: blur(0);
    }
  }

  .busup-header[data-busup-global-header].scrolled.is-sticky-leaving {
    animation: busupPremiumStickyLeaveMobile 240ms cubic-bezier(0.4, 0, 0.2, 1) both !important;
  }

  @keyframes busupPremiumStickyLeaveMobile {
    0% {
      opacity: 1;
      transform: translate3d(-50%, 0, 0) scale(1);
      filter: blur(0);
    }

    100% {
      opacity: 0;
      transform: translate3d(-50%, -14px, 0) scale(0.986);
      filter: blur(1px);
    }
  }
}

/* ---------------------------------------------------------
   3. Hamburger visibility fix
   Draw hamburger with CSS, independent from SVG/image.
   --------------------------------------------------------- */

@media (max-width: 920px) {
  .busup-header[data-busup-global-header] button.busup-header__mobile-toggle,
  .busup-header[data-busup-global-header] button.busup-header__mobile-toggle:hover,
  .busup-header[data-busup-global-header] button.busup-header__mobile-toggle:focus,
  .busup-header[data-busup-global-header] button.busup-header__mobile-toggle:focus-visible,
  .busup-header[data-busup-global-header] button.busup-header__mobile-toggle:active {
    position: relative !important;

    appearance: none !important;
    -webkit-appearance: none !important;

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

    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;

    padding: 0 !important;
    margin: 0 !important;

    border: 0 !important;
    border-radius: 999px !important;

    background: transparent !important;
    background-image: none !important;

    box-shadow: none !important;
    outline: none !important;

    cursor: pointer !important;

    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Hide old SVG/icon if it still exists */
  .busup-header[data-busup-global-header] .busup-header__mobile-toggle img {
    display: none !important;
  }

  /* CSS hamburger lines */
  .busup-header[data-busup-global-header] button.busup-header__mobile-toggle::before,
  .busup-header[data-busup-global-header] button.busup-header__mobile-toggle::after {
    content: "" !important;
    display: block !important;

    position: absolute !important;
    left: 9px !important;

    width: 26px !important;
    height: 3px !important;

    border-radius: 999px !important;
    background: #2B2B2B !important;

    opacity: 1 !important;
    visibility: visible !important;

    transform: none !important;
    transition: none !important;
  }

  .busup-header[data-busup-global-header] button.busup-header__mobile-toggle::before {
    top: 13px !important;
    box-shadow: 0 8px 0 #2B2B2B !important;
  }

  .busup-header[data-busup-global-header] button.busup-header__mobile-toggle::after {
    top: 29px !important;
  }

  /* If you added the span hamburger HTML, keep it neutral */
  .busup-header[data-busup-global-header] .busup-header__hamburger,
  .busup-header[data-busup-global-header] .busup-header__hamburger span {
    display: none !important;
  }

  /* Keep hamburger stable in sticky */
  .busup-header[data-busup-global-header].scrolled button.busup-header__mobile-toggle,
  .busup-header[data-busup-global-header].scrolled button.busup-header__mobile-toggle:hover,
  .busup-header[data-busup-global-header].scrolled button.busup-header__mobile-toggle:focus,
  .busup-header[data-busup-global-header].scrolled button.busup-header__mobile-toggle:active {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    transform: none !important;
  }
}

/* ---------------------------------------------------------
   4. Reduced motion accessibility
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .busup-header[data-busup-global-header].scrolled.is-sticky-entering,
  .busup-header[data-busup-global-header].scrolled.is-sticky-leaving {
    animation: none !important;
  }
}

/* =========================================================
   BUSUP GLOBAL HEADER — PERK-LIKE PREMIUM MORPH
   Final override layer. Keep at the very end.
   Concept: header is fixed from the start and only morphs.
   ========================================================= */

/* ---------------------------------------------------------
   1. Disable all previous sticky enter/leave animations
   --------------------------------------------------------- */

.busup-header[data-busup-global-header],
.busup-header[data-busup-global-header].scrolled,
.busup-header[data-busup-global-header].scrolled.is-entering,
.busup-header[data-busup-global-header].scrolled.is-returning,
.busup-header[data-busup-global-header].scrolled.is-sticky-entering,
.busup-header[data-busup-global-header].scrolled.is-sticky-leaving {
  animation: none !important;
  opacity: 1 !important;
  filter: none !important;
}

/* ---------------------------------------------------------
   2. Header is fixed from the start
   This prevents hero jump / white space / layout push.
   --------------------------------------------------------- */

.busup-header[data-busup-global-header] {
  position: fixed !important;

  top: 0 !important;
  left: 50% !important;
  right: auto !important;

  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;

  height: 89px !important;
  padding: 0 !important;

  border-radius: 0 !important;
  box-shadow: none !important;

  transform: translate3d(-50%, 0, 0) !important;
  transform-origin: top center !important;

  overflow: visible !important;
  z-index: 9999 !important;

  backdrop-filter: blur(0) saturate(1) !important;
  -webkit-backdrop-filter: blur(0) saturate(1) !important;

  transition:
    top 520ms cubic-bezier(0.16, 1, 0.3, 1),
    width 520ms cubic-bezier(0.16, 1, 0.3, 1),
    max-width 520ms cubic-bezier(0.16, 1, 0.3, 1),
    height 520ms cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 520ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 520ms cubic-bezier(0.16, 1, 0.3, 1),
    background 520ms cubic-bezier(0.16, 1, 0.3, 1),
    backdrop-filter 520ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Original top state */
.busup-header[data-busup-global-header].header--green-gradient {
  background: linear-gradient(180deg, #49E67F -31.46%, #00BF6F 153.37%) !important;
}

.busup-header[data-busup-global-header].header--white {
  background: #ffffff !important;
}

/* Floating sticky state */
.busup-header[data-busup-global-header].scrolled {
  top: 8px !important;

  width: calc(100% - 40px) !important;
  max-width: 1200px !important;

  height: 70px !important;

  border-radius: 999px !important;

  transform: translate3d(-50%, 0, 0) !important;

  box-shadow:
    0 18px 45px rgba(0, 64, 43, 0.14),
    0 6px 16px rgba(0, 64, 43, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.24) !important;

  backdrop-filter: blur(18px) saturate(1.22) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.22) !important;
}

.busup-header[data-busup-global-header].header--green-gradient.scrolled {
  background:
    linear-gradient(180deg, rgba(73, 230, 127, 0.92) -31.46%, rgba(0, 191, 111, 0.92) 153.37%) !important;
}

.busup-header[data-busup-global-header].header--white.scrolled {
  background: rgba(255, 255, 255, 0.86) !important;
}

/* ---------------------------------------------------------
   3. Smooth inner morph
   --------------------------------------------------------- */

.busup-header[data-busup-global-header] .busup-header__container {
  transition:
    padding 520ms cubic-bezier(0.16, 1, 0.3, 1),
    gap 520ms cubic-bezier(0.16, 1, 0.3, 1),
    max-width 520ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.busup-header[data-busup-global-header] .busup-header__logo img,
.busup-header[data-busup-global-header] .busup-header__cta .cta-button,
.busup-header[data-busup-global-header] .busup-header__mobile-cta,
.busup-header[data-busup-global-header] .busup-header__nav .hs-menu-depth-1 > a,
.busup-header[data-busup-global-header] .busup-lang-desktop-trigger {
  transition:
    width 520ms cubic-bezier(0.16, 1, 0.3, 1),
    height 520ms cubic-bezier(0.16, 1, 0.3, 1),
    padding 520ms cubic-bezier(0.16, 1, 0.3, 1),
    font-size 520ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 300ms ease,
    background 300ms ease,
    color 300ms ease,
    transform 300ms ease !important;
}

/* Prevent old transition override from killing premium morph */
.busup-header[data-busup-global-header].scrolled *,
.busup-header[data-busup-global-header].scrolled .busup-header__container {
  transition-duration: inherit;
}

/* ---------------------------------------------------------
   4. Desktop sticky sizing remains stable
   --------------------------------------------------------- */

.busup-header[data-busup-global-header].scrolled .busup-header__container {
  padding: 0 8px !important;
  gap: 20px !important;
  max-width: 100% !important;
}

.busup-header[data-busup-global-header].scrolled .busup-header__logo img {
  height: 24px !important;
}

.busup-header[data-busup-global-header].scrolled .busup-header__nav .hs-menu-wrapper > ul {
  gap: 28px !important;
}

.busup-header[data-busup-global-header].scrolled .busup-header__nav .hs-menu-depth-1 > a {
  font-size: 14px !important;
}

.busup-header[data-busup-global-header].scrolled .busup-header__cta .cta-button,
.busup-header[data-busup-global-header].scrolled .busup-header__cta .cta-button:hover,
.busup-header[data-busup-global-header].scrolled .busup-header__cta .cta-button:focus,
.busup-header[data-busup-global-header].scrolled .busup-header__cta .cta-button:focus-visible,
.busup-header[data-busup-global-header].scrolled .busup-header__cta .cta-button:active {
  width: 160px !important;
  height: 45px !important;
  min-height: 45px !important;
  padding: 0 20px !important;
  font-size: 14px !important;
  border-radius: 999px !important;
}

/* ---------------------------------------------------------
   5. Mobile premium morph
   --------------------------------------------------------- */

@media (max-width: 920px) {
  .busup-header[data-busup-global-header] {
    top: 0 !important;
    left: 50% !important;
    right: auto !important;

    width: 100% !important;
    max-width: none !important;

    height: 72px !important;
    padding: 0 !important;

    border-radius: 0 !important;

    transform: translate3d(-50%, 0, 0) !important;

    box-shadow: none !important;

    transition:
      top 500ms cubic-bezier(0.16, 1, 0.3, 1),
      width 500ms cubic-bezier(0.16, 1, 0.3, 1),
      height 500ms cubic-bezier(0.16, 1, 0.3, 1),
      border-radius 500ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 500ms cubic-bezier(0.16, 1, 0.3, 1),
      background 500ms cubic-bezier(0.16, 1, 0.3, 1),
      backdrop-filter 500ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .busup-header[data-busup-global-header].scrolled {
    top: 10px !important;

    width: calc(100% - 24px) !important;
    max-width: none !important;

    height: 48px !important;

    border-radius: 999px !important;

    transform: translate3d(-50%, 0, 0) !important;

    box-shadow:
      0 16px 34px rgba(0, 64, 43, 0.16),
      0 5px 14px rgba(0, 64, 43, 0.10),
      inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
  }

  .busup-header[data-busup-global-header].scrolled .busup-header__container {
    padding: 0 6px !important;
    gap: 8px !important;
  }

  .busup-header[data-busup-global-header].scrolled .busup-header__logo img {
    width: 60px !important;
    height: 16px !important;
  }

  .busup-header[data-busup-global-header].scrolled .busup-header__mobile-cta,
  .busup-header[data-busup-global-header].scrolled .busup-header__mobile-cta:hover,
  .busup-header[data-busup-global-header].scrolled .busup-header__mobile-cta:focus,
  .busup-header[data-busup-global-header].scrolled .busup-header__mobile-cta:focus-visible,
  .busup-header[data-busup-global-header].scrolled .busup-header__mobile-cta:active {
    height: 32px !important;
    min-height: 32px !important;
    padding: 6px 12px !important;
    font-size: 11px !important;
    border-radius: 999px !important;
    transform: none !important;
  }
}

/* ---------------------------------------------------------
   6. Kill previous motion classes completely
   --------------------------------------------------------- */

.busup-header[data-busup-global-header].is-entering,
.busup-header[data-busup-global-header].is-returning,
.busup-header[data-busup-global-header].is-sticky-entering,
.busup-header[data-busup-global-header].is-sticky-leaving,
.busup-header[data-busup-global-header].scrolled.is-entering,
.busup-header[data-busup-global-header].scrolled.is-returning,
.busup-header[data-busup-global-header].scrolled.is-sticky-entering,
.busup-header[data-busup-global-header].scrolled.is-sticky-leaving {
  animation: none !important;
  pointer-events: auto !important;
  opacity: 1 !important;
  filter: none !important;
}


/* =========================================================
   BUSUP GLOBAL HEADER — EDGE GAP FIX
   Final override layer.
   Removes tiny white edge caused by subpixel rendering.
   Keep at the very end.
   ========================================================= */

/* ---------------------------------------------------------
   1. Full-width top state with 2px overscan
   Keeps the premium centered morph, but prevents side gaps.
   --------------------------------------------------------- */

.busup-header[data-busup-global-header]:not(.scrolled) {
  position: fixed !important;

  top: 0 !important;
  left: 50% !important;
  right: auto !important;

  width: calc(100% + 2px) !important;
  max-width: none !important;
  min-width: 0 !important;

  height: 89px !important;
  padding: 0 !important;

  border-radius: 0 !important;
  box-shadow: none !important;

  transform: translate3d(-50%, 0, 0) !important;
  transform-origin: top center !important;

  overflow: visible !important;
  z-index: 9999 !important;

  margin: 0 !important;
}

/* Makes sure pseudo/background rendering also reaches the edge */
.busup-header[data-busup-global-header]:not(.scrolled)::before,
.busup-header[data-busup-global-header]:not(.scrolled)::after {
  left: 0 !important;
  right: 0 !important;
}

/* ---------------------------------------------------------
   2. Sticky state remains centered and proportional
   --------------------------------------------------------- */

.busup-header[data-busup-global-header].scrolled {
  position: fixed !important;

  top: 8px !important;
  left: 50% !important;
  right: auto !important;

  width: calc(100% - 40px) !important;
  max-width: 1200px !important;
  min-width: 280px !important;

  height: 70px !important;
  padding: 0 40px !important;

  border-radius: 999px !important;

  transform: translate3d(-50%, 0, 0) !important;
  transform-origin: top center !important;

  overflow: visible !important;
  z-index: 9999 !important;
}

/* ---------------------------------------------------------
   3. Mobile top state with overscan
   Prevents the same white edge on mobile.
   --------------------------------------------------------- */

@media (max-width: 920px) {
  .busup-header[data-busup-global-header]:not(.scrolled) {
    position: fixed !important;

    top: 0 !important;
    left: 50% !important;
    right: auto !important;

    width: calc(100% + 2px) !important;
    max-width: none !important;
    min-width: 0 !important;

    height: 72px !important;
    padding: 0 !important;

    border-radius: 0 !important;
    box-shadow: none !important;

    transform: translate3d(-50%, 0, 0) !important;
    transform-origin: top center !important;

    overflow: visible !important;
    z-index: 9999 !important;

    margin: 0 !important;
  }

  .busup-header[data-busup-global-header].scrolled {
    position: fixed !important;

    top: 10px !important;
    left: 50% !important;
    right: auto !important;

    width: calc(100% - 24px) !important;
    max-width: none !important;
    min-width: 0 !important;

    height: 48px !important;
    padding: 0 12px !important;

    border-radius: 999px !important;

    transform: translate3d(-50%, 0, 0) !important;
    transform-origin: top center !important;

    overflow: visible !important;
    z-index: 9999 !important;
  }
}

/* ---------------------------------------------------------
   4. Protect against horizontal micro-overflow
   Only relevant because the top state intentionally overscans 2px.
   --------------------------------------------------------- */

html,
body {
  overflow-x: clip;
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}
.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}


.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}


.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}


.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}


.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}


.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

/* Override DND container constraints for full-width footer */
.footer-dnd-area .dnd-section,
.footer-dnd-area .dnd-column,
.footer-dnd-area .dnd-row,
.footer-dnd-area .row-fluid,
.footer-dnd-area .span12,
.footer-dnd-area > .row-fluid-wrapper,
.footer-dnd-area .row-fluid-wrapper .row-fluid,
.footer-dnd-area .dnd-section > .row-fluid-wrapper,
.footer-dnd-area .dnd-section .row-fluid {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

body, .body-wrapper {
  overflow-x: hidden;
}

.footer {
  padding: 50px 0 0 0;
  font-family: 'Bus Sans', sans-serif;
  width: 100%;
  position: relative;
  z-index: 10;
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

/* Footer remains static - no animations */
.footer.scrolled {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

/* Footer revealed state - no change needed */
.footer.scrolled.reveal {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 75px;
}


footer.footer--gray {
  background-color: #E2E2E2;
}
footer.footer--gray .footer__logo img,
footer.footer--gray .footer__socials img {
  filter: none;
}
footer.footer--gray .footer__column h4,
footer.footer--gray .footer__column a,
footer.footer--gray .footer__bottom p,
footer.footer--gray .footer__support-title,
footer.footer--gray .footer__support-title h4,
footer.footer--gray .footer__support-title p {
  color: #353535;
}
footer.footer--gray .footer__bottom {
  border-color: #2B2B2B;
}
footer.footer--gray .footer__cta .cta-button {
  background: linear-gradient(180deg, #49E67F -31.46%, #00BF6F 153.37%);
  color: #2B2B2B;
}

footer.footer--green-gradient {
  background: linear-gradient(180deg, #49E67F -31.46%, #00BF6F 153.37%);
}
footer.footer--green-gradient .footer__logo img,
footer.footer--green-gradient .footer__socials img {
  filter: none;
}
footer.footer--green-gradient .footer__logo img {
  content: url("https://www.busup.com/hubfs/raw_assets/public/custom/themes/busup-site/images/logos/logo-white.svg");
}
footer.footer--green-gradient .footer__column h4,
footer.footer--green-gradient .footer__column a,
footer.footer--green-gradient .footer__bottom p,
footer.footer--green-gradient .footer__support-title,
footer.footer--green-gradient .footer__support-title h4,
footer.footer--green-gradient .footer__support-title p {
  color: #353535;
}
footer.footer--green-gradient .footer__bottom {
  border-color: #2B2B2B;
}
footer.footer--green-gradient .footer__cta .cta-button {
  background: var(--Dark-grey, #2B2B2B);
  color: #FFFFFF;
}


footer.footer--dark-gray {
  background-color: #515151;
}
footer.footer--dark-gray .footer__logo img,
footer.footer--dark-gray .footer__socials img {
  filter: brightness(0) invert(1);
}
footer.footer--dark-gray .footer__column h4,
footer.footer--dark-gray .footer__column a,
footer.footer--dark-gray .footer__bottom p,
footer.footer--dark-gray .footer__support-title,
footer.footer--dark-gray .footer__support-title h4,
footer.footer--dark-gray .footer__support-title p {
  color: #FFFFFF;
}
footer.footer--dark-gray .footer__cta .cta-button {
  background: #FFFFFF;
  color: #2B2B2B;
}
footer.footer--dark-gray .footer__bottom {
  border-color: rgba(255, 255, 255, 0.2);
}


.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 90px;
}

.footer__top-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer__logo img {
  height: 32px;
  display: block;
}

.footer__cta .cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 193px;
  height: 47px;
  padding: 14px 40px;
  background: linear-gradient(180deg, #49E67F -31.46%, #00BF6F 153.37%);
  color: #2B2B2B;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  font-size: 16px;
  font-family: 'Bus Sans', sans-serif;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer__cta .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 191, 111, 0.3);
}

.footer__socials {
  display: flex;
  gap: 20px;
}

.footer__socials a img {
  height: 24px;
  width: 24px;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}

.footer__column {
  display: flex;
  flex-direction: column;
}

.footer__column .hs-menu-wrapper > ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__column .hs-menu-wrapper .hs-menu-item > a {
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  transition: color 0.2s ease;
}

.footer__column .hs-menu-wrapper .hs-menu-item > a:hover {
  text-decoration: underline;
}

.footer__column summary {
  list-style: none;
  cursor: default;
}

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

.footer__column h4 {
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  margin: 0px 0px 0px 0px;
}

.footer__column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__column a {
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  transition: color 0.2s ease;
}

.footer__column a:hover {
  text-decoration: underline;
}

.footer__support-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 40px 0;
  margin-left: auto;
  width: fit-content;
}

.footer__support-title {
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 17px;
  margin: 0;
}

.footer__support-title h4,
.footer__support-title p {
  margin: 0;
  display: inline;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  color: inherit;
}

.footer__support-logos {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer__support-logo {
  height: 40px;
  display: block;
  object-fit: contain;
}

.footer__bottom {
  margin-top: 90px;
  padding-top: 30px;
  border-top: 1px solid;
}

.footer__bottom p {
  font-size: 11px;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 1280px) {
  .footer__container {
    width: 100%;
    max-width: none;
    padding: 0 40px;
  }

  .footer__top {
    padding-bottom: 60px;
  }

  .footer__columns {
    gap: 30px;
  }

  .footer__cta .cta-button {
    width: 170px;
    height: 45px;
    font-size: 14px;
  }
}

@media (max-width: 920px) {
  .footer {
    padding: 40px 0;
  }
  .footer__container {
    padding: 0 50px;
  }

  .footer__top {
    display: grid;
    grid-template-columns: 1fr auto; 
    grid-template-areas:
      "logo socials"
      "cta cta";
    gap: 40px 10px;
    padding-bottom: 60px;
  }

  .footer__top-right {
    display: contents; 
  }

  .footer__logo { grid-area: logo; }
  .footer__cta { grid-area: cta; }
  .footer__socials { grid-area: socials; }

  .footer__logo img {
    width: 80px; 
    height: 20px;
  }
  .footer__socials a img {
    height: 18px; 
    width: 18px;
  }
  
  .footer__cta .cta-button {
    width: 100%;
    height: auto;
    max-width: 300px;
  }

  .footer__columns {
    display: grid;
  }
  
  .footer__column {
    padding: 0;
    border: none;
  }
  
  .footer__column summary {
    display: block;
  }
  .footer__column summary::after {
    display: none; 
  }
  .footer__column ul {
    padding-left: 0;
  }

  .footer__support-section {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
  }

  .footer__support-title {
    width: 100%;
  }

  .footer__support-logos {
    flex-wrap: wrap;
  }

  .footer__bottom {
    text-align: left; 
    border-top: none;
    margin-top: 60px;
    padding-top: 0;
  }

  .footer__bottom p {
    font-size: 8px;
  }

}

@media (max-width: 500px) {
  .footer__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }

    .footer__cta .cta-button {
    width: 65%;
    height: auto;
  }
}