/* BizApps Compiled CSS */

/* Variables converted to CSS custom properties */
:root {
  --primary-color: #0673E5;
  --secondary-color: #2891FF;
  --accent-color: #FBFF89;
  --text-primary: #1F1F1F;
  --text-secondary: #37363D;
  --text-muted: #595959;
  --white: #FFFFFF;
  --background-light: #F5F6F9;
  --background-dark: #06142f;
  --background-blue: #0072E9;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --border-radius-sm: 8px;
  --border-radius-md: 20px;
  --border-radius-lg: 30px;
  --border-radius-xl: 34px;
  --transition-base: all 0.3s ease;
  --transition-fast: all 0.15s ease-in-out;
  --transition-slow: all 0.5s ease;
}

/* Global styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-primary);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Header Styles */
.bizapps-header {
  position: relative;
  background: transparent !important;
  z-index: 1030;
}

.bizapps-top-bar {
  padding: 0.625rem 0;
  font-size: 0.875rem;
  line-height: 1.3;
  border-bottom: 1px solid #e6e7eb;
}

.bizapps-top-bar .container-fluid {
  padding: 0 1rem;
}

@media (min-width: 992px) {
  .bizapps-top-bar .container-fluid {
    padding: 0 3rem;
  }
}

.bizapps-top-bar .bizapps-top-bar__row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  column-gap: 1.5rem;
  width: 100%;
  min-height: 1.35rem;
}

.bizapps-top-bar .bizapps-top-bar__contact {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  column-gap: 0.65rem;
  row-gap: 0;
}

.bizapps-top-bar .bizapps-top-bar__contact-item {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.bizapps-top-bar .bizapps-top-bar__icon {
  width: 0.875rem;
  text-align: center;
  flex-shrink: 0;
  opacity: 0.92;
}

.bizapps-top-bar .bizapps-top-bar__label {
  font-weight: 500;
  opacity: 0.88;
}

.bizapps-top-bar .bizapps-top-bar__sep {
  opacity: 0.55;
  user-select: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.bizapps-top-bar .bizapps-top-bar__actions {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  column-gap: 0.5rem;
  row-gap: 0;
}

.bizapps-top-bar .bizapps-top-bar__action {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: var(--transition-base);
  font-size: inherit;
  white-space: nowrap;
}

.bizapps-top-bar .bizapps-top-bar__action:hover {
  opacity: 0.85;
}

.bizapps-top-bar .bizapps-top-bar__action .fa {
  width: 0.875rem;
  text-align: center;
  flex-shrink: 0;
  opacity: 0.92;
}

.bizapps-top-bar a,
.bizapps-top-bar a:hover,
.bizapps-top-bar a:focus,
.bizapps-top-bar a:active {
  text-decoration: none !important;
}

.bizapps-header .header-link-dynamic {
  text-decoration: none;
  transition: var(--transition-base);
}

.bizapps-header .header-link-dynamic:hover {
  opacity: 0.85;
}

.bizapps-header .header-link-separator-dynamic {
  opacity: 0.5;
}

@media (max-width: 767.98px) {
  .bizapps-top-bar {
    font-size: 0.75rem;
  }

  .bizapps-top-bar .bizapps-top-bar__contact .bizapps-top-bar__sep,
  .bizapps-top-bar .bizapps-top-bar__contact .bizapps-top-bar__contact-item ~ .bizapps-top-bar__contact-item {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .bizapps-top-bar {
    padding: 0.35rem 0;
  }

  .bizapps-top-bar .bizapps-top-bar__row {
    flex-wrap: wrap;
    align-items: center;
    row-gap: 0.35rem;
  }

  .bizapps-top-bar .bizapps-top-bar__actions {
    flex-wrap: wrap;
    row-gap: 0.25rem;
  }
}

.bizapps-header .navbar {
  background: transparent !important;
  padding: 1rem 0;
}

.bizapps-header .navbar .container-fluid {
  padding: 0 1rem;
}

@media (min-width: 992px) {
  .bizapps-header .navbar .container-fluid {
    padding: 0 3rem;
  }
}

.bizapps-header .navbar-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.75rem;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.bizapps-header .bizapps-logo-dynamic {
  height: 45px;
  max-height: 45px;
  margin-right: 0.5rem;
  object-fit: contain;
}

.bizapps-header .navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.bizapps-header .navbar-toggler:focus {
  box-shadow: none;
}

.bizapps-header .navbar-nav {
  gap: 0.25rem;
}

.bizapps-header .nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: var(--transition-base);
}

.bizapps-header .nav-link:hover {
  color: var(--secondary-color) !important;
}

.bizapps-header .nav-link.active {
  color: var(--secondary-color) !important;
  font-weight: 600;
}

/* Header Odoo mặc định: Odoo set màu !important cho .nav-link > * — cần selector con */
#bizappsNavbar a.nav-link.active,
#bizappsNavbar a.nav-link.active * {
  color: #2891ff !important;
  font-weight: 600;
}

.bizapps-header .dropdown-menu {
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-sm);
  background-color: #ffffff;
}

