/* === TFT SITE CSS MAP ===
   Order mirrors the rendered homepage: foundation, Odoo chrome resets,
   custom navigation, homepage sections, footer, then Odoo system UI.
   Keep fixes scoped to Odoo-generated IDs/classes so the cascade stays predictable.
*/

/* === ODOO TEMPLATE SAFETY === */
/* Odoo stores embed-code backups in template tags; hide them so they never render as duplicate page content. */
template.s_embed_code_saved {
  display: none !important;
}

/* === GLOBAL FOUNDATION === */
/* Odoo sets `body { background-color: white; }` in web.assets_frontend.
   We want a sitewide dark skin, so hard-override the background on the actual root containers.
*/
html, body, #wrapwrap, main {
  background-color: #000 !important;
  color: #fff !important;
}

/* Pin Odoo wrapper canvases to the sitewide black background. */
#wrapwrap,
#wrapwrap > main,
#wrapwrap main {
  background: #000 !important;
  background-color: #000 !important;
}

/* Normalize site font and spacing without touching Odoo editor mode. */
body:not(.o_edit_mode),
#wrapwrap:not(.o_edit_mode),
main:not(.o_edit_mode) {
  font-family: Arial, Helvetica, sans-serif !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* === SITEWIDE TYPOGRAPHY ===
   Bootstrap/Odoo derives Normal text from these variables, so this sets the baseline without broad selector fights.
*/
:root {
  --bs-body-font-size: 18px;
  --bs-body-line-height: 1.7;
}

#wrapwrap main {
  padding: 0 !important;
  margin: 0 !important;
}

/* Let embedded homepage sections own their full-width layout. */
#wrapwrap section.s_embed_code,
#wrapwrap .s_embed_code_embedded {
  background: #000 !important;
  color: #fff !important;
  max-width: none !important;
  padding: 0 !important;
  width: 100% !important;
}

/* === ODOO CHROME RESET === */
/* Hide stock Odoo navigation/footer chrome so the custom TFT chrome is the only visible site frame. */
#wrapwrap > header#top,
#wrapwrap > header.o_top_fixed_element,
#wrapwrap > footer#footer,
#wrapwrap .o_main_navbar,
#wrapwrap .o_header_disappears,
#wrapwrap .o_header_sales_three_top,
#wrapwrap .o_header_mobile,
#wrapwrap .o_header_mobile_buttons_wrap,
#wrapwrap nav.o_colored_level,
#wrapwrap #o_main_nav,
#wrapwrap #top_menu,
#wrapwrap .top_menu,
#wrapwrap .o_wsale_my_cart,
#wrapwrap .o_wsale_my_wish,
#wrapwrap .o_no_autohide_item,
#wrapwrap #top_menu_collapse_mobile {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
}

/* === SITE CHROME: CUSTOM NAVIGATION === */
#tft-nav {
  position: relative;
  z-index: 10000;
}

#tft-nav,
#tft-nav * {
  box-sizing: border-box;
}

#tft-nav .tft-logo {
  height: 40px;
  width: auto;
}

#tft-nav .tft-hamburger {
  display: inline-flex !important;
}

#tft-nav .tft-overlay {
  background: #000 !important;
  color: #fff !important;
  display: none !important;
  inset: 0 !important;
  position: fixed !important;
  z-index: 9999 !important;
}

#tft-nav .tft-overlay[data-open="true"] {
  display: block !important;
}

body.tft-nav-open {
  overflow: hidden;
}

#tft-nav .tft-row {
  align-items: center;
  display: flex;
  height: 80px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 1.5rem;
}

#tft-nav .tft-topbar {
  background: #000 !important;
  border-bottom: 1px solid #27272a;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10001;
}

#tft-nav .tft-brand {
  align-items: center;
  display: flex;
  gap: 0.75rem;
}

#tft-nav .tft-brand span {
  font-weight: 700;
  letter-spacing: 0.02em;
}

#tft-nav .tft-dropdown {
  position: relative;
}

#tft-nav .tft-dropdown-toggle {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 0.25rem;
  text-align: left !important;
}

#tft-nav .tft-dropdown-toggle .tft-link {
  text-align: left !important;
}

#tft-nav .tft-dropdown-toggle svg,
#tft-nav .tft-accordion-header svg {
  height: 16px;
  transition: transform 0.2s ease;
  width: 16px;
}

#tft-nav .tft-dropdown:hover .tft-dropdown-toggle svg,
#tft-nav .tft-accordion[data-open="true"] .tft-accordion-header svg {
  transform: rotate(180deg);
}

#tft-nav .tft-dropdown-menu {
  background: #000;
  border: 1px solid #27272a;
  border-radius: 0.5rem;
  left: 0;
  margin-top: 0.5rem;
  min-width: 240px;
  opacity: 0;
  padding: 0.5rem 0;
  position: absolute;
  text-align: left !important;
  top: 100%;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  visibility: hidden;
  z-index: 10002;
}

#tft-nav .tft-dropdown:hover .tft-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

#tft-nav .tft-dropdown-item {
  color: #fff;
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  text-align: left !important;
  text-decoration: none;
  transition: all 0.2s ease;
  width: 100%;
}

#tft-nav .tft-dropdown-item:hover {
  background: #18181b;
  color: #fbbf24;
  padding-left: 1.5rem;
}

#tft-nav .tft-iconbtn {
  align-items: center;
  background: none !important;
  border: none !important;
  border-radius: 8px;
  color: #fff !important;
  cursor: pointer;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}

#tft-nav .tft-iconbtn:focus {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}

#tft-nav .tft-overlay .tft-header {
  border-bottom: 1px solid #27272a;
}

#tft-nav .tft-overlay .tft-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
}

#tft-nav .tft-link {
  color: #fff !important;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.75rem 0;
  text-decoration: none !important;
  transition: color 0.2s ease-in-out;
}

#tft-nav .tft-link:hover {
  color: #fbbf24 !important;
}

#tft-nav .tft-accordion {
  border-bottom: 1px solid #27272a;
}

#tft-nav .tft-accordion-header {
  align-items: center;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 0.875rem;
  font-weight: 700;
  justify-content: space-between;
  padding: 0.75rem 0;
  user-select: none;
}

#tft-nav .tft-accordion-header:hover {
  color: #fbbf24;
}

#tft-nav .tft-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

#tft-nav .tft-accordion[data-open="true"] .tft-accordion-content {
  max-height: 500px;
}

#tft-nav .tft-accordion-item {
  color: #a1a1aa;
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.625rem 0 0.625rem 1rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

#tft-nav .tft-accordion-item:hover {
  color: #fbbf24;
}

#tft-nav .tft-mobile-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

#tft-nav .tft-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.375rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.2s ease-in-out;
  height: 2.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

#tft-nav .tft-btn-outline {
  border: 1px solid #f59e0b;
  color: #f59e0b;
  background: transparent;
}

#tft-nav .tft-btn-outline:hover {
  background: #d97706;
  color: #000;
  border-color: #d97706;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
  transform: translateY(-1px);
}

#tft-nav .tft-btn-amber {
  background: #f59e0b;
  color: #000;
  border: none;
}

#tft-nav .tft-btn-amber:hover {
  background: #d97706;
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

