@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bat-orange: #e8530e;
  --bat-blue: #2150dd;
  --bat-dark: #0d0d0d;
  --bat-light: #ffffff;
  --bat-shadow: 0 24px 80px rgba(18, 25, 46, 0.12);
  --bat-header-h: 80px;
  --bat-ease: 260ms ease;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
}

html.bat-menu-open,
body.bat-menu-open {
  overflow: hidden !important;
  height: 100%;
}

.bat-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--bat-header-h);
  padding: 0 32px;
  background: rgba(255, 255, 255, 0);
  transition: background var(--bat-ease), box-shadow var(--bat-ease), backdrop-filter var(--bat-ease), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.bat-header.bat-header--hidden {
  transform: translateY(-100%);
}

.bat-header.is-scrolled {
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.bat-header__logo {
  transition: opacity var(--bat-ease), visibility var(--bat-ease);
}

body.bat-menu-open .bat-header {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  border-bottom: none !important;
}

body.bat-menu-open .bat-header__logo,
body.bat-menu-open .bat-desktop-nav {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.bat-menu-open .bat-hamburger {
  display: inline-flex !important;
  position: relative;
  z-index: 10001;
}

body.bat-menu-open .bat-hamburger__line {
  background: #ffffff !important;
}

.bat-header__logo a {
  color: #111317;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.75rem, 2vw, 2rem);
  text-decoration: none;
  text-transform: lowercase;
}

.bat-header__dot {
  color: var(--bat-orange);
}

.bat-desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.bat-desktop-nav__link,
.bat-desktop-nav__btn {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 900;
  color: #000000;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
  letter-spacing: -0.02em;
}

.bat-desktop-nav__link:hover,
.bat-desktop-nav__btn:hover {
  opacity: 0.7;
}

@media (max-width: 959px) {
  .bat-desktop-nav {
    display: none !important;
  }
}

@media (min-width: 960px) {
  .bat-hamburger {
    display: none !important;
  }
}

.bat-hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.bat-hamburger__line {
  width: 28px;
  height: 2px;
  margin-left: auto;
  background: #111317;
  transition: transform var(--bat-ease), opacity var(--bat-ease);
}

.bat-hamburger[aria-expanded="true"] .bat-hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.bat-hamburger[aria-expanded="true"] .bat-hamburger__line:nth-child(2) {
  opacity: 0;
}

.bat-hamburger[aria-expanded="true"] .bat-hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.bat-menu {
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--bat-ease), visibility var(--bat-ease);
  overflow-y: auto;
}

.bat-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.bat-menu__bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.bat-menu__panel {
  background: rgba(10, 36, 99, 0.96);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.bat-menu__content {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100vw - 4rem));
  min-height: 100%;
  height: auto;
  margin: 0 auto;
  padding: calc(var(--bat-header-h) + clamp(1rem, 3vh, 2.5rem)) 0 clamp(1rem, 3vh, 3rem);
}

.bat-menu__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) 300px;
  gap: 2rem;
  align-items: center;
  height: 100%;
}

.bat-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 1.8vh, 1.1rem);
}

.bat-menu__list a {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  color: #fff;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: clamp(1.6rem, 5.8vh, 4.2rem);
  font-weight: 800;
  text-decoration: none;
  padding-bottom: clamp(0.2rem, 1vh, 0.6rem);
  transition: color 0.3s ease;
}

.bat-menu__list a span {
  color: #ff6f32;
  font-size: clamp(0.85rem, 1.8vh, 1.25rem);
  font-family: "Outfit", "Manrope", sans-serif;
  font-weight: 700;
  margin-right: 1.5rem;
}

.bat-menu__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: #ff6f32;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.bat-menu__list a:hover::after,
.bat-menu__list a:focus-visible::after {
  transform: scaleX(1);
}

.bat-menu__parent-link .arrow-down {
  font-size: 0.45em;
  margin-left: 0.5rem;
  vertical-align: middle;
  opacity: 0.8;
}