.bizapps-header .dropdown-item {
  padding: 0.5rem 1rem;
  transition: var(--transition-base);
}

.bizapps-header .dropdown-item:hover {
  background-color: rgba(6, 115, 229, 0.1);
  color: var(--primary-color);
}

.bizapps-header .d-flex.align-items-center.gap-2 {
  gap: 0.5rem !important;
}

.bizapps-header .ba-header-login-btn:not(.ba-portal-sign-in-btn) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.875rem;
  font-family: var(--font-family);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-base);
}

.bizapps-header .ba-header-login-btn:not(.ba-portal-sign-in-btn):hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.bizapps-header .ba-header-login-btn:not(.ba-portal-sign-in-btn):focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(6, 115, 229, 0.25);
}

.bizapps-header .ba-header-login-btn:not(.ba-portal-sign-in-btn).btn-outline-light {
  border: 1px solid var(--white);
  color: var(--white);
}

.bizapps-header .ba-header-login-btn:not(.ba-portal-sign-in-btn).btn-outline-light:hover {
  background: var(--white);
  color: var(--primary-color);
}

.bizapps-header .ba-header-login-btn:not(.ba-portal-sign-in-btn).btn-outline-dark {
  border: 1px solid var(--primary-color);
  color: var(--text-primary);
}

.bizapps-header .ba-header-login-btn:not(.ba-portal-sign-in-btn).btn-outline-dark:hover {
  background: var(--primary-color);
  color: var(--white);
}

.bizapps-header .btn[href="/try"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-base);
  background: #4a90e2;
  color: var(--white);
}

.bizapps-header .btn[href="/try"]:hover {
  background: #3a7bc8;
  text-decoration: none;
  transform: translateY(-2px);
}

.bizapps-header .ba-user-dropdown-container {
  position: relative;
}

.bizapps-header .ba-user-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none !important;
  padding: 0.5rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-base);
  width: auto;
  max-width: none;
  min-width: 0;
  height: auto;
  background: transparent !important;
  border: none !important;
}