@media (min-width: 768px) {
  #tft-nav .tft-hamburger {
    display: none !important;
  }

  #tft-nav .tft-desktop-links {
    align-items: center !important;
    display: flex !important;
    gap: 2.5rem !important;
  }

  #tft-nav .tft-cta {
    display: flex !important;
    gap: 1rem;
  }
}

@media (max-width: 767.98px) {
  #tft-nav .tft-desktop-links,
  #tft-nav .tft-cta {
    display: none !important;
  }
}

/* === INNER PAGES: LEGAL / POLICY TEMPLATE === */
.tft-inner-page {
  background: #000 !important;
  color: #f4f4f5 !important;
  padding: 8rem 0 5rem !important;
}

.tft-inner-page,
.tft-inner-page * {
  box-sizing: border-box !important;
}

.tft-inner-shell {
  margin: 0 auto !important;
  max-width: 920px !important;
  padding: 0 1.5rem !important;
  width: 100% !important;
}

.tft-inner-kicker {
  color: #f59e0b !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  line-height: 1rem !important;
  margin: 0 0 0.75rem !important;
  text-transform: uppercase !important;
}

.tft-inner-title {
  color: #fff !important;
  font-size: 3rem !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
  margin: 0 0 1.25rem !important;
}

.tft-inner-summary {
  color: #d4d4d8 !important;
  font-size: 1.125rem !important;
  line-height: 1.7 !important;
  margin: 0 0 2.5rem !important;
  max-width: 760px !important;
}

.tft-legal-copy {
  color: #d4d4d8 !important;
  font-size: 1rem !important;
  line-height: 1.75 !important;
}

.tft-legal-copy p {
  margin: 0 0 1.25rem !important;
}

.tft-legal-copy a {
  color: #f59e0b !important;
  text-decoration: none !important;
}

.tft-legal-copy a:hover {
  color: #fbbf24 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

.tft-legal-table-wrap {
  margin: 2rem 0 !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
}

.tft-legal-table {
  border-collapse: collapse !important;
  color: #e4e4e7 !important;
  min-width: 720px !important;
  text-align: left !important;
  width: 100% !important;
}

.tft-legal-table th,
.tft-legal-table td {
  border: 1px solid #27272a !important;
  padding: 1rem !important;
  text-align: left !important;
  vertical-align: top !important;
}

.tft-legal-table th {
  background: #18181b !important;
  color: #fff !important;
  font-size: 0.8125rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  line-height: 1.35 !important;
  text-transform: uppercase !important;
}

.tft-legal-table td {
  background: #09090b !important;
  font-size: 0.9375rem !important;
  line-height: 1.6 !important;
}

.tft-legal-table p {
  margin: 0 0 0.75rem !important;
}

.tft-legal-table p:last-child {
  margin-bottom: 0 !important;
}

@media (max-width: 767.98px) {
  .tft-inner-page {
    padding: 6.5rem 0 4rem !important;
  }

  .tft-inner-title {
    font-size: 2.25rem !important;
  }

  .tft-inner-summary {
    font-size: 1rem !important;
  }
}

/* === HOMEPAGE: HERO === */
#wrapwrap .hero-section,
.s_embed_code_embedded .hero-section,
.hero-section {
  position: relative !important;
  min-height: 800px !important;
  width: 100% !important;
  background-color: #000 !important;
  overflow: visible !important;
  padding: 0 0 4rem !important;
}

.hero-gradient-1,
.hero-gradient-2 {
  position: absolute !important;
  inset: 0 !important;
}

.hero-gradient-1 {
  background: linear-gradient(to bottom right, #111827, #1f2937, #000) !important;
  opacity: 0.2 !important;
}

.hero-gradient-2 {
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.9), #000) !important;
}

.hero-container {
  position: relative !important;
  z-index: 10 !important;
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  gap: 1.5rem !important;
  align-items: center !important;
  min-height: 800px !important;
  padding: 0 1.5rem !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.hero-left {
  grid-column: span 12 / span 12 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2rem !important;
}

#wrapwrap .hero-right,
.s_embed_code_embedded .hero-right,
.hero-right {
  grid-column: span 12 / span 12 !important;
  display: none !important;
}

.hero-badge {
  display: inline-block !important;
  width: fit-content !important;
  margin: 0 auto 0 0 !important;
  padding: 0.375rem 1rem !important;
  border: 1px solid #27272a !important;
  border-radius: 9999px !important;
  background-color: rgba(24, 24, 27, 0.8) !important;
  color: #f59e0b !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  text-align: left !important;
}

.hero-title {
  max-width: 36rem !important;
  margin: 0 auto 0 0 !important;
  color: #fff !important;
  font-size: 3rem !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1.1 !important;
  text-align: left !important;
}

.hero-title-line,
.hero-title-amber {
  display: block !important;
  line-height: 1.1 !important;
}

.hero-title-line {
  color: #fff !important;
}

.hero-title-amber {
  color: #f59e0b !important;
}

.hero-description {
  max-width: 36rem !important;
  margin: 0 auto 0 0 !important;
  color: #d4d4d8 !important;
  font-size: 1.125rem !important;
  line-height: 1.6 !important;
  text-align: left !important;
}

#wrapwrap .hero-buttons,
.s_embed_code_embedded .hero-buttons,
.hero-buttons {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 1rem !important;
  align-items: center !important;
}

#wrapwrap .hero-button,
.s_embed_code_embedded .hero-button,
.tft-legal-copy a.hero-button,
.hero-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  min-height: 3rem !important;
  padding: 0.875rem 2rem !important;
  border: 0 !important;
  border-radius: 0.375rem !important;
  background-color: #f59e0b !important;
  color: #000 !important;
  cursor: pointer !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  text-decoration: none !important;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease !important;
  white-space: nowrap !important;
}

#wrapwrap .hero-button:hover,
.s_embed_code_embedded .hero-button:hover,
.tft-legal-copy a.hero-button:hover,
.hero-button:hover {
  background-color: #d97706 !important;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3) !important;
  color: #000 !important;
  text-decoration: none !important;
  transform: translateY(-1px) !important;
}

.hero-button-icon {
  width: 1.25rem !important;
  height: 1.25rem !important;
}

.hero-image-container {
  position: relative !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  border: 1px solid #27272a !important;
  border-radius: 1rem !important;
  background-color: #18181b !important;
}

.hero-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 0.8 !important;
}

.hero-overlay-top {
  position: absolute !important;
  top: 1rem !important;
  left: 1rem !important;
  z-index: 10 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  padding: 0.375rem 1rem !important;
  border-radius: 9999px !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(8px) !important;
}

.hero-overlay-dot,
.hero-card-dot {
  width: 0.5rem !important;
  height: 0.5rem !important;
  border-radius: 50% !important;
}

.hero-overlay-dot {
  background-color: #f59e0b !important;
}

.hero-overlay-text {
  color: #fff !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
}

.hero-overlay-bottom {
  position: absolute !important;
  right: 2rem !important;
  bottom: 2rem !important;
  left: 2rem !important;
  text-align: left !important;
}

.hero-overlay-title {
  margin: 0 !important;
  color: #fff !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  text-align: left !important;
}

.hero-overlay-desc {
  margin: 0.5rem 0 0 !important;
  color: #d4d4d8 !important;
  text-align: left !important;
}

