*, *: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: 20px;
  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: 48px;
  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: #151515 !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: #151515;
}
.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: #151515 !important;
}
.header--green-gradient .busup-header__cta .cta-button {
  background: var(--Dark-grey, #2B2B2B);
  color: #FFFFFF;
}
.header--green-gradient .busup-header__mobile-cta {
  background: var(--Dark-grey, #2B2B2B);
  color: #FFFFFF;
}
.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://9019510.fs1.hubspotusercontent-na1.net/hubfs/9019510/raw_assets/public/custom/themes/busup-site/images/logos/logo-white.svg");
}
.header--green-gradient .busup-header__lang .selected-lang {
  color: #151515;
}
.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: 50px;
  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;
  }

  .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;
  }
  
}
.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://9019510.fs1.hubspotusercontent-na1.net/hubfs/9019510/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;
  }
}