.bizapps-header .ba-user-avatar {
  position: static;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.bizapps-header .ba-user-name {
  font-weight: 500;
  max-width: min(240px, 32vw);
  min-width: 0;
  width: auto;
  margin-left: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bizapps-header .ba-user-dropdown-icon {
  transition: transform 0.2s ease;
}

.bizapps-header .ba-user-dropdown-toggle[aria-expanded="true"] .ba-user-dropdown-icon {
  transform: rotate(90deg);
}

.bizapps-header .ba-user-dropdown-menu {
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: var(--border-radius-sm);
  min-width: 200px;
  background-color: #ffffff;
}

/* Page-specific header styling */
.bizapps-header.is-homepage .header-text-dynamic,
.bizapps-header.is-homepage .header-link-dynamic {
  color: var(--white) !important;
}

.bizapps-header.is-homepage .toggle-icon-dynamic .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.bizapps-header.is-homepage .header-link-separator-dynamic {
  color: rgba(255, 255, 255, 0.5) !important;
}

.bizapps-header.is-homepage .bizapps-top-bar {
  background: rgba(0, 0, 0, 0.2);
  border-bottom: none;
}

/* Hero header: user pill — SCSS nested .ba-user-name (#37363d) beats .header-text-dynamic without this */


.bizapps-header.is-homepage .ba-user-dropdown-icon path {
  stroke: rgba(255, 255, 255, 0.9) !important;
}

.bizapps-header:not(.is-homepage) .header-text-dynamic,
.bizapps-header:not(.is-homepage) .header-link-dynamic {
  color: var(--text-primary) !important;
}

.bizapps-header:not(.is-homepage) .bizapps-top-bar {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e6e7eb !important;
}

.bizapps-header:not(.is-homepage) .toggle-icon-dynamic .navbar-toggler-icon {
  filter: brightness(0);
}

.bizapps-header:not(.is-homepage) .header-link-separator-dynamic {
  color: rgba(0, 0, 0, 0.5) !important;
}

.bizapps-header:not(.is-homepage) .ba-header-login-btn:not(.ba-portal-sign-in-btn) {
  color: var(--text-primary) !important;
  border-color: var(--primary-color) !important;
  border-width: 1px !important;
  border-style: solid !important;
}

/* Mobile menu overlay */
.ba-mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.ba-mobile-menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

.ba-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.ba-mobile-menu-logo img {
  height: 33px;
  max-height: 33px;
  object-fit: contain;
}

.ba-mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  padding: 0.5rem;
  cursor: pointer;
}

.ba-mobile-menu-close svg {
  width: 16px;
  height: 16px;
}

.ba-mobile-menu-content {
  padding: 1.5rem;
}

.ba-mobile-menu-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ba-mobile-menu-actions .ba-user-dropdown-container {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-mobile-menu-actions .ba-user-dropdown-toggle {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 7px 16px 7px 7px;
  gap: 10px;
  width: 100%;
  max-width: 188px;
  min-height: 40px;
  height: 56px;
  background: #ffffff;
  border: 1px solid #e6e7eb;
  border-radius: 30px;
  text-decoration: none;
}

.ba-mobile-menu-actions .ba-user-avatar {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  position: static;
  border-radius: 50%;
  object-fit: cover;
  background: #c4c4c4;
}

.ba-mobile-menu-actions .ba-user-name {
  min-width: 0;
  flex: 1;
  width: auto;
  max-width: 120px;
  height: auto;
  margin-left: 0;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.25;
  color: #37363d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ba-mobile-menu-actions .ba-user-dropdown-icon {
  width: 5px;
  height: 10px;
  flex-shrink: 0;
  margin-left: auto;
  transform: rotate(90deg);
}

.ba-mobile-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: var(--border-radius-xl);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-base);
  width: 100%;
  max-width: 280px;
}

.ba-mobile-menu-btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.ba-mobile-menu-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(6, 115, 229, 0.25);
}

.ba-mobile-menu-btn.ba-mobile-menu-btn-try {
  background: var(--primary-color);
  color: var(--white);
}

.ba-mobile-menu-btn.ba-mobile-menu-btn-try:hover {
  background: #0556c2;
  color: var(--white);
}


.ba-mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-base);
}

.ba-mobile-menu-link:hover {
  color: var(--secondary-color);
}

.ba-mobile-menu-item-dropdown .ba-mobile-menu-dropdown-icon {
  transition: transform 0.3s ease;
}

.ba-mobile-menu-item-dropdown.is-open .ba-mobile-menu-dropdown-icon {
  transform: rotate(90deg);
}

.ba-mobile-menu-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.ba-mobile-menu-dropdown.is-open {
  max-height: 200px;
}

.ba-mobile-menu-dropdown-item {
  padding-left: 1rem;
}

.ba-mobile-menu-dropdown-item a {
  display: block;
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-base);
}

.ba-mobile-menu-dropdown-item a:hover {
  color: var(--secondary-color);
}

.ba-mobile-menu-separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.ba-mobile-menu-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.ba-mobile-menu-footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-base);
}

.ba-mobile-menu-footer-link:hover {
  color: var(--secondary-color);
}

/* Homepage Styles */
.ba-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.ba-hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 2.5rem;
}

.ba-hero-badge > div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 20px 6px 6px;
  gap: 10px;
  height: 44px;
  background: var(--accent-color);
  border-radius: 30px;
  overflow: hidden;
}