.hero-card {
  position: absolute !important;
  right: 0.5rem !important;
  bottom: 3rem !important;
  z-index: 10 !important;
  width: 380px !important;
  max-width: calc(100% - 2rem) !important;
  padding: 1.5rem !important;
  border: 1px solid #27272a !important;
  border-radius: 1rem !important;
  background-color: rgba(24, 24, 27, 0.95) !important;
  backdrop-filter: blur(8px) !important;
  color: inherit !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease !important;
}

.hero-card:hover {
  background-color: rgba(24, 24, 27, 1) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
  text-decoration: none !important;
  transform: translateY(-2px) !important;
}

.hero-card-content,
.hero-card-logo,
.hero-card-status {
  display: flex !important;
  align-items: center !important;
}

.hero-card-content {
  gap: 1rem !important;
}

.hero-card-logo {
  width: 3rem !important;
  height: 3rem !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background-color: #000 !important;
  flex: 0 0 auto !important;
}

.hero-card-status {
  gap: 0.5rem !important;
}

.hero-card-dot {
  background-color: #22c55e !important;
}

.hero-card-status-text {
  color: #22c55e !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
}

.hero-card-title {
  margin: 0 !important;
  color: #fff !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

@media (min-width: 1024px) {
  #wrapwrap .hero-left,
  .s_embed_code_embedded .hero-left,
  .hero-left {
    grid-column: span 6 / span 6 !important;
  }

  #wrapwrap .hero-right,
  .s_embed_code_embedded .hero-right,
  .hero-right {
    grid-column: span 6 / span 6 !important;
    display: block !important;
  }
}

@media (max-width: 768px) {
  .hero-badge,
  .hero-title,
  .hero-description {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .hero-title {
    font-size: 2.5rem !important;
  }

  .hero-description {
    font-size: 1rem !important;
  }
}

@media (max-width: 640px) {
  #wrapwrap .hero-section,
  .s_embed_code_embedded .hero-section,
  .hero-section,
  .hero-container {
    min-height: 720px !important;
  }

  .hero-title {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }

  .hero-title-line,
  .hero-title-amber {
    line-height: 1.2 !important;
  }

  .hero-description {
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
  }

  #wrapwrap .hero-buttons,
  .s_embed_code_embedded .hero-buttons,
  .hero-buttons {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.75rem !important;
  }

  .hero-button {
    width: 100% !important;
  }

  .hero-card {
    right: 1rem !important;
    bottom: 1rem !important;
  }
}

/* === HOMEPAGE: SERVICES === */
#services {
  position: relative !important;
  padding: 6rem 0 !important;
  background: #000 !important;
}

#services > div {
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 1.5rem !important;
}

#services .text-center {
  margin-bottom: 4rem !important;
  text-align: center !important;
}

#services .tft-services-eyebrow {
  display: inline-block !important;
  margin: 0 auto !important;
  padding: 0.375rem 1rem !important;
  border: 1px solid #27272a !important;
  border-radius: 9999px !important;
  background-color: rgba(24, 24, 27, 0.8) !important;
  color: #fbbf24 !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  text-align: center !important;
}

#services .tft-services-title {
  margin-top: 1.5rem !important;
  color: #fff !important;
  font-size: 3rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
  line-height: 1 !important;
  text-align: center !important;
}

#services .tft-services-accent {
  color: #fbbf24 !important;
}

#services .tft-services-intro {
  max-width: 42rem !important;
  margin: 1rem auto 0 !important;
  color: #a1a1aa !important;
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
  text-align: center !important;
}

#services .tft-services-grid {
  display: grid !important;
  width: 100% !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1.5rem !important;
}

#services .tft-service-card {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  min-height: 250px !important;
  width: 100% !important;
  max-width: none !important;
  padding: 2rem !important;
  overflow: hidden !important;
  border: 1px solid #27272a !important;
  border-radius: 1rem !important;
  background-color: rgba(24, 24, 24, 0.5) !important;
  cursor: pointer !important;
  flex: none !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease !important;
}

#services .tft-service-card:hover {
  border-color: rgba(120, 53, 15, 0.5) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
  transform: translateY(-2px) !important;
}

#services .tft-service-glow {
  position: absolute !important;
  top: -5rem !important;
  right: -5rem !important;
  width: 10rem !important;
  height: 10rem !important;
  border-radius: 50% !important;
  background-color: rgba(245, 158, 11, 0.1) !important;
  filter: blur(3rem) !important;
  transition: background-color 0.3s ease !important;
}

#services .tft-service-card:hover .tft-service-glow {
  background-color: rgba(245, 158, 11, 0.2) !important;
}

#services .tft-service-icon {
  display: flex !important;
  width: 3rem !important;
  height: 3rem !important;
  margin-bottom: 1.5rem !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid #27272a !important;
  border-radius: 1rem !important;
  background-color: #000 !important;
  color: #fbbf24 !important;
}

#services .tft-service-icon-svg {
  width: 1.5rem !important;
  height: 1.5rem !important;
}

#services .tft-service-title {
  margin-bottom: 0.75rem !important;
  color: #fff !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  text-align: left !important;
}

#services .tft-service-description {
  margin-bottom: 1.5rem !important;
  color: #a1a1aa !important;
  font-size: 1rem !important;
  text-align: left !important;
}

#services .tft-service-link {
  display: inline-flex !important;
  align-items: center !important;
  color: #fbbf24 !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  text-align: left !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

#services .tft-service-card:hover .tft-service-link,
#services .tft-service-link:hover {
  color: #f59e0b !important;
}

#services .tft-service-link-icon {
  width: 1rem !important;
  height: 1rem !important;
  margin-left: 0.25rem !important;
}

@media (max-width: 767px) {
  #services {
    padding: 6rem 0 !important;
  }

  #services .tft-services-title {
    font-size: 2.5rem !important;
  }

  #services .tft-services-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  #services .tft-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* === HOMEPAGE: PRICING === */
#pricing.tft-pricing-section {
  position: relative !important;
  overflow: hidden !important;
  padding: 5rem 0 !important;
  background: #000 !important;
}

#pricing .tft-pricing-bg-pattern,
#pricing .tft-pricing-bg-gradient {
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
}

#pricing .tft-pricing-bg-pattern {
  background-image: url('/placeholder.svg?height=1080&width=1920') !important;
  background-position: center !important;
  background-size: cover !important;
  opacity: 0.05 !important;
}

#pricing .tft-pricing-bg-gradient {
  background: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0.95), #000) !important;
}

#pricing .tft-pricing-container {
  position: relative !important;
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 2rem 1rem !important;
}

#pricing .tft-pricing-header {
  margin-bottom: 3rem !important;
  padding: 0 0.5rem !important;
  text-align: center !important;
}

#pricing .tft-pricing-eyebrow {
  display: inline-block !important;
  padding: 0.375rem 1rem !important;
  border: 1px solid #27272a !important;
  border-radius: 9999px !important;
  background-color: #18181b !important;
  color: #fbbf24 !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
}

#pricing .tft-pricing-title {
  margin-top: 1.5rem !important;
  color: #fff !important;
  font-size: 3rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
  line-height: 1 !important;
  text-align: center !important;
}

#pricing .tft-pricing-accent {
  color: #fbbf24 !important;
}