/* Submenu Panel Column */
.bat-menu__submenu-panel {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 1.8vh, 1rem);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(0.8rem, 2.5vh, 1.5rem) 0 clamp(0.8rem, 2.5vh, 1.5rem) 2.5rem;
  height: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-15px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.bat-menu__submenu-panel.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.bat-submenu-heading {
  color: #ff6f32;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.bat-menu__submenu-panel a {
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: clamp(1rem, 2.4vh, 1.3rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.bat-menu__submenu-panel a:hover {
  color: #ff6f32;
  padding-left: 0.5rem;
}

.bat-menu__aside {
  grid-column: 3;
  grid-row: 1;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Manrope", sans-serif;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 4vh, 2.2rem);
}

.bat-menu__logo-block img {
  filter: brightness(0) invert(1);
}

.bat-menu__block {
  margin: 0;
}

.bat-menu__block h4 {
  margin: 0 0 0.8rem 0;
  color: #ff6f32;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bat-menu__block p {
  margin: 0 0 0.5rem 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  line-height: 1.5;
}

.bat-menu__block a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.2s ease;
}

.bat-menu__block a:hover {
  color: #ff6f32;
}

/* Social icons thin-circle styling */
.bat-menu__socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.bat-menu__socials a {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.bat-menu__socials a:hover {
  background: #ff6f32;
  border-color: #ff6f32;
  color: #fff;
  transform: translateY(-2px);
}

.bat-page-shell {
  padding-top: var(--bat-header-h);
}

.bat-footer {
  background: #0f1117;
  color: #fff;
}

.bat-footer__inner {
  width: min(1440px, calc(100vw - 4rem));
  margin: 0 auto;
  padding: 3rem 0 3.5rem;
}

.bat-footer__line {
  height: 1px;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.1);
}

.bat-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 3rem;
}

.bat-footer h3 {
  margin: 0 0 1rem;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 1.1rem;
}

.bat-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.4rem;
}