.ba-hero-badge > div > div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  gap: 10px;
  width: 32px;
  height: 32px;
  background: transparent;
  border-radius: 40px;
}

.ba-hero-badge img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.ba-hero-badge span {
  margin-left: 5px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(16px, 2.5vw, 19px);
  line-height: 30px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #151416;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.ba-hero-title {
  margin-top: 40px;
  width: 100%;
  max-width: 1066px;
  height: auto;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.03em;
  color: var(--white);
  word-break: break-word;
}

.ba-hero-title span {
  color: var(--secondary-color);
}

.ba-hero-cta {
  margin-top: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 520px;
  flex-wrap: wrap;
  justify-content: center;
}

.ba-hero-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: calc(50% - 10px);
  min-width: 220px;
  box-sizing: border-box;
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius-xl);
  font-family: var(--font-family);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-base);
}

.ba-hero-cta a:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.ba-hero-cta a:first-child {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.ba-hero-cta a:first-child:hover {
  background: var(--white);
  color: var(--primary-color);
}

.ba-hero-cta a:last-child {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0px 0px 30px rgba(0, 99, 249, 0.4);
}

.ba-hero-cta a:last-child:hover {
  background: #0556c2;
  color: var(--white);
}

.ba-hero-cta span {
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 26px;
  width: auto;
}

.ba-hero-img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-hero-img img {
  width: 100%;
  max-width: 1080px;
  height: auto;
  display: block;
}

/* Badge components */
.ba-odoo-badge-top,
.ba-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem 0.625rem 0.625rem;
  border: 1px solid #E6E7EB;
  border-radius: var(--border-radius-lg);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(0.875rem, 2.5vw, 1.25rem);
  line-height: 1.875;
  letter-spacing: -0.03em;
  overflow: hidden;
  justify-content: center;
}

.ba-odoo-badge-top img:first-child,
.ba-app-badge img:first-child {
  width: 32px;
  height: 32px;
  border-radius: 20px;
  padding-bottom: 1px;
  flex-shrink: 0;
}

.ba-odoo-badge-top img[src*="cursor.png"],
.ba-app-badge img[src*="cursor.png"] {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.ba-odoo-badge-top span,
.ba-app-badge span {
  color: var(--text-primary);
  text-align: center;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Stats sections */
.ba-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1280px;
  width: 100%;
  margin-top: 10px;
}

.ba-stats-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: calc(50% - 5px);
  min-width: 320px;
  height: 180px;
  background: var(--background-light);
  border-radius: 30px;
  padding: 60px 40px;
  box-sizing: border-box;
  overflow: hidden;
}

.ba-stats-number {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(32px, 8vw, 64px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #151416;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

.ba-stats-number sup {
  font-size: 0.55em;
}

.ba-stats-text-wrapper,
.ba-stats-app-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex: 1;
  min-width: 0;
}

.ba-stats-text-wrapper img,
.ba-stats-app-wrapper img {
  width: 26px;
  height: 25px;
  flex-shrink: 0;
}

.ba-stats-text,
.ba-stats-app-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  min-width: 0;
}

.ba-stats-card:nth-child(1) { border-radius: 30px 30px 100px 30px; }
.ba-stats-card:nth-child(2) { border-radius: 30px 30px 30px 100px; }
.ba-stats-card:nth-child(3) { border-radius: 30px 100px 30px 30px; }
.ba-stats-card:nth-child(4) { border-radius: 100px 30px 30px 30px; }

/* System capacity slider */
.ba-slider {
  position: relative;
  max-width: 1280px;
  width: 100%;
  overflow: hidden;
}

.ba-slider__viewport {
  overflow: hidden;
  width: 100%;
}

.ba-slider__track {
  display: flex;
  gap: 2rem;
  transition: transform 0.3s ease;
}

.ba-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-base);
}

.ba-slider__btn:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.ba-slider__btn--prev {
  left: 1rem;
}

.ba-slider__btn--next {
  right: 1rem;
}

.ba-slider__btn span {
  font-size: 1.2rem;
  color: var(--text-primary);
}

.ba-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition-base);
  max-width: 400px;
  width: 100%;
}