#pricing .tft-pricing-intro {
  margin-top: 1rem !important;
  color: #a1a1aa !important;
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
  text-align: center !important;
}

#pricing .tft-pricing-grid {
  display: grid !important;
  width: 100% !important;
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 1rem !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1.5rem !important;
}

#pricing .tft-pricing-card {
  position: relative !important;
  display: flex !important;
  min-height: 400px !important;
  width: 100% !important;
  max-width: none !important;
  flex: none !important;
  flex-direction: column !important;
  overflow: hidden !important;
  padding: 2rem !important;
  border: 1px solid #27272a !important;
  border-radius: 1rem !important;
  background-color: rgba(24, 24, 24, 0.5) !important;
  color: #fff !important;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
}

#pricing .tft-pricing-card:hover {
  border-color: rgba(120, 53, 15, 0.5) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
  transform: translateY(-2px) !important;
}

#pricing .tft-pricing-card-featured {
  border-color: rgba(120, 53, 15, 0.3) !important;
}

#pricing .tft-pricing-card-featured:hover {
  border-color: rgba(245, 158, 11, 0.3) !important;
}

#pricing .tft-pricing-glow {
  position: absolute !important;
  top: -5rem !important;
  right: -5rem !important;
  width: 10rem !important;
  height: 10rem !important;
  border-radius: 50% !important;
  background-color: rgba(245, 158, 11, 0.1) !important;
  filter: blur(3rem) !important;
  transition: background-color 0.3s ease !important;
}

#pricing .tft-pricing-card-featured .tft-pricing-glow,
#pricing .tft-pricing-card:hover .tft-pricing-glow {
  background-color: rgba(245, 158, 11, 0.2) !important;
}

#pricing .tft-pricing-badge {
  position: absolute !important;
  top: -0.25rem !important;
  right: -0.25rem !important;
  padding: 0.25rem 0.75rem !important;
  border-top-right-radius: 0.75rem !important;
  border-bottom-left-radius: 0.75rem !important;
  background-color: #f59e0b !important;
  color: #000 !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
}

#pricing .tft-pricing-card-header {
  margin-bottom: 1.5rem !important;
}

#pricing .tft-pricing-card-title {
  margin: 0 !important;
  color: #fff !important;
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  line-height: 1.75rem !important;
  text-align: left !important;
}

#pricing .tft-pricing-rate {
  display: flex !important;
  align-items: baseline !important;
  margin-top: 1rem !important;
}

#pricing .tft-pricing-price {
  color: #fff !important;
  font-size: 2.25rem !important;
  font-weight: 700 !important;
  line-height: 2.5rem !important;
}

#pricing .tft-pricing-unit {
  margin-left: 0.25rem !important;
  color: #a1a1aa !important;
  font-size: 1rem !important;
  line-height: 1.5rem !important;
}

#pricing .tft-pricing-subtitle {
  display: block !important;
  min-height: 40px !important;
  margin: 0.5rem 0 0 !important;
  color: #a1a1aa !important;
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
  text-align: left !important;
}

#pricing .tft-pricing-features {
  flex-grow: 1 !important;
  margin: 1.5rem 0 2rem !important;
  padding: 0 !important;
  list-style: none !important;
}

#pricing .tft-pricing-features li {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  margin-bottom: 1rem !important;
  color: #fff !important;
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
  list-style: none !important;
}

#pricing .tft-pricing-dot {
  display: block !important;
  width: 0.375rem !important;
  height: 0.375rem !important;
  flex-shrink: 0 !important;
  border-radius: 50% !important;
  background-color: #fbbf24 !important;
}

#pricing .tft-pricing-button {
  display: inline-flex !important;
  width: 100% !important;
  height: 2.5rem !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  padding: 0.5rem 1rem !important;
  border: none !important;
  border-radius: 0.375rem !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  text-align: center !important;
  text-decoration: none !important;
  transition: background-color 0.3s ease, color 0.3s ease !important;
}

#pricing .tft-pricing-button-secondary {
  background-color: #27272a !important;
  color: #fff !important;
}

#pricing .tft-pricing-button-secondary:hover {
  background-color: #f59e0b !important;
  color: #000 !important;
}

#pricing .tft-pricing-button-primary {
  background-color: #f59e0b !important;
  color: #000 !important;
}

#pricing .tft-pricing-button-primary:hover {
  background-color: #fbbf24 !important;
  color: #000 !important;
}

@media (max-width: 767px) {
  #pricing .tft-pricing-title {
    font-size: 2.5rem !important;
  }

  #pricing .tft-pricing-grid {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  #pricing .tft-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* === SITE CHROME: CUSTOM FOOTER ===
   Footer rules are scoped to the TFT embed. Dividers use normal document width to avoid mobile overflow.
*/
.tft-site-footer {
  background-color: #000 !important;
  border: 0 !important;
  color: #fff !important;
  padding: 0 0 3rem !important;
  text-align: left !important;
}

.tft-site-footer,
.tft-site-footer * {
  box-sizing: border-box !important;
}

.tft-footer-rule {
  border-top: 1px solid #27272a !important;
  height: 1px !important;
  margin: 0 0 3rem !important;
  width: 100% !important;
}

.tft-footer-shell {
  border: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 1200px !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  width: 100% !important;
}

.tft-footer-grid {
  display: grid !important;
  gap: 2rem !important;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 1.25fr) minmax(0, 0.8fr) minmax(0, 1.35fr) !important;
}

.tft-footer-column {
  display: block !important;
  min-width: 0 !important;
  text-align: left !important;
}

.tft-footer-brand-row {
  align-items: center !important;
  display: flex !important;
  gap: 0.5rem !important;
  margin-bottom: 1rem !important;
}

.tft-footer-logo {
  color: transparent !important;
  flex: 0 0 auto !important;
  height: 30px !important;
  width: 30px !important;
}

.tft-footer-brand-name {
  color: #fff !important;
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  line-height: 1.5rem !important;
}

.tft-footer-description {
  color: #a1a1aa !important;
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
  margin: 0 !important;
  text-align: left !important;
}

.tft-footer-heading {
  color: #fff !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  line-height: 1.25rem !important;
  margin: 0 0 1rem !important;
  text-align: left !important;
}

.tft-footer-list {
  list-style: none !important;
  margin: 0 !important;
  padding-left: 0 !important;
}

.tft-footer-list li {
  margin-bottom: 0.5rem !important;
}