.bat-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.bat-footer__contact p {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.bat-footer__contact strong {
  color: #fff;
}

@media (max-width: 960px) {
  body.bat-menu-open {
    position: fixed !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .bat-menu {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .bat-menu__content {
    width: min(100vw - 2rem, 1440px);
    height: auto !important;
    min-height: 100%;
    overflow-y: visible !important;
  }

  .bat-footer__inner {
    width: min(100vw - 2rem, 1440px);
  }

  .bat-menu__inner,
  .bat-footer__grid {
    grid-template-columns: 1fr;
  }

  .bat-menu__parent-link .arrow-down {
    display: inline-block;
    transition: transform 0.25s ease;
  }

  .is-active-mobile .arrow-down {
    transform: rotate(180deg) !important;
  }

  .bat-menu__submenu-panel {
    grid-column: auto !important;
    grid-row: auto !important;
    border-left: none !important;
    padding: 0 0 0 1.5rem !important;
    display: none !important; /* Hide by default on mobile */
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    gap: 0.8rem !important;
    margin-top: 0.8rem !important;
  }

  .bat-menu__submenu-panel.is-open-mobile {
    display: flex !important;
    flex-direction: column !important;
  }

  .bat-submenu-heading {
    display: none !important;
  }

  .bat-menu__aside {
    grid-column: auto !important;
    grid-row: auto !important;
    border-left: none !important;
    padding-left: 0 !important;
    gap: 1.5rem !important;
    margin-top: 1.5rem !important;
  }
}

@media (max-width: 720px) {
  .bat-header {
    padding: 0 18px;
  }

  .bat-menu__content {
    padding-top: calc(var(--bat-header-h) + 1rem);
  }

  .bat-menu__list a {
    font-size: clamp(1.5rem, 4.5vw, 2.2rem) !important;
  }

  .bat-menu__submenu-panel a {
    font-size: 1.05rem !important;
  }
}

:root {
  --font-hero: "Archivo Black", Impact, sans-serif;
  --font-body: "Manrope", sans-serif;
}

.final-cta-section .container.container-full,
.site-footer .container.container-full {
  width: min(1600px, calc(100vw - 4rem));
  max-width: none;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
.final-cta-section {
  background: #000;
  color: #fff;
  padding: 100px 0 72px;
  position: relative;
  z-index: 5;
  font-family: var(--font-hero);
}

.final-cta-section .text-white {
  color: #fff;
}

.final-cta-section .text-orange {
  color: #ff6e36;
}

.cta-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  gap: 40px;
}

.cta-text-block {
  flex: 1;
}

.cta-heading {
  margin: 0;
  font-family: var(--font-hero);
  font-size: clamp(34px, 5.1vw, 64px);
  font-weight: 400;
  line-height: 1.16;
  word-break: keep-all;
}

.cta-inline-logo {
  display: inline-flex;
  vertical-align: baseline;
  position: relative;
  top: -0.08em;
}

.inline-be {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15em;
  height: 1.15em;
  padding: 0 0.2em;
  border-radius: 999px;
  background: #1769ff;
  color: #fff;
  font-family: var(--font-hero);
  font-size: 0.58em;
  line-height: 1;
}

.cta-button-block {
  flex-shrink: 0;
}

.btn-cta-growth {
  display: inline-block;
  background: #FF6E36;
  color: #fff;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  padding: 18px 45px;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: -6px 6px 0px 0px #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta-growth:hover,
.btn-cta-growth:focus-visible {
  transform: translate(-2px, 2px);
  box-shadow: -4px 4px 0px 0px #fff;
}

.btn-cta-growth:active {
  transform: translate(-6px, 6px);
  box-shadow: 0px 0px 0px 0px #fff;
}

.site-footer {
  background: #000;
  color: #fff;
  padding: 0 0 60px;
  position: relative;
  z-index: 5;
}

.footer-top-border {
  width: 100%;
  height: 1px;
  background-color: #333;
  margin-bottom: 60px;
}

.footer-layout {
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  gap: 40px;
}

.footer-col-left {
  flex: 1;
}

.footer-heading {
  margin: 0 0 30px;
  color: #fff;
  font-family: var(--font-hero);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.footer-nav a {
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: opacity var(--bat-ease);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  opacity: 0.7;
}

.footer-pipe {
  color: #0f46c4;
  font-size: 16px;
  font-weight: 600;
  margin: 0 4px;
}

.footer-col-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 350px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.footer-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-contact-text {
  font-family: var(--font-body);
  line-height: 1.6;
}

.footer-bold {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.footer-light {
  font-size: 15px;
  font-weight: 400;
  color: #d1d1d1;
}

@media (max-width: 1024px) {
  .final-cta-section .container.container-full,
  .site-footer .container.container-full {
    width: min(1600px, calc(100vw - 2.5rem));
  }
  .cta-flex {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .footer-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .footer-col-right {
    min-width: 100%;
  }
}

.footer-socials {
  display: flex;
  gap: 1.25rem;
  margin-top: 2rem;
}

.footer-socials a {
  width: 2.6rem;
  height: 2.6rem;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
  background: #ff6f32;
  border-color: #ff6f32;
  color: #fff;
  transform: translateY(-2px);
}

.footer-socials a svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.bat-menu__socials a svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
  transition: fill 0.3s ease;
}

/* Contact Modal */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact-modal__container {
  position: relative;
  z-index: 2;
  width: min(520px, 90%);
  background: #0f1014;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-modal.is-active .contact-modal__container {
  transform: translateY(0);
}

.contact-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.contact-modal__close:hover {
  color: #ff6f32;
}

.contact-modal__header {
  margin-bottom: 2rem;
}

.contact-modal__header h3 {
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.5rem 0;
}

.contact-modal__header p {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.contact-modal__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.floating-label-group {
  position: relative;
  margin-bottom: 0.25rem;
}

.floating-label-group input,
.floating-label-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 0.5rem;
  padding: 1.1rem 1rem 0.9rem !important;
  color: #fff !important;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.floating-label-group label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  background: #0f1014;
  padding: 0 0.4rem;
}

.floating-label-group textarea ~ label {
  top: 1.2rem;
  transform: none;
}

.floating-label-group:hover input,
.floating-label-group:hover textarea {
  border-color: #ff6f32 !important;
}

.floating-label-group input:focus,
.floating-label-group textarea:focus {
  border-color: #ff6f32 !important;
  box-shadow: 0 0 0 2px rgba(255, 111, 50, 0.2) !important;
  outline: none;
}

.floating-label-group:hover label,
.floating-label-group input:focus ~ label,
.floating-label-group input:not(:placeholder-shown) ~ label,
.floating-label-group textarea:focus ~ label,
.floating-label-group textarea:not(:placeholder-shown) ~ label {
  top: 0;
  transform: translateY(-50%) scale(0.85);
  color: #ff6f32;
  font-weight: 700;
}

.modal-submit-btn {
  margin-top: 0.5rem;
  width: 100%;
}