.ba-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.ba-card__image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ba-card__body {
  padding: 1.5rem;
}

.ba-card__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.ba-card__desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.ba-card__desc p {
  margin-bottom: 0.5rem;
}

.ba-card__desc p:last-child {
  margin-bottom: 0;
}

/* Footer section */
.foooter-bg-color {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  background: var(--background-dark);
  position: relative;
  box-sizing: border-box;
}

.footer-top-section {
  position: relative;
  z-index: 1;
}

.footer-top-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--background-dark);
  background-image: url('/bizapps_website/static/description/image/home/backfooter.png');
  background-size: 100% 100%, cover;
  background-position: center;
  z-index: 0;
}

.ba-footer-content {
  position: relative;
  padding: 0 0 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  z-index: 1;
}

.ba-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 820px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.ba-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem 0.625rem 0.625rem;
  border: 1px solid rgba(230, 231, 235, 0.6);
  border-radius: var(--border-radius-lg);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(0.875rem, 2.5vw, 1.25rem);
  line-height: 1.875;
  letter-spacing: -0.03em;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.75);
  max-width: 100%;
  width: 575px;
}

.ba-footer-badge span {
  color: var(--text-primary);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ba-footer-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #151416;
}

.ba-footer-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: var(--text-secondary);
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.ba-footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: var(--border-radius-xl);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-base);
  background: linear-gradient(135deg, var(--primary-color) 0%, #3E8FFF 100%);
  color: var(--white);
  box-shadow: 0 18px 45px rgba(6, 115, 229, 0.35);
  gap: 10px;
}

.ba-footer-cta:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.ba-footer-cta span {
  font-size: 20px;
  line-height: 26px;
}

.ba-footer-cta img {
  width: 22px;
  height: 22px;
}

.ba-deployment-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}

.ba-deployment-images img {
  max-width: 100%;
  height: auto;
  flex: 1;
  min-width: 200px;
  will-change: transform;
}

/* Animation keyframes */
@keyframes floatUp {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatDown {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
}

.ba-deployment-images img:nth-child(1),
.ba-deployment-images img:nth-child(3) {
  animation: floatUp 3s ease-in-out infinite;
}

.ba-deployment-images img:nth-child(2) {
  animation: floatDown 3s ease-in-out infinite;
}

/* Companies section */
.ba-companies-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 926px;
  width: 100%;
  min-height: 228px;
  position: relative;
  z-index: 2;
}

.ba-companies-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem 0.625rem 0.625rem;
  border: 1px solid rgba(230, 231, 235, 0.6);
  border-radius: var(--border-radius-lg);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(0.875rem, 2.5vw, 1.25rem);
  line-height: 1.875;
  letter-spacing: -0.03em;
  overflow: hidden;
  background: var(--accent-color);
}

.ba-companies-badge span {
  color: var(--text-primary);
}

.ba-companies-title {
  margin-top: 40px;
  max-width: 926px;
  width: 100%;
  min-height: 136px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.03em;
  color: var(--white);
}

.ba-companies-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  max-width: 1282px;
  width: 100%;
}

.ba-company-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 62px 96px;
  gap: 10px;
  width: 209.5px;
  max-height: 109.74px;
  background: rgba(255, 255, 255, 0.05);
  flex: 1;
  box-sizing: border-box;
}

.ba-company-item img {
  max-width: 140px;
  height: auto;
}

/* Contact form */
.ba-contact-form-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 80px;
  gap: 40px;
  max-width: 1280px;
  width: 100%;
  background: var(--background-blue);
  border-radius: 30px;
  margin: 0 auto;
}

.ba-contact-form-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  order: 2;
}

.ba-contact-title {
  width: 100%;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--white);
}

.ba-contact-title p {
  margin: 0 0 10px 0;
}

.ba-contact-title p:last-child {
  margin: 0;
}

.ba-contact-subtitle {
  width: 100%;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(14px, 2vw, 17px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
}

.ba-contact-form-content form {
  width: 100%;
  margin-top: 40px;
}

.ba-contact-form-row {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.ba-contact-form-left,
.ba-contact-form-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 30px;
}

.ba-contact-form-content .form-group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.ba-contact-form-content label {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
}

.ba-contact-form-content input,
.ba-contact-form-content textarea {
  background: transparent;
  border: none;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.3); */
  padding: 8px 0;
  font-family: var(--font-family);
  font-size: 16px;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s;
}