.tft-footer-link {
  color: #a1a1aa !important;
  display: inline !important;
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
  text-align: left !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.tft-footer-link:hover {
  color: #fbbf24 !important;
}

.tft-footer-contact-group {
  margin-bottom: 2rem !important;
}

.tft-footer-contact-item {
  align-items: flex-start !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.25rem !important;
  margin-bottom: 1rem !important;
}

.tft-footer-contact-item:last-child {
  margin-bottom: 0 !important;
}

.tft-footer-contact-icon {
  color: #71717a !important;
  display: block !important;
  flex: none !important;
  font-size: 0.6875rem !important;
  font-weight: 600 !important;
  height: auto !important;
  letter-spacing: 0.08em !important;
  line-height: 1rem !important;
  margin: 0 !important;
  text-transform: uppercase !important;
  width: auto !important;
}

.tft-footer-contact-icon svg {
  display: none !important;
}

.tft-site-footer .footer-address,
.tft-site-footer .footer-phone-link,
.tft-site-footer .footer-email-link {
  font-size: 0.875rem !important;
  line-height: 1.5rem !important;
  margin: 0 !important;
  text-align: left !important;
}

.tft-site-footer .footer-address {
  color: #a1a1aa !important;
}

.tft-site-footer .footer-phone-link,
.tft-site-footer .footer-email-link {
  color: #fbbf24 !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.tft-site-footer .footer-phone-link:hover,
.tft-site-footer .footer-email-link:hover {
  color: #fcd34d !important;
}

.tft-footer-email-wrap {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  overflow: visible !important;
}

.tft-site-footer .footer-email-link {
  font-size: 0.75rem !important;
  overflow-wrap: normal !important;
  white-space: nowrap !important;
  word-break: normal !important;
}

.tft-footer-social {
  margin-top: 1.5rem !important;
}

.tft-footer-social-heading {
  color: #fff !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  line-height: 1.25rem !important;
  margin: 0 0 0.75rem !important;
  text-align: left !important;
}

.tft-footer-social-list {
  align-items: center !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.5rem !important;
}

.tft-footer-social-link {
  align-items: center !important;
  border: 1px solid #f59e0b !important;
  border-radius: 4px !important;
  background: transparent !important;
  color: #f59e0b !important;
  cursor: pointer !important;
  display: inline-flex !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  height: 2rem !important;
  justify-content: center !important;
  line-height: 1 !important;
  padding: 0 0.625rem !important;
  text-decoration: none !important;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease !important;
  width: auto !important;
}

.tft-footer-social-link:hover {
  background: #d97706 !important;
  border-color: #d97706 !important;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3) !important;
  color: #000 !important;
  transform: translateY(-1px) !important;
}

.tft-footer-social-link svg {
  display: none !important;
}

.tft-footer-copyright {
  background-color: #000 !important;
  border-top: 1px solid #27272a !important;
  padding-bottom: 2rem !important;
  padding-top: 2rem !important;
  text-align: center !important;
  width: 100% !important;
}

.tft-footer-copyright-shell {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 1200px !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  width: 100% !important;
}

.tft-footer-copyright-text {
  color: #71717a !important;
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
  margin: 0 !important;
  text-align: center !important;
 }

@media (max-width: 1023px) {
  .tft-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .tft-footer-column:first-child,
  .tft-footer-column:last-child {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 767px) {
  .tft-site-footer {
    padding-bottom: 2rem !important;
  }

  .tft-footer-rule {
    margin-bottom: 2rem !important;
  }

  .tft-footer-shell,
  .tft-footer-copyright-shell {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .tft-footer-grid {
    gap: 1.75rem !important;
    grid-template-columns: 1fr !important;
  }

  .tft-footer-column:first-child,
  .tft-footer-column:last-child {
    grid-column: auto !important;
  }

  .tft-site-footer .footer-email-link {
    overflow-wrap: anywhere !important;
    white-space: normal !important;
    word-break: normal !important;
  }
}


/* === ODOO SYSTEM UI: AUTH PAGES === */
#wrapwrap .oe_website_login_container {
  align-items: flex-start !important;
  display: flex !important;
  justify-content: center !important;
  max-width: none !important;
  min-height: clamp(22rem, 46vh, 30rem) !important;
  padding: clamp(6.5rem, 10vw, 8rem) 1rem clamp(4rem, 8vw, 6rem) !important;
  width: 100% !important;
}

#wrapwrap .oe_website_login_container .oe_login_form,
#wrapwrap .oe_website_login_container .oe_signup_form,
#wrapwrap .oe_website_login_container .oe_reset_password_form {
  background: rgba(255, 255, 255, 0.025) !important;
  border: 1px solid rgba(245, 158, 11, 0.28) !important;
  border-radius: 0.5rem !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4) !important;
  margin: 0 auto !important;
  max-width: 24rem !important;
  padding: clamp(1.25rem, 4vw, 2rem) !important;
  width: min(100%, 24rem) !important;
}

#wrapwrap .oe_website_login_container .form-label {
  color: #fff !important;
  display: block !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  line-height: 1.25rem !important;
  margin: 0 0 0.5rem !important;
}

#wrapwrap .oe_website_login_container p,
#wrapwrap .oe_website_login_container .form-check-label,
#wrapwrap .oe_website_login_container .text-muted,
#wrapwrap .oe_website_login_container small,
#wrapwrap .oe_website_login_container .small {
  color: #d4d4d8 !important;
}

#wrapwrap .oe_website_login_container h1,
#wrapwrap .oe_website_login_container h2,
#wrapwrap .oe_website_login_container h3,
#wrapwrap .oe_website_login_container h4,
#wrapwrap .oe_website_login_container h5,
#wrapwrap .oe_website_login_container h6,
#wrapwrap .oe_website_login_container strong {
  color: #fff !important;
}

#wrapwrap .oe_website_login_container a:not(.btn),
#wrapwrap .oe_website_login_container .btn-link,
#wrapwrap .oe_website_login_container .btn.btn-link {
  color: #f59e0b !important;
  text-decoration: none !important;
}

#wrapwrap .oe_website_login_container a:not(.btn):hover,
#wrapwrap .oe_website_login_container a:not(.btn):focus,
#wrapwrap .oe_website_login_container .btn-link:hover,
#wrapwrap .oe_website_login_container .btn-link:focus,
#wrapwrap .oe_website_login_container .btn.btn-link:hover,
#wrapwrap .oe_website_login_container .btn.btn-link:focus {
  color: #fbbf24 !important;
  text-decoration: underline !important;
}

#wrapwrap .oe_website_login_container .btn-link:disabled,
#wrapwrap .oe_website_login_container .btn-link.disabled,
#wrapwrap .oe_website_login_container .btn.btn-link:disabled,
#wrapwrap .oe_website_login_container .btn.btn-link.disabled {
  color: #a1a1aa !important;
  opacity: 0.7 !important;
}

#wrapwrap .oe_website_login_container .form-control {
  background: #050505 !important;
  border: 1px solid rgba(245, 158, 11, 0.72) !important;
  border-radius: 0.375rem !important;
  box-shadow: none !important;
  color: #fff !important;
  font-size: 1rem !important;
  height: 2.75rem !important;
  line-height: 1.4 !important;
  padding: 0.625rem 0.75rem !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease !important;
}

#wrapwrap .oe_website_login_container .form-control::placeholder {
  color: rgba(255, 255, 255, 0.58) !important;
  opacity: 1 !important;
}

#wrapwrap .oe_website_login_container .form-control:focus {
  background: #080808 !important;
  border-color: #f59e0b !important;
  box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.18) !important;
  color: #fff !important;
  outline: 0 !important;
}

#wrapwrap .oe_website_login_container .oe_login_buttons {
  padding-top: 1.25rem !important;
}

#wrapwrap .oe_website_login_container .oe_login_buttons .btn-primary {
  align-items: center !important;
  background: transparent !important;
  border: 1px solid #f59e0b !important;
  border-radius: 0.375rem !important;
  box-shadow: none !important;
  color: #f59e0b !important;
  display: inline-flex !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  height: 2.75rem !important;
  justify-content: center !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  padding: 0.75rem 1.5rem !important;
  text-transform: none !important;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease !important;
  width: 100% !important;
}

#wrapwrap .oe_website_login_container .oe_login_buttons .btn-primary:hover,
#wrapwrap .oe_website_login_container .oe_login_buttons .btn-primary:focus {
  background: #d97706 !important;
  border-color: #d97706 !important;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3) !important;
  color: #000 !important;
  transform: translateY(-1px) !important;
}

#wrapwrap .oe_website_login_container .oe_login_buttons .btn-primary:active {
  transform: translateY(0) !important;
}

#wrapwrap .oe_website_login_container .oe_login_buttons a {
  color: #f59e0b !important;
  text-decoration: none !important;
}

#wrapwrap .oe_website_login_container .oe_login_buttons a:hover {
  color: #d97706 !important;
  text-decoration: underline !important;
}

@media (max-width: 575px) {
  #wrapwrap .oe_website_login_container {
    min-height: auto !important;
    padding: 7rem 1rem 3rem !important;
  }

  #wrapwrap .oe_website_login_container .oe_login_form,
  #wrapwrap .oe_website_login_container .oe_signup_form,
  #wrapwrap .oe_website_login_container .oe_reset_password_form {
    padding: 1rem !important;
  }
}

/* === ODOO SYSTEM UI: CONTACT FORM === */
#wrapwrap #contactus .tft-inner-shell {
  max-width: 1040px !important;
}

#wrapwrap #contactus .s_website_form {
  background: rgba(255, 255, 255, 0.025) !important;
  border: 1px solid rgba(245, 158, 11, 0.28) !important;
  border-radius: 0.5rem !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4) !important;
  margin: 2.25rem 0 0 !important;
  padding: clamp(1.25rem, 3vw, 2rem) !important;
}

#wrapwrap #contactus .s_website_form .container {
  max-width: none !important;
  padding: 0 !important;
  width: 100% !important;
}

#wrapwrap #contactus #contactus_form {
  margin: 0 !important;
}

#wrapwrap #contactus .s_website_form_rows {
  column-gap: 1rem !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  margin: 0 !important;
  row-gap: 1rem !important;
}

#wrapwrap #contactus .s_website_form_field,
#wrapwrap #contactus .s_website_form_submit {
  margin: 0 !important;
  max-width: none !important;
  padding: 0 !important;
  width: auto !important;
}

#wrapwrap #contactus .s_website_form_field:nth-of-type(n+5),
#wrapwrap #contactus .s_website_form_submit {
  grid-column: 1 / -1 !important;
}

#wrapwrap #contactus .s_website_form_dnone {
  display: none !important;
}

#wrapwrap #contactus .s_website_form_field > .row {
  display: block !important;
  margin: 0 !important;
}

#wrapwrap #contactus .s_website_form_field .col-sm {
  flex: none !important;
  max-width: none !important;
  padding: 0 !important;
  width: 100% !important;
}

#wrapwrap #contactus .s_website_form_label {
  color: #fff !important;
  display: block !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  line-height: 1.25rem !important;
  margin: 0 0 0.5rem !important;
  max-width: none !important;
  padding: 0 !important;
  width: auto !important;
}

#wrapwrap #contactus .s_website_form_mark {
  color: #f59e0b !important;
}

#wrapwrap #contactus .s_website_form_input {
  background: #050505 !important;
  border: 1px solid rgba(245, 158, 11, 0.72) !important;
  border-radius: 0.375rem !important;
  box-shadow: none !important;
  color: #fff !important;
  font-size: 1rem !important;
  line-height: 1.4 !important;
  min-height: 2.75rem !important;
  padding: 0.625rem 0.75rem !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease !important;
  width: 100% !important;
}

#wrapwrap #contactus .s_website_form_input::placeholder {
  color: rgba(255, 255, 255, 0.58) !important;
  opacity: 1 !important;
}

#wrapwrap #contactus textarea.s_website_form_input {
  min-height: 10rem !important;
  resize: vertical !important;
}

#wrapwrap #contactus .s_website_form_input:focus {
  background: #080808 !important;
  border-color: #f59e0b !important;
  box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.18) !important;
  color: #fff !important;
  outline: 0 !important;
}

#wrapwrap #contactus .s_website_form_submit {
  align-items: center !important;
  display: flex !important;
  gap: 1rem !important;
  justify-content: flex-start !important;
  padding-top: 0.25rem !important;
}

#wrapwrap #contactus .s_website_form_submit .s_website_form_label {
  display: none !important;
}

@media (max-width: 767.98px) {
  #wrapwrap #contactus .tft-inner-shell {
    max-width: 920px !important;
  }

  #wrapwrap #contactus .s_website_form {
    margin-top: 1.75rem !important;
    padding: 1rem !important;
  }

  #wrapwrap #contactus .s_website_form_rows {
    grid-template-columns: 1fr !important;
  }

  #wrapwrap #contactus .s_website_form_field:nth-of-type(n+5),
  #wrapwrap #contactus .s_website_form_submit {
    grid-column: auto !important;
  }

  #wrapwrap #contactus .s_website_form_send {
    width: 100% !important;
  }
}

/* === ODOO SYSTEM UI: COOKIE BAR === */
#website_cookies_bar{
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  top: unset !important;
  bottom: 0 !important;
  inset: auto 0 0 0 !important;
  z-index: 10050 !important;

  display: block !important;
  height: fit-content !important;
  min-height: 56px !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;

  background: transparent !important;
  border-top: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Odoo may set inline positioning; keep the bar pinned to the bottom. */
#website_cookies_bar[style]{
  top: auto !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
}

/* Keep the live cookie bar visible even when Odoo carries editor visibility classes. */
body:not(.o_edit_mode) #website_cookies_bar.o_snippet_invisible{
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  pointer-events: auto !important;
}

/* Preserve Odoo modal mechanics while restyling the inner modal as a bottom bar. */
#website_cookies_bar > .modal.o_cookies_discrete{
  position: fixed !important;
  inset: auto 0 0 0 !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  pointer-events: none !important;
}
#website_cookies_bar > .modal.o_cookies_discrete .modal-dialog{
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  pointer-events: auto !important;
}
#website_cookies_bar > .modal.o_cookies_discrete .modal-content{
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #0f0f0f !important;
  background-clip: border-box !important;
  box-shadow: none !important;
  display: block !important;
  overflow: hidden !important;
  padding: 14px 18px !important;
}

#website_cookies_bar > .modal.o_cookies_discrete .modal-content > section,
#website_cookies_bar > .modal.o_cookies_discrete .modal-content .o_cc,
#website_cookies_bar > .modal.o_cookies_discrete .modal-content .o_colored_level{
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  color: rgba(255,255,255,.88) !important;
  margin: 0 !important;
  outline: 0 !important;
  padding: 0 !important;
}

#website_cookies_bar > .modal.o_cookies_discrete .container{
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  max-width: 1200px !important;
  outline: 0 !important;
  padding: 0 !important;
}

#website_cookies_bar > .modal.o_cookies_discrete .row{
  align-items: center !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.75rem 1rem !important;
  margin: 0 !important;
  outline: 0 !important;
}