.ba-contact-form-content input::placeholder,
.ba-contact-form-content textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

.ba-contact-form-content input:focus,


.ba-contact-form-content textarea {
  resize: vertical;
  min-height: 80px;
}

.ba-contact-form-content .gender-group {
  display: flex;
  align-items: center;
  gap: 20px;
  align-items: center;
}

.ba-contact-form-content .gender-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.ba-contact-form-content .gender-group input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--white);
}

.ba-contact-submit-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 30px;
  width: 100%;
}

.ba-contact-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 30px;
  background: var(--background-blue);
  border: 1px solid var(--white);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(14px, 2vw, 16px);
  color: var(--white);
  cursor: pointer;
  transition: var(--transition-base);
}

.ba-contact-submit-btn:hover {
  background: #005bb5;
  transform: scale(1.05);
}

.ba-contact-submit-btn img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.ba-contact-image {
  flex-shrink: 0;
  order: 2;
}

.ba-contact-image img {
  max-width: 100%;
  height: auto;
}

/* Placeholder styles for footer */
.foooter-bg-color input::placeholder,
.foooter-bg-color textarea::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
  opacity: 1;
}

.foooter-bg-color input::-webkit-input-placeholder,
.foooter-bg-color textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
  opacity: 1;
}

.foooter-bg-color input::-moz-placeholder,
.foooter-bg-color textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
  opacity: 1;
}

.foooter-bg-color input:-ms-input-placeholder,
.foooter-bg-color textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
  opacity: 1;
}

/* Ensure header is always transparent */
header.bizapps-header,
header.bizapps-header[style*="background"],
header.bizapps-header[style*="background-color"] {
  background: transparent !important;
  background-color: transparent !important;
}

header.bizapps-header nav.navbar,
header.bizapps-header nav.navbar[style*="background"],
header.bizapps-header nav.navbar[style*="background-color"] {
  background: transparent !important;
  background-color: transparent !important;
}

/* Container utilities */
.container.ba-hero {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

.container.ba-hero > div[style*="width: 1280px"],
.container.ba-hero > div > div[style*="width: 1280px"],
.container.ba-hero > div > div > div[style*="width: 1280px"] {
  width: 100% !important;
  max-width: 1280px;
  box-sizing: border-box;
}

/* Ensure container parent doesn't limit footer */
#wrap .container {
  overflow-x: visible;
}

/* Animation classes for Odoo's animation system */
.o_animate {
  opacity: 0;
  transition: all 0.6s ease;
}

.o_animate.o_visible {
  opacity: 1;
}

.o_animate.o_anim_fade_in.o_anim_from_top {
  transform: translateY(-30px);
}

.o_animate.o_anim_fade_in.o_anim_from_top.o_visible {
  transform: translateY(0);
}

.o_animate.o_anim_fade_in.o_anim_from_bottom {
  transform: translateY(30px);
}

.o_animate.o_anim_fade_in.o_anim_from_bottom.o_visible {
  transform: translateY(0);
}

.o_animate.o_anim_fade_in.o_anim_from_left {
  transform: translateX(-30px);
}

.o_animate.o_anim_fade_in.o_anim_from_left.o_visible {
  transform: translateX(0);
}

.o_animate.o_anim_fade_in.o_anim_from_right {
  transform: translateX(30px);
}