#website_cookies_bar > .modal.o_cookies_discrete [class*="col-"]{
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  padding: 0 !important;
}

#website_cookies_bar > .modal.o_cookies_discrete .pt16,
#website_cookies_bar > .modal.o_cookies_discrete .pb16{
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#website_cookies_bar::before,
#website_cookies_bar::after,
#website_cookies_bar > .modal.o_cookies_discrete::before,
#website_cookies_bar > .modal.o_cookies_discrete::after,
#website_cookies_bar > .modal.o_cookies_discrete .modal-dialog::before,
#website_cookies_bar > .modal.o_cookies_discrete .modal-dialog::after,
#website_cookies_bar > .modal.o_cookies_discrete .modal-content::before,
#website_cookies_bar > .modal.o_cookies_discrete .modal-content::after,
#website_cookies_bar > .modal.o_cookies_discrete .modal-content > section::before,
#website_cookies_bar > .modal.o_cookies_discrete .modal-content > section::after{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  content: none !important;
  outline: 0 !important;
}

#website_cookies_bar > .modal.o_cookies_discrete .col-lg-8{
  flex: 1 1 28rem !important;
  max-width: none !important;
}

#website_cookies_bar > .modal.o_cookies_discrete .col-lg-4{
  align-items: center !important;
  display: flex !important;
  flex: 0 1 auto !important;
  gap: 0.75rem !important;
  justify-content: flex-end !important;
  max-width: none !important;
  text-align: right !important;
}

/* Respect the dismissed/closed state. */
#website_cookies_bar.d-none{
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Cookie bar text and links. */
#website_cookies_bar,
#website_cookies_bar *{
  font-family: Arial, Helvetica, sans-serif !important;
}
#website_cookies_bar p{
  margin: 0 !important;
  color: rgba(255,255,255,.88) !important;
}
#website_cookies_bar a{
  color: #f59e0b !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
}
#website_cookies_bar a:hover{ text-decoration: underline !important; }

#website_cookies_bar .o_cookies_bar_text_policy,
#website_cookies_bar .o_cookies_bar_text_policy:link,
#website_cookies_bar .o_cookies_bar_text_policy:visited,
#website_cookies_bar .o_cookies_bar_text_policy:hover,
#website_cookies_bar .o_cookies_bar_text_policy:focus,
#website_cookies_bar .o_cookies_bar_text_policy:focus-visible,
#website_cookies_bar .o_cookies_bar_text_policy:active{
  --bs-btn-active-bg: transparent !important;
  --bs-btn-active-border-color: transparent !important;
  --bs-btn-active-color: #f59e0b !important;
  --bs-btn-bg: transparent !important;
  --bs-btn-border-color: transparent !important;
  --bs-btn-border-radius: 0 !important;
  --bs-btn-box-shadow: none !important;
  --bs-btn-color: #f59e0b !important;
  --bs-btn-focus-box-shadow: none !important;
  --bs-btn-hover-bg: transparent !important;
  --bs-btn-hover-border-color: transparent !important;
  --bs-btn-hover-color: #f59e0b !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #f59e0b !important;
  display: inline !important;
  line-height: inherit !important;
  min-height: 0 !important;
  outline: 0 !important;
  padding: 0 !important;
  text-decoration: none !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 2px !important;
  vertical-align: baseline !important;
  white-space: normal !important;
}

#website_cookies_bar .o_cookies_bar_text_policy:hover{
  text-decoration: underline !important;
}

/* Cookie consent action buttons. */
#website_cookies_bar a[role="button"]:not(.o_cookies_bar_text_policy),
#website_cookies_bar .btn:not(.o_cookies_bar_text_policy){
  border-radius: 999px !important;
  padding: 8px 14px !important;
  font-weight: 700 !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  background: rgba(255,255,255,.06) !important;
  color: rgba(255,255,255,.92) !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}
#website_cookies_bar #cookies-consent-essential{
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(255,255,255,.16) !important;
  color: rgba(255,255,255,.92) !important;
}
#website_cookies_bar #cookies-consent-all{
  background: #f59e0b !important;
  border-color: #f59e0b !important;
  color: #000 !important;
}
#website_cookies_bar #cookies-consent-all:hover{
  background: #d97706 !important;
  border-color: #d97706 !important;
}

/* Odoo gives the policy text link Bootstrap button classes; keep it a text link in every interaction state. */
#website_cookies_bar a.o_cookies_bar_text_policy.btn.btn-link.btn-sm.px-0,
#website_cookies_bar a.o_cookies_bar_text_policy.btn.btn-link.btn-sm.px-0:link,
#website_cookies_bar a.o_cookies_bar_text_policy.btn.btn-link.btn-sm.px-0:visited,
#website_cookies_bar a.o_cookies_bar_text_policy.btn.btn-link.btn-sm.px-0:hover,
#website_cookies_bar a.o_cookies_bar_text_policy.btn.btn-link.btn-sm.px-0:focus,
#website_cookies_bar a.o_cookies_bar_text_policy.btn.btn-link.btn-sm.px-0:focus-visible,
#website_cookies_bar a.o_cookies_bar_text_policy.btn.btn-link.btn-sm.px-0:active,
#website_cookies_bar a.o_cookies_bar_text_policy.btn.btn-link.btn-sm.px-0.active,
#website_cookies_bar a.o_cookies_bar_text_policy.btn.btn-link.btn-sm.px-0.focus{
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-color: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #f59e0b !important;
  display: inline !important;
  font-size: inherit !important;
  line-height: inherit !important;
  margin: 0 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  outline: 0 !important;
  padding: 0 !important;
  text-decoration: none !important;
  vertical-align: baseline !important;
  white-space: normal !important;
  width: auto !important;
}

#website_cookies_bar a.o_cookies_bar_text_policy.btn.btn-link.btn-sm.px-0:hover{
  text-decoration: underline !important;
}

#website_cookies_bar a.o_cookies_bar_text_policy.btn.btn-link.btn-sm.px-0::before,
#website_cookies_bar a.o_cookies_bar_text_policy.btn.btn-link.btn-sm.px-0::after{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  content: none !important;
  outline: 0 !important;
}

@media (max-width: 767.98px){
  #website_cookies_bar{
    padding: 0 !important;
  }

  #website_cookies_bar > .modal.o_cookies_discrete .modal-content{
    padding: 12px 14px !important;
  }

  #website_cookies_bar > .modal.o_cookies_discrete .row,
  #website_cookies_bar > .modal.o_cookies_discrete .col-lg-4{
    align-items: stretch !important;
    display: flex !important;
    flex-direction: column !important;
  }

  #website_cookies_bar > .modal.o_cookies_discrete .col-lg-8,
  #website_cookies_bar > .modal.o_cookies_discrete .col-lg-4{
    flex: 1 1 100% !important;
    width: 100% !important;
  }

  #website_cookies_bar a[role="button"]:not(.o_cookies_bar_text_policy),
  #website_cookies_bar .btn:not(.o_cookies_bar_text_policy){
    text-align: center !important;
    width: 100% !important;
  }
}

/* === RESOURCES / ODOO BLOG INDEX === */
#wrap.js_blog.website_blog{
  background: #000 !important;
  color: #fff !important;
  overflow-x: hidden !important;
}

#wrap.js_blog.website_blog #o_wblog_blog_top{
  background: #000 !important;
  margin: 0 !important;
}

#wrap.js_blog.website_blog #o_wblog_blog_top .o_record_cover_container{
  background: linear-gradient(135deg, #050505 0%, #101010 52%, #17110a 100%) !important;
  border-bottom: 1px solid rgba(245,158,11,.22) !important;
  min-height: clamp(360px, 52vw, 560px) !important;
  padding: 7rem 0 5rem !important;
}

#wrap.js_blog.website_blog #o_wblog_blog_top .o_record_cover_image{
  opacity: .18 !important;
  filter: saturate(.7) contrast(1.1) !important;
}

#wrap.js_blog.website_blog #o_wblog_blog_top .o_record_cover_filter{
  background: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.72) 52%, rgba(0,0,0,.42)) !important;
  opacity: 1 !important;
}

#wrap.js_blog.website_blog #o_wblog_blog_top .container{
  max-width: 1180px !important;
  justify-content: center !important;
}

#wrap.js_blog.website_blog .o_wblog_post_title{
  max-width: 860px !important;
}

#wrap.js_blog.website_blog .o_wblog_post_title .h4{
  background: rgba(245,158,11,.14) !important;
  border: 1px solid rgba(245,158,11,.4) !important;
  border-radius: 999px !important;
  color: #f59e0b !important;
  display: inline-flex !important;
  font-size: .82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  margin-bottom: 1.2rem !important;
  padding: .55rem .85rem !important;
  text-transform: uppercase !important;
}

#wrap.js_blog.website_blog #o_wblog_post_name{
  color: #fff !important;
  font-size: clamp(2.1rem, 4.6vw, 4.9rem) !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  line-height: .98 !important;
  max-width: 900px !important;
  text-wrap: balance !important;
}

#wrap.js_blog.website_blog .navbar.navbar-expand-sm{
  background: #070707 !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  border-top: 1px solid rgba(245,158,11,.16) !important;
  margin-top: 0 !important;
  padding: .85rem 0 !important;
}

#wrap.js_blog.website_blog .navbar .container{
  max-width: 1180px !important;
  overflow-x: auto !important;
}

#wrap.js_blog.website_blog .navbar-nav{
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: .45rem !important;
  min-width: max-content !important;
}

#wrap.js_blog.website_blog .navbar .nav-link{
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 999px !important;
  color: rgba(255,255,255,.74) !important;
  font-size: .9rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  padding: .62rem .9rem !important;
  white-space: nowrap !important;
}

#wrap.js_blog.website_blog .navbar .nav-link.disabled{
  border-color: transparent !important;
  color: rgba(255,255,255,.48) !important;
  padding-left: 0 !important;
}

#wrap.js_blog.website_blog .navbar .nav-link.active,
#wrap.js_blog.website_blog .navbar .nav-link:hover{
  background: #f59e0b !important;
  border-color: #f59e0b !important;
  color: #000 !important;
}

#wrap.js_blog.website_blog #o_wblog_index_content{
  background: #000 !important;
}

#wrap.js_blog.website_blog #o_wblog_index_content > .container{
  max-width: 1180px !important;
  padding-bottom: 5rem !important;
  padding-top: 3.5rem !important;
}

#wrap.js_blog.website_blog #o_wblog_posts_loop .pb-4{
  padding-bottom: 1.35rem !important;
}

#wrap.js_blog.website_blog article.o_wblog_post{
  background: #0b0b0b !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  border-radius: 8px !important;
  box-shadow: 0 22px 55px rgba(0,0,0,.34) !important;
  color: #fff !important;
  height: 100% !important;
  min-height: 420px !important;
  overflow: hidden !important;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease !important;
}

#wrap.js_blog.website_blog article.o_wblog_post:hover{
  border-color: rgba(245,158,11,.46) !important;
  box-shadow: 0 28px 70px rgba(0,0,0,.42) !important;
  transform: translateY(-2px) !important;
}

#wrap.js_blog.website_blog article.o_wblog_post .o_record_cover_container{
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  min-height: 185px !important;
}

#wrap.js_blog.website_blog article.o_wblog_post .o_record_cover_image{
  filter: saturate(.82) contrast(1.06) !important;
  opacity: .62 !important;
}

#wrap.js_blog.website_blog article.o_wblog_post .o_record_cover_filter{
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.82)) !important;
  opacity: 1 !important;
}

#wrap.js_blog.website_blog article.o_wblog_post .o_wblog_post_list_author{
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.82)) !important;
  color: rgba(255,255,255,.8) !important;
  font-size: .78rem !important;
}

#wrap.js_blog.website_blog article.o_wblog_post .o_wblog_author_avatar{
  border: 1px solid rgba(245,158,11,.48) !important;
  height: 28px !important;
  width: 28px !important;
}

#wrap.js_blog.website_blog article.o_wblog_post h3,
#wrap.js_blog.website_blog article.o_wblog_post h4,
#wrap.js_blog.website_blog article.o_wblog_post h5,
#wrap.js_blog.website_blog article.o_wblog_post a h3,
#wrap.js_blog.website_blog article.o_wblog_post a h4,
#wrap.js_blog.website_blog article.o_wblog_post a h5{
  color: #fff !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  line-height: 1.1 !important;
  text-wrap: balance !important;
}

#wrap.js_blog.website_blog article.o_wblog_post > a,
#wrap.js_blog.website_blog article.o_wblog_post .text-reset{
  color: rgba(255,255,255,.76) !important;
}

#wrap.js_blog.website_blog article.o_wblog_post .mt-2.o_wblog_normalize_font{
  color: rgba(255,255,255,.72) !important;
  font-size: .96rem !important;
  line-height: 1.6 !important;
  padding: 0 1.1rem !important;
}

#wrap.js_blog.website_blog article.o_wblog_post .o_wblog_normalize_font.pe-2.pb-2{
  color: rgba(255,255,255,.58) !important;
  font-size: .84rem !important;
  padding: 1rem 1.1rem 1.1rem !important;
}

#wrap.js_blog.website_blog article.o_wblog_post a[href*="/blog/"]{
  text-decoration: none !important;
}

#wrap.js_blog.website_blog article.o_wblog_post a[href*="/blog/"]:hover{
  color: #f59e0b !important;
}

#wrap.js_blog.website_blog article.o_wblog_post a.badge,
#wrap.js_blog.website_blog article.o_wblog_post .badge{
  background: rgba(245,158,11,.13) !important;
  border: 1px solid rgba(245,158,11,.36) !important;
  border-radius: 999px !important;
  color: #f59e0b !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

@media (max-width: 767.98px){
  #wrap.js_blog.website_blog #o_wblog_blog_top .o_record_cover_container{
    min-height: 420px !important;
    padding: 5.5rem 0 3.5rem !important;
  }

  #wrap.js_blog.website_blog #o_wblog_post_name{
    font-size: clamp(2rem, 12vw, 3.15rem) !important;
    line-height: 1.02 !important;
  }

  #wrap.js_blog.website_blog .navbar .container{
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  #wrap.js_blog.website_blog #o_wblog_index_content > .container{
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    padding-top: 2rem !important;
  }

  #wrap.js_blog.website_blog article.o_wblog_post{
    min-height: 0 !important;
  }
}