.o_animate.o_anim_fade_in.o_anim_from_right.o_visible {
  transform: translateX(0);
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-flex { display: flex; }
.d-inline-flex { display: inline-flex; }
.d-block { display: block; }
.d-inline-block { display: inline-block; }
.d-none { display: none; }

.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-around { justify-content: space-around; }
.justify-content-start { justify-content: flex-start; }
.justify-content-end { justify-content: flex-end; }

.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.align-items-end { align-items: flex-end; }
.align-items-stretch { align-items: stretch; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* Responsive design */
@media (max-width: 1199.98px) {
  .ba-hero {
    max-width: 1000px;
  }
  
  .ba-hero-title {
    font-size: clamp(32px, 5vw, 44px);
    line-height: 1.2;
    max-width: 900px;
  }
  
  .ba-stats-card {
    width: calc(50% - 5px);
    min-width: 280px;
  }
  
  .ba-slider__btn {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .ba-hero {
    padding: 0 1rem;
  }
  
  .ba-hero-title {
    font-size: clamp(28px, 5vw, 34px);
    line-height: 1.2;
  }
  
  .ba-hero-cta {
    gap: 12px;
  }
  
  .ba-hero-cta a {
    width: 100%;
    min-width: unset;
  }
  
  .ba-hero-cta span {
    width: auto;
  }
  
  .ba-stats-row .ba-stats-card {
    width: 100%;
    min-width: unset;
  }
  
  .foooter-bg-color .ba-contact-form-container {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
    align-items: center;
  }
  
  .foooter-bg-color .ba-contact-image {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .foooter-bg-color .ba-contact-form-content {
    order: 2;
    width: 100%;
  }
  
  .foooter-bg-color .ba-contact-form-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .foooter-bg-color .ba-contact-form-left,
  .foooter-bg-color .ba-contact-form-right {
    width: 100%;
  }
  
  .foooter-bg-color .ba-contact-submit-wrapper {
    justify-content: center;
  }
  
  .foooter-bg-color .ba-contact-submit-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .ba-companies-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0 10px;
  }
  
  .ba-company-item {
    width: 100%;
    padding: 30px 20px;
    min-height: auto;
  }
  
  .ba-company-item img {
    max-width: 100%;
  }
  
  .ba-deployment-images {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .ba-deployment-images img {
    width: 100%;
    max-width: 400px;
    min-width: unset;
  }
}

@media (max-width: 575.98px) {
  .ba-hero-title {
    font-size: clamp(24px, 5vw, 28px);
    line-height: 1.3;
  }
  
  .ba-hero-badge span {
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 24px;
  }
  
  .ba-stats-row .ba-stats-card {
    padding: 24px;
    height: auto;
  }
  
  .ba-stats-number {
    font-size: clamp(28px, 8vw, 44px);
    line-height: 1.2;
  }
  
  .ba-odoo-badge-top,
  .ba-app-badge {
    padding: 6px 10px 6px 6px;
    gap: 4px;
  }
  
  .ba-odoo-badge-top img:first-child,
  .ba-app-badge img:first-child {
    width: 20px;
    height: 20px;
  }
  
  .ba-odoo-badge-top img[src*="cursor.png"],
  .ba-app-badge img[src*="cursor.png"] {
    width: 16px;
    height: 16px;
  }
  
  .foooter-bg-color .ba-footer-content {
    padding: 0 10px 60px;
    gap: 24px;
  }
  
  .foooter-bg-color .ba-footer-inner {
    padding: 0 5px;
  }
  
  .foooter-bg-color .ba-footer-badge {
    padding: 6px 12px;
    gap: 6px;
  }
  
  .foooter-bg-color .ba-footer-badge img:first-child {
    width: 20px;
    height: 20px;
  }
  
  .foooter-bg-color .ba-footer-badge img[src*="cursor.png"] {
    width: 16px;
    height: 16px;
  }
  
  .foooter-bg-color .ba-footer-badge span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .foooter-bg-color .ba-footer-text {
    padding: 0 5px;
  }
  
  .ba-companies-header {
    gap: 24px;
    padding: 0 10px;
  }
  
  .ba-companies-badge {
    padding: 6px 12px;
    gap: 6px;
  }
  
  .ba-companies-badge img:first-child {
    width: 20px;
    height: 20px;
  }
  
  .ba-companies-badge img[src*="cursor.png"] {
    width: 16px;
    height: 16px;
  }
  
  .ba-companies-container {
    gap: 8px;
    padding: 0 5px;
  }
  
  .ba-company-item {
    padding: 20px 15px;
  }
  
  .ba-contact-form-container {
    padding: 30px 15px;
    gap: 20px;
  }
  
  .ba-contact-form-content form .ba-contact-form-row {
    gap: 15px;
  }
}