/* Font Face Declarations */
@font-face {
  font-family: 'Outfit';
  src: url('/assets/fonts/Outfit-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('/assets/fonts/Outfit-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('/assets/fonts/Outfit-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('/assets/fonts/Outfit-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('/assets/fonts/Outfit-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('/assets/fonts/Outfit-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('/assets/fonts/Outfit-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('/assets/fonts/Outfit-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('/assets/fonts/Outfit-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

/* Hero Section Styles */
:root {
  --Slate-950: #020617;
  --Secondary: #02783F;
}

html, body {
  background-color: var(--Slate-950, #020617);
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
}

/* Custom Navbar Styles */
.custom-navbar {
  background-color: rgba(40, 40, 40, 0.5) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 4rem);
  max-width: 1440px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}


.custom-navbar.navbar-hidden {
  transform: translateX(-50%) translateY(-150%);
  opacity: 0;
}

@media (max-width: 1439px) {
  .custom-navbar.navbar-hidden {
    transform: translateY(-150%);
  }
}

@media (max-width: 1439px) {
  .custom-navbar {
    left: 1rem;
    right: 1rem;
    width: auto;
    max-width: none;
    transform: translateX(0);
  }
}

.navbar-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-navbar .navbar-collapse {
  display: flex;
  align-items: center;
  flex-grow: 1;
  gap: 0.25rem;
}

.custom-navbar .navbar-brand {
  color: white !important;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0.5rem 0.25rem;
  margin-right: 1rem;
}

.custom-navbar .navbar-logo {
  height: 20px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
}

.custom-navbar .nav-link {
  color: white !important;
  font-weight: 500;
  padding: 0.5rem 0.375rem !important;
  transition: opacity 0.3s ease;
}

.custom-navbar .nav-link:hover {
  opacity: 0.8;
}

.custom-navbar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.5rem;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  opacity: 0.7;
}

.custom-navbar .dropdown-menu {
  background: #f5f5f5;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 0;
  margin-top: 0;
  width: 100%;
  display: none;
  pointer-events: auto;
  left: 0 !important;
  right: 0 !important;
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.custom-dropdown {
  padding: 2rem !important;
}

.dropdown-item-custom {
  padding: 0;
  border: none;
}

.dropdown-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 0;
}

.dropdown-two-column {
  display: grid;
  grid-template-columns: 260px auto 1fr;
  gap: 0;
  padding: 0;
  width: 100%;
}

.dropdown-left-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 2rem 0 0;
  border-right: 1px solid #e5e5e5;
  height: fit-content;
  align-self: start;
}

.dropdown-left-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: 'Outfit', sans-serif;
}

.dropdown-left-item:hover,
.dropdown-left-item.active {
  background-color: #E8F5E9;
}

.dropdown-left-item:hover h4,
.dropdown-left-item.active h4,
.dropdown-left-item:hover p,
.dropdown-left-item.active p {
  color: var(--Secondary, #02783F);
}

.dropdown-left-item .dropdown-icon {
  width: 24px;
  height: 24px;
  margin-top: 0;
  margin-left: 0;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.dropdown-left-item .dropdown-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dropdown-left-item h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  margin: 0 0 0.25rem 0;
  transition: color 0.2s ease;
  line-height: 1.2;
}

.dropdown-left-item p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #666;
  margin: 0;
  transition: color 0.2s ease;
  line-height: 1.4;
}

.dropdown-left-item-content {
  flex: 1;
}

.dropdown-middle-column {
  position: relative;
  padding: 0 2rem;
  border-right: 1px solid #e5e5e5;
  height: fit-content;
  align-self: start;
  min-width: 300px;
  width: auto;
}

.dropdown-middle-content {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
}

.dropdown-middle-content.active {
  display: flex;
}

.dropdown-section-list {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-top: 0;
}

.dropdown-section-item {
  padding: 0.875rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dropdown-section-item h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  margin: 0;
  transition: color 0.2s ease;
}

.dropdown-section-item:hover {
  background-color: #E8F5E9;
}

.dropdown-section-item:hover h4 {
  color: var(--Secondary, #02783F);
}

.dropdown-section-item.active {
  background-color: #E8F5E9;
}

.dropdown-section-item.active h4 {
  color: var(--Secondary, #02783F);
}

.dropdown-section-item.section-item-spaced {
  margin-top: 0.75rem;
}

.dropdown-right-column {
  position: relative;
  padding: 0 0 0 2rem;
  height: fit-content;
  align-self: start;
  min-width: 420px;
  width: auto;
  flex: 1;
}

.dropdown-submenu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.dropdown-submenu.active {
  display: flex;
  opacity: 1;
}

.dropdown-right-content {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
}

.dropdown-right-content.active {
  display: flex;
}

.dropdown-middle-content h4,
.dropdown-right-content h4,
.dropdown-submenu h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 0.25rem 0;
}

.dropdown-middle-content > p,
.dropdown-right-content > p,
.dropdown-submenu > p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #666;
  margin: 0 0 0.5rem 0;
  line-height: 1.5;
}

.dropdown-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dropdown-icon {
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 0.5rem;
}

.dropdown-left-item.active .dropdown-icon img {
  filter: brightness(0) saturate(100%) invert(47%) sepia(99%) saturate(2475%) hue-rotate(130deg) brightness(0.47) contrast(1.2);
}

.dropdown-section h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.dropdown-badge.new {
  background: var(--Secondary, #02783F);
  color: white;
}

.dropdown-badge.included {
  background: var(--Secondary, #02783F);
  color: white;
}

.dropdown-badge.optional {
  background: #ff9500;
  color: white;
}

.dropdown-section p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.dropdown-links {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  color: var(--Secondary, #02783F);
  margin: 0.5rem 0;
}

.dropdown-links a {
  color: var(--Secondary, #02783F);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.dropdown-links a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.link-divider {
  margin: 0 0.5rem;
  color: #ccc;
}

.dropdown-vertical-links {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dropdown-submenu .dropdown-vertical-links {
  margin-top: 0;
  padding-top: 0;
}

.dropdown-vertical-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.375rem 0.5rem;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}

.dropdown-vertical-link:hover {
  background-color: #E8F5E9;
  color: var(--Secondary, #02783F);
}

.dropdown-vertical-link:hover div div {
  color: var(--Secondary, #02783F) !important;
}

.vertical-link-icon {
  font-size: 1rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vertical-link-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dropdown-vertical-link:hover .vertical-link-icon img {
  filter: brightness(0) saturate(100%) invert(47%) sepia(99%) saturate(2475%) hue-rotate(130deg) brightness(0.47) contrast(1.2);
}

.dropdown-section-item.active ~ .dropdown-submenu .vertical-link-icon img,
.dropdown-left-item.active ~ .dropdown-middle-content .dropdown-section-item.active ~ * .vertical-link-icon img {
  filter: brightness(0) saturate(100%) invert(47%) sepia(99%) saturate(2475%) hue-rotate(130deg) brightness(0.47) contrast(1.2);
}

.dropdown-learn-more-btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #02783F;
  text-decoration: none;
  transition: color 0.2s ease;
}

.dropdown-learn-more-btn:hover {
  color: #025a30;
}

.dropdown-learn-more-btn svg {
  transition: transform 0.2s ease;
}

.dropdown-learn-more-btn:hover svg {
  transform: translateX(4px);
}

.custom-navbar .dropdown-menu.show {
  display: block !important;
}

.custom-navbar .dropdown-toggle[aria-expanded="true"] {
  pointer-events: auto;
}

@media (min-width: 992px) {
  .custom-navbar .dropdown {
    position: static;
  }
  
  .custom-navbar .nav-item.dropdown {
    position: static;
  }
  
  .custom-navbar .navbar-container {
    position: relative;
  }
  
  .custom-navbar .dropdown-menu {
    position: absolute;
    top: 100%;
    left: -2rem;
    right: -2rem;
    transform: none;
    z-index: 1001;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    width: auto;
  }
  
  .custom-navbar .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: 0;
    right: 0;
    height: 1.5rem;
    background: transparent;
    pointer-events: auto;
  }
  
  .custom-navbar .nav-item.dropdown:first-child .dropdown-menu,
  .custom-navbar .nav-item.dropdown .dropdown-menu {
    left: -2rem;
    right: -2rem;
    transform: none;
  }
  
  /* Dropdown visibility handled by JavaScript with delay */
  
  .custom-navbar .nav-item.dropdown:hover .dropdown-menu {
    display: block !important;
    animation: fadeIn 0.2s ease;
  }
  
  .custom-navbar .dropdown-menu:hover {
    display: block !important;
  }
  
  .custom-navbar .dropdown-toggle {
    pointer-events: auto;
  }
  
  .custom-navbar .dropdown-toggle:focus {
    outline: none;
  }
  
  .custom-navbar .nav-item.dropdown .dropdown-menu {
    pointer-events: auto;
  }
  
  .custom-navbar .nav-item.dropdown:hover .dropdown-menu,
  .custom-navbar .dropdown-menu:hover {
    pointer-events: auto;
    display: block !important;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(0) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

.custom-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
  border: none;
  padding: 0.25rem;
}

@media (min-width: 992px) {
  .custom-navbar .navbar-toggler {
    display: none !important;
  }
}

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

.custom-navbar .navbar-toggler-desktop {
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
  border: none;
  padding: 0.25rem;
  display: none;
}

/* Hide divider and hamburger on desktop */
@media (min-width: 992px) {
  .custom-navbar .navbar-divider,
  .custom-navbar .navbar-toggler-desktop {
    display: none !important;
  }
}

.custom-navbar .navbar-toggler-desktop:focus {
  box-shadow: none;
}

.custom-navbar .hamburger-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  display: block;
  opacity: 1;
}

/* Desktop Hamburger Menu */
.desktop-hamburger-menu {
  position: fixed;
  top: 0;
  left: 0.25rem;
  right: 0.25rem;
  width: auto;
  background-color: rgba(2, 6, 23, 0.99);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  color: #ffffff;
  display: block;
  visibility: hidden;
  z-index: 999;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-30px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
}

.desktop-hamburger-menu.active {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.hamburger-menu-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hamburger-menu-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hamburger-menu-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hamburger-menu-column-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hamburger-menu-subcolumns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.hamburger-menu-subcolumn {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hamburger-menu-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.hamburger-menu-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.hamburger-menu-icon {
  font-size: 1rem;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-menu-item h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.hamburger-menu-item p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #cccccc;
  margin: 0;
  line-height: 1.5;
}

.hamburger-menu-image {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.hamburger-menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hamburger-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.hamburger-menu-list p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #cccccc;
  margin: 0;
}

.hamburger-menu-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hamburger-menu-link:hover {
  color: var(--Secondary, #02783F);
}

@media (max-width: 991px) {
  .desktop-hamburger-menu {
    display: none !important;
  }
}

/* Mobile Off-Canvas Menu - Completely separate, only visible on mobile */
.mobile-offcanvas-menu {
  display: none;
}

.mobile-offcanvas-overlay {
  display: none;
}

/* Deep mobile submenus disabled: Teams uses direct lander links; Coach is a single link */
.mobile-offcanvas-submenu.mobile-submenu-retired {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (max-width: 991px) {
  /* Mobile Off-Canvas Menu */
  .mobile-offcanvas-menu {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background-color: #ffffff !important;
    color: #000000 !important;
    z-index: 2147483647 !important;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    overflow-y: auto !important;
    pointer-events: auto !important;
  }
  
  .mobile-offcanvas-menu.active {
    transform: translateX(0) !important;
    z-index: 2147483647 !important;
  }
  
  .mobile-offcanvas-overlay {
    display: none;
  }
  
  .mobile-offcanvas-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: 2147483647 !important;
    min-height: 0;
  }
  
  .mobile-offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    position: relative;
    z-index: 2147483648 !important;
    background-color: #ffffff !important;
    width: 100%;
  }
  
  .mobile-offcanvas-close {
    position: relative;
    z-index: 2147483649 !important;
    pointer-events: auto !important;
  }
  
  
  .mobile-offcanvas-logo {
    height: 24px;
    max-width: 180px;
    object-fit: contain;
  }
  
  .mobile-offcanvas-close {
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-offcanvas-close svg {
    width: 24px;
    height: 24px;
  }
  
  .mobile-offcanvas-body {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1rem 1rem 2rem 1rem;
    min-height: 0;
  }
  
  .mobile-offcanvas-nav {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
  }
  
  .mobile-offcanvas-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000000;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    min-height: 56px;
    border-radius: 0;
  }
  
  .mobile-offcanvas-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
  }
  
  .mobile-offcanvas-arrow {
    color: #000000;
    transition: transform 0.2s ease;
  }
  
  .mobile-offcanvas-actions {
    display: none;
  }
  
  .mobile-offcanvas-demo-btn {
    background-color: #02783F;
    color: #ffffff;
    border: none;
    cursor: pointer;
    text-align: center;
    justify-content: center;
    border-radius: 8px;
    margin-top: 1.5rem;
  }
  
  .mobile-offcanvas-demo-btn:hover {
    background-color: #026a35;
  }
  
  /* Submenu Styles */
  .mobile-offcanvas-submenu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 2147483646 !important;
    padding-top: 0;
    overflow: hidden;
    pointer-events: none;
  }
  
  .mobile-offcanvas-submenu.active {
    pointer-events: auto;
  }
  
  .mobile-offcanvas-submenu.active {
    transform: translateX(0);
  }
  
  .mobile-offcanvas-submenu-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    padding: 0 2rem 2rem 2rem;
    gap: 0;
    margin-top: 105px; /* Extra spacing to match main menu exactly */
  }
  
  .mobile-offcanvas-sublink {
    color: #000000;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 1.25rem 1.5rem;
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 56px;
    border-radius: 0;
  }
  
  .mobile-offcanvas-sublink:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
  }
  
  .mobile-offcanvas-sublink-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
  }
  
  .mobile-offcanvas-sublink-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .mobile-offcanvas-sublink-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
  }
  
  .mobile-offcanvas-sublink-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #000000;
    line-height: 1.2;
  }
  
  .mobile-offcanvas-sublink-desc {
    font-size: 0.875rem;
    font-weight: 400;
    color: #666666;
    line-height: 1.4;
  }

  /* Single-level mobile nav: no drill-down arrow */
  .mobile-offcanvas-sublink-direct {
    cursor: pointer;
  }
  
  .mobile-offcanvas-section {
    margin-top: 1.5rem;
  }
  
  .mobile-offcanvas-section:first-of-type {
    margin-top: 0;
  }
  
  
  .mobile-offcanvas-back-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #000000;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    min-height: 56px;
    border-radius: 0;
    background: transparent;
    border: none;
    text-align: left;
  }
  
  .mobile-offcanvas-back-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
  }
  
  .mobile-offcanvas-back-item svg {
    width: 16px;
    height: 16px;
  }
}

.btn-demo {
  background-color: var(--Secondary, #02783F) !important;
  color: white !important;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-left: 1rem;
  position: relative;
}

.navbar-divider {
  width: 1.5px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  margin: 0 0.75rem;
}

.btn-demo:hover {
  background-color: #025a30 !important;
  transform: translateY(-1px);
}

.hero-wrapper {
  width: 100%;
  background-color: var(--Slate-950, #020617);
  min-height: 120vh;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 2rem;
}

@media (max-width: 1439px) {
  .hero-container {
    padding: 0;
    max-width: 100%;
  }
  
  .hero-content {
    padding: 0 2rem;
  }
  
  .custom-navbar {
    left: 1rem;
    right: 1rem;
  }
  
}

@media (max-width: 768px) {
  .hero-wrapper {
    padding: 0;
    margin: 0;
  }
  
  .hero-container {
    padding: 0 !important;
    margin: 0;
    max-width: 100%;
  }
  
  .hero-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0;
    margin: 0;
  }
  
  .hero-background {
    left: 0;
    right: 0;
    width: 100%;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .custom-navbar {
    left: 0.75rem !important;
    right: 0.75rem !important;
    top: 0.75rem;
    width: auto !important;
    max-width: none !important;
    transform: translateX(0) !important;
  }
  
  .custom-navbar .navbar-container {
    padding: 0 0.75rem;
  }
  
  .custom-navbar .navbar-nav,
  .custom-navbar .btn-demo,
  .custom-navbar .navbar-divider,
  .custom-navbar .navbar-toggler-desktop {
    display: none !important;
  }
  
  .custom-navbar .navbar-collapse {
    display: none !important;
  }
  
  .custom-navbar .navbar-toggler {
    display: block !important;
  }
}

@media (max-width: 991px) {
  .custom-navbar .navbar-nav,
  .custom-navbar .btn-demo,
  .custom-navbar .navbar-divider,
  .custom-navbar .navbar-toggler-desktop {
    display: none !important;
  }
  
  .custom-navbar .navbar-collapse {
    display: none !important;
  }
  
  .custom-navbar .navbar-toggler {
    display: block !important;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 120vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 2rem;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.3), rgba(2, 6, 23, 0.7), var(--Slate-950, #020617));
  z-index: 2;
}

/* Contact page hero section specific styles */
.contact-hero-section {
  padding-top: 6rem;
}

.contact-hero-section .hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(
    to bottom,
    var(--Slate-950, #020617) 0%,
    rgba(2, 6, 23, 0.9) 20%,
    rgba(2, 6, 23, 0.7) 40%,
    rgba(2, 6, 23, 0.4) 60%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.contact-hero-section .hero-background::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(
    to top,
    var(--Slate-950, #020617) 0%,
    rgba(2, 6, 23, 0.9) 20%,
    rgba(2, 6, 23, 0.7) 40%,
    rgba(2, 6, 23, 0.4) 60%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.contact-hero-section .hero-overlay {
  background: rgba(2, 6, 23, 0.5);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.5), rgba(2, 6, 23, 0.6), rgba(2, 6, 23, 0.7), var(--Slate-950, #020617));
}

.contact-hero-section .hero-content {
  max-width: 100%;
  padding: 0;
}

/* Contact Form Styles */
.contact-hero-content {
  max-width: 100%;
  width: 100%;
  padding: 6rem 2rem 6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-header {
  text-align: left;
  color: white;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #02783F;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 5rem 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  padding-right: 1.5rem;
}

.contact-label::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

.contact-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
  color: #ffffff;
}

.contact-description {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.contact-form {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(2, 120, 63, 0.3);
  border-radius: 16px;
  padding: 3rem;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-row:last-child {
  margin-bottom: 0;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  width: 100%;
}

.form-group.half-width {
  flex: 1;
}

.phone-input-group {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}

.phone-code-input {
  flex: 0 0 80px;
}

.phone-number-input {
  flex: 1;
}

.form-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.5rem;
  display: block;
  position: relative;
  padding-right: 1.5rem;
}

.required {
  color: #02783F;
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.form-select:focus {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-subtext {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
  line-height: 1.5;
}

.select-wrapper {
  position: relative;
  width: 100%;
}

.form-select {
  appearance: none;
  background-image: none;
  padding-right: 2.5rem;
  cursor: pointer;
}

.select-chevron {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: transform 0.3s ease;
  z-index: 1;
}

.form-select:focus + .select-chevron,
.select-wrapper.active .select-chevron {
  transform: translateY(-50%) rotate(180deg);
}

/* Custom Dropdown Styles */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  padding-right: 2.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  min-height: 44px;
  box-sizing: border-box;
  position: relative;
}

.custom-select-trigger:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.custom-select-trigger.active {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 8px 8px 0 0;
  border-bottom: none;
}


.custom-select-value {
  flex: 1;
  color: #ffffff;
}

.custom-select-value.placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.custom-select-chevron {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  pointer-events: none;
}

.custom-select-trigger.active .custom-select-chevron {
  transform: translateY(-50%) rotate(180deg);
}

.custom-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  z-index: 1000;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.custom-select-dropdown.active {
  max-height: 300px;
  opacity: 1;
  overflow-y: auto;
}

.custom-select-option {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #ffffff;
  padding: 0.75rem 1rem;
  padding-right: 2.5rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-select-option:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-select-option:hover {
  background: rgba(255, 255, 255, 0.6);
}

.custom-select-option.selected {
  background: rgba(255, 255, 255, 0.65);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: 'Outfit', sans-serif;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 2px solid rgba(255, 255, 255, 1);
  border-radius: 6px;
  background-color: var(--Slate-950, #020617);
  position: relative;
  transition: all 0.2s ease;
}

.form-checkbox input[type="checkbox"]:checked {
  background-color: #000000;
  border-color: rgba(255, 255, 255, 1);
}

.form-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -60%) rotate(45deg);
}

.checkbox-text {
  flex: 1;
}

.terms-link {
  color: #02783F;
  text-decoration: none;
  transition: color 0.2s ease;
}

.terms-link:hover {
  color: #10B981;
  text-decoration: underline;
}

.form-message {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.form-message-success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #10B981;
}

.form-message-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
}

.form-submit-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #020617;
  background: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 0.875rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 0.5rem;
}

.form-submit-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.form-submit-btn:active {
  transform: translateY(0);
}

.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 768px) {
  .contact-hero-content {
    padding: 4rem 1.5rem 4rem 1.5rem;
    gap: 2rem;
  }
  
  .contact-hero-section .hero-content {
    padding: 0;
  }
  
  .contact-title {
    font-size: 2.5rem;
  }
  
  .contact-description {
    font-size: 0.9375rem;
  }
  
  .contact-form {
    padding: 1.5rem;
    margin: 0 1.5rem;
    max-width: calc(100% - 3rem);
  }
  
  .contact-header {
    padding: 0 1.5rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-group.phone-code {
    flex: 0 0 auto;
  }
  
  .form-group.half-width {
    width: 100%;
  }
}

/* Legal Pages (Terms & Privacy) Styles */
.legal-hero-section {
  padding-top: 6rem;
}

.legal-hero-section .hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(
    to bottom,
    var(--Slate-950, #020617) 0%,
    rgba(2, 6, 23, 0.9) 20%,
    rgba(2, 6, 23, 0.7) 40%,
    rgba(2, 6, 23, 0.4) 60%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.legal-hero-section .hero-background::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(
    to top,
    var(--Slate-950, #020617) 0%,
    rgba(2, 6, 23, 0.9) 20%,
    rgba(2, 6, 23, 0.7) 40%,
    rgba(2, 6, 23, 0.4) 60%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.legal-hero-section .hero-overlay {
  background: rgba(2, 6, 23, 0.6);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.6), rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.8), var(--Slate-950, #020617));
}

.legal-hero-content {
  max-width: 100%;
  width: 100%;
  padding: 6rem 2rem 4rem 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: calc(100vh - 100px);
}

.legal-content-box {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 3rem;
  max-width: 100%;
  width: 100%;
  margin: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1440px) {
  .legal-content-box {
    max-width: calc(1440px - 4rem);
  }
}

.legal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 2rem 0;
  line-height: 1.2;
  color: #ffffff;
  text-align: left;
}

.legal-text {
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
}

.legal-text p {
  margin: 0 0 1.5rem 0;
  color: rgba(255, 255, 255, 0.95);
}

.legal-text p:last-child {
  margin-bottom: 0;
}

.legal-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 2.5rem 0 1rem 0;
  line-height: 1.3;
}

.legal-text h2:first-of-type {
  margin-top: 2rem;
}

.legal-text ul {
  margin: 1rem 0 1.5rem 0;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.legal-text li {
  margin: 0.5rem 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.legal-text ul ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.legal-text a {
  color: #60a5fa;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.legal-text a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .legal-hero-content {
    padding: 4rem 1.5rem 2rem 1.5rem;
  }
  
  .legal-content-box {
    padding: 2rem 1.5rem;
    border-radius: 12px;
  }
  
  .legal-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .legal-text {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
  
  .legal-text p {
    margin-bottom: 1.25rem;
  }
  
  .legal-text h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.875rem;
  }
  
  .legal-text ul {
    margin: 0.875rem 0 1.25rem 0;
    padding-left: 1.25rem;
  }
  
  .legal-text li {
    margin: 0.4rem 0;
  }
}

@media (max-width: 480px) {
  .legal-hero-content {
    padding: 4rem 1rem 2rem 1rem;
  }
  
  .legal-content-box {
    padding: 1.5rem 1rem;
  }
  
  .legal-title {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }
  
  .legal-text h2 {
    font-size: 1.125rem;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
  }
  
  .legal-text ul {
    margin: 0.75rem 0 1rem 0;
    padding-left: 1rem;
  }
  
  .legal-text {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

@media (min-width: 1441px) {
  .hero-overlay::before,
  .hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
  }

  .hero-overlay::before {
    left: 0;
    background: linear-gradient(to right, var(--Slate-950, #020617), transparent);
  }

  .hero-overlay::after {
    right: 0;
    background: linear-gradient(to left, var(--Slate-950, #020617), transparent);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(80vh - 100px);
}

.hero-text {
  text-align: center;
  color: white;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-size: 6.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.25rem 0;
  line-height: 1;
  text-transform: uppercase;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subheadline {
  font-family: 'Outfit', sans-serif;
  font-size: 3.25rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem 0;
  line-height: 1;
  text-transform: uppercase;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 1.5rem 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.hero-partners {
  margin: 1.5rem 0;
}

.partners-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0 0 0.75rem 0;
  opacity: 0.9;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.hero-cta-btn {
  font-family: 'Outfit', sans-serif;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.hero-cta-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2), 0 0 30px rgba(255, 255, 255, 0.05);
}

.hero-cta-btn img {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}

  .hero-cta-btn svg {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.5rem;
  }
  
  .hero-subheadline {
    font-size: 1.25rem;
    font-weight: 400;
  }
  
  .hero-description {
    font-size: 0.875rem;
    padding: 0 1rem;
    margin-bottom: 1rem;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .hero-partners {
    margin: 1rem 0;
  }
  
  .partners-label {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }
  
  .partners-logos {
    gap: 0.25rem;
  }
  
  .partner-logo img {
    width: 32px;
    height: 32px;
  }
  
  .hero-cta-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
    margin-top: 1rem;
  }
  
  .hero-container {
    padding: 0 1rem;
  }
  
  .custom-navbar {
    top: 0.75rem;
    left: 1rem;
    right: 1rem;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.75rem;
  }
  
  .hero-subheadline {
    font-size: 1.375rem;
    font-weight: 400;
  }
  
  .hero-description {
    font-size: 0.875rem;
    padding: 0 0.75rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-content {
    padding: 0 0.75rem;
  }
  
  .hero-text {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* Reversed Hero Section */
.hero-reversed-wrapper {
  width: 100%;
  background-color: var(--Slate-950, #020617);
  min-height: 80vh;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 0 2rem;
  margin-bottom: 35px;
}

.hero-reversed-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(to bottom, transparent, rgba(2, 6, 23, 0.3), rgba(2, 6, 23, 0.7), var(--Slate-950, #020617));
  pointer-events: none;
  z-index: 10;
}

.hero-reversed-container {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  padding: 0 2rem;
}

@media (max-width: 1439px) {
  .hero-reversed-container {
    padding: 0;
    max-width: 100%;
  }
  
  .hero-reversed-content {
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  .hero-reversed-wrapper {
    padding: 0;
    margin: 0;
  }
  
  .hero-reversed-container {
    padding: 0 !important;
    margin: 0;
    max-width: 100%;
  }
  
  .hero-reversed-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0;
    margin: 0;
    border-radius: 48px 48px 0 0;
  }
  
  .hero-reversed-background {
    left: 0;
    right: 0;
    width: 100%;
  }
  
  .hero-reversed-content {
    padding: 0 1rem;
  }
}

.hero-reversed-section {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 8rem;
  border-radius: 48px 48px 0 0;
}

.hero-reversed-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 8rem);
  z-index: 0;
}

.hero-reversed-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 23, 0.4);
  z-index: 1;
  pointer-events: none;
  border-radius: 48px 48px 0 0;
}


.hero-reversed-image-wrapper {
  position: relative;
  width: 100%;
  height: 51%;
}

.hero-reversed-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(2, 6, 23, 0.4) 8%,
    rgba(2, 6, 23, 0.7) 20%,
    rgba(2, 6, 23, 0.8) 30%,
    rgba(2, 6, 23, 0.9) 45%,
    var(--Slate-950, #020617) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-reversed-background img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 48px 48px 0 0;
}

.hero-reversed-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  z-index: 2;
  border-radius: 48px 48px 0 0;
}


@media (min-width: 1441px) {
  .hero-reversed-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    z-index: 4;
    pointer-events: none;
  }
  
  .hero-reversed-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    z-index: 4;
    pointer-events: none;
  }
}

.hero-reversed-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 8rem 2rem 8rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.hero-reversed-header {
  text-align: center;
  color: white;
  width: 100%;
  margin-top: 3rem;
}

.hero-reversed-label {
  display: flex;
  align-items: center;
  justify-content: center;
    gap: 1rem;
  margin-bottom: 1rem;
  }
  
.hero-reversed-label-line-left,
.hero-reversed-label-line-right {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background-color: #ffffff;
}

.hero-reversed-label span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.hero-reversed-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
  color: white;
}

.hero-reversed-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  color: white;
}

.hero-reversed-cards-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 2rem 0 2rem 0;
  line-height: 1.3;
  color: #94a3b8;
  text-align: left;
  white-space: pre-line;
}

.hero-reversed-cards-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  min-height: 680px;
}

.hero-reversed-cards-wrapper {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.hero-reversed-card {
  flex: 0 0 calc(28% - 1rem);
  background-color: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid #F8FAFC29;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 680px;
  transition: box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-width: 0;
}

.hero-reversed-card:hover {
  box-shadow: 0 0 8px rgba(248, 250, 252, 0.15);
  transform: translateY(-8px);
}

.hero-reversed-card-hidden {
  opacity: 0.3;
  pointer-events: auto;
  transform: translateX(0);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-reversed-cards-container:has(.hero-reversed-card-hidden:hover) .hero-reversed-cards-wrapper {
  transform: translateX(calc(-18% - 0.3rem));
}

.hero-reversed-cards-container:has(.hero-reversed-card-hidden:hover) .hero-reversed-card-hidden {
  opacity: 1;
  transform: translateX(0);
}

.hero-reversed-card-image {
  width: 100%;
  height: 360px;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-reversed-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 16px 16px 0 0;
}

.hero-reversed-card:hover .hero-reversed-card-image img {
  transform: scale(1.05);
}

.hero-reversed-card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  box-sizing: border-box;
  min-height: 0;
  overflow: visible;
  background-color: rgba(15, 23, 42, 0.4);
  border-radius: 0 0 16px 16px;
}

.hero-reversed-card-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: white;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-reversed-card-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  color: rgba(255, 255, 255, 0.99);
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: visible;
}

/* Responsive Design for Reversed Hero */
@media (max-width: 1200px) {
  .hero-reversed-card {
    flex: 0 0 calc(28% - 1rem);
  }
  
  .hero-reversed-cards-container:has(.hero-reversed-card-hidden:hover) .hero-reversed-cards-wrapper {
    transform: translateX(calc(-18% - 0.3rem));
  }
}

@media (max-width: 1024px) {
  .hero-reversed-title {
    font-size: 2.5rem;
  }
  
  .hero-reversed-cards-title {
    font-size: 2rem;
    white-space: pre-line;
  }
  
  .hero-reversed-card {
    flex: 0 0 calc(50% - 0.75rem);
    height: 680px;
  }
  
  .hero-reversed-cards-container:has(.hero-reversed-card-hidden:hover) .hero-reversed-cards-wrapper {
    transform: translateX(calc(-30% - 0.25rem));
  }
}

@media (max-width: 768px) {
  .hero-reversed-content {
    padding: 6rem 1.5rem 6rem 1.5rem;
    gap: 4rem;
  }
  
  .hero-reversed-title {
    font-size: 2rem;
  }
  
  .hero-reversed-subtitle {
    font-size: 1rem;
  }
  
  .hero-reversed-cards-title {
    font-size: 1.75rem;
    margin: 4rem 0 1.5rem 0;
    white-space: pre-line;
  }
  
  .hero-reversed-cards-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 1rem 1rem 1rem;
    margin: 0;
    min-height: 550px;
    height: 550px;
    width: 100%;
    position: relative;
  }
  
  .hero-reversed-cards-container::-webkit-scrollbar {
    display: none;
  }
  
  .hero-reversed-cards-wrapper {
    display: flex;
    gap: 1px;
    padding: 0 0.5rem;
    align-items: center;
    height: 100%;
    min-width: fit-content;
  }
  
  .hero-reversed-card {
    flex: 0 0 280px;
    height: 450px;
    scroll-snap-align: center;
    transform: scale(0.85);
    opacity: 0.6;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), flex-basis 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, flex-basis, height;
    flex-shrink: 0;
    cursor: pointer;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #F8FAFC29;
  }
  
  .hero-reversed-card.active-mobile {
    flex: 0 0 320px;
    height: 500px;
    transform: scale(1);
    opacity: 1;
    z-index: 2;
    box-shadow: 0 0 8px rgba(248, 250, 252, 0.15);
  }
  
  .hero-reversed-card-hidden {
    display: block;
    opacity: 0.6;
  }
  
  .hero-reversed-cards-container:has(.hero-reversed-card-hidden:hover) .hero-reversed-cards-wrapper {
    transform: translateX(0);
  }
  
  .hero-reversed-card-image {
    height: 280px;
    flex-shrink: 0;
  }
  
  .hero-reversed-card.active-mobile .hero-reversed-card-image {
    height: 300px;
  }
  
  .hero-reversed-card-content {
    padding: 1.25rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.7), max-width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .hero-reversed-card.active-mobile .hero-reversed-card-content {
    width: 100%;
    max-width: 100%;
  }
  
  .hero-reversed-card-heading {
    font-size: 1.125rem;
    transition: font-size 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .hero-reversed-card.active-mobile .hero-reversed-card-heading {
    font-size: 1.375rem;
  }
  
  .hero-reversed-card-text {
    font-size: 0.875rem;
    transition: font-size 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.3);
  }
  
  .hero-reversed-card.active-mobile .hero-reversed-card-text {
    font-size: 1rem;
  }
}

/* Hero Reversed Cards Carousel (Mobile) */
.hero-reversed-cards-mobile {
  display: none;
}

.hero-reversed-cards-desktop {
  display: block;
}

@media (max-width: 989px) {
  .hero-reversed-cards-desktop {
    display: none !important;
  }
  
  .hero-reversed-cards-mobile {
    display: block;
    width: 100%;
    position: relative;
    padding: 0.5rem 0 1rem 0;
    overflow: hidden;
  }
  
  .hero-reversed-swiper {
    width: 100%;
    padding: 0 2rem;
    overflow: visible;
  }
  
  .hero-reversed-swiper .swiper-wrapper {
    align-items: stretch;
  }
  
  .hero-reversed-swiper .swiper-slide {
    height: auto;
    display: flex;
  }
  
  .hero-reversed-swiper .swiper-slide .hero-reversed-card {
    width: 100%;
    height: 580px;
    flex: 1;
    margin: 0;
    transform: none;
    opacity: 1;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #F8FAFC29;
    box-shadow: 0 0 8px rgba(248, 250, 252, 0.15);
    transition: box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .hero-reversed-swiper .swiper-slide-active .hero-reversed-card {
    box-shadow: 0 0 8px rgba(248, 250, 252, 0.15);
    transform: translateY(-8px);
  }
  
  .hero-reversed-swiper .swiper-slide .hero-reversed-card-image {
    height: 280px;
    flex-shrink: 0;
  }
  
  .hero-reversed-swiper .swiper-slide .hero-reversed-card-content {
    padding: 1.5rem;
    flex: 1;
    min-height: 0;
    overflow: visible;
  }
  
  .hero-reversed-swiper .swiper-slide .hero-reversed-card-heading {
    font-size: 1.375rem;
    margin-bottom: 1rem;
  }
  
  .hero-reversed-swiper .swiper-slide .hero-reversed-card-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.99);
    overflow: visible;
  }
  
  .hero-reversed-swiper .swiper-slide .hero-reversed-card-heading {
    color: #ffffff;
  }
  
  /* Swiper Navigation Arrows */
  .hero-reversed-swiper-button-next,
  .hero-reversed-swiper-button-prev {
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5) !important;
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    z-index: 10;
  }
  
  .hero-reversed-swiper-button-next:hover,
  .hero-reversed-swiper-button-prev:hover {
    color: rgba(255, 255, 255, 0.8) !important;
    transform: translateY(-50%) scale(1.1);
  }
  
  .hero-reversed-swiper-button-next:after,
  .hero-reversed-swiper-button-prev:after {
    font-size: 24px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5) !important;
  }
  
  .hero-reversed-swiper-button-next:hover:after,
  .hero-reversed-swiper-button-prev:hover:after {
    color: rgba(255, 255, 255, 0.8) !important;
  }
  
  .hero-reversed-swiper-button-next {
    right: 0.5rem;
  }
  
  .hero-reversed-swiper-button-prev {
    left: 0.5rem;
  }
  
  .hero-reversed-swiper-button-next.swiper-button-disabled,
  .hero-reversed-swiper-button-prev.swiper-button-disabled {
    opacity: 0.2;
    cursor: not-allowed;
  }
}

/* How It Works Section */
.how-it-works-section {
  background-color: #f8fafc;
  padding: 8rem 2rem;
  color: #1e293b;
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.how-it-works-section::before {
  display: none;
}

.how-it-works-section::after {
  display: none;
}

.how-it-works-container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
}

@media (max-width: 1439px) {
  .how-it-works-container {
    padding: 0;
  }
}

.how-it-works-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.how-it-works-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.how-it-works-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: -1.3rem;
}

.how-it-works-label-line-left,
.how-it-works-label-line-right {
  flex: 0 1 auto;
  min-width: 100px;
  max-width: 200px;
  height: 1px;
  background-color: #10B981;
}

.how-it-works-label span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #02783F;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.how-it-works-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 -1.75rem 0;
  line-height: 1.2;
  color: #1e293b;
}

.how-it-works-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  color: #64748b;
  max-width: 600px;
}

.how-it-works-steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 1rem;
}

.how-it-works-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.how-it-works-step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e2e8f0;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
}

.how-it-works-step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.how-it-works-step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: #1e293b;
  line-height: 1.3;
}

.how-it-works-step-description {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  color: #64748b;
}

.how-it-works-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 600px;
}

.how-it-works-phone {
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: contain;
  transform: rotate(-5deg);
}

/* Academy network: sign-in mockup only (phone_4), no rear mockup */
.how-it-works-right--academy-single {
  min-height: 420px;
  padding: 0.5rem 0;
}

.how-it-works-phone-academy-single {
  max-width: 380px;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: rotate(8deg);
  filter: drop-shadow(0 18px 36px rgba(15, 23, 42, 0.18));
}

/* Responsive Design for How It Works Section */
@media (max-width: 1200px) {
  .how-it-works-content {
    gap: 3rem;
  }
  
  .how-it-works-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .how-it-works-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    display: flex;
    flex-direction: column;
  }
  
  .how-it-works-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .how-it-works-steps {
    order: 3;
  }
  
  .how-it-works-right {
    min-height: 500px;
    order: 2;
  }
  
  .how-it-works-phone {
    max-width: 300px;
    transform: rotate(0deg);
  }

  .how-it-works-phone-academy-single {
    max-width: 320px;
    transform: rotate(5deg);
  }

  .how-it-works-right--academy-single {
    min-height: 380px;
  }
}

@media (max-width: 768px) {
  .how-it-works-section {
    padding: 4rem 1.5rem;
    margin-top: 2rem;
  }
  
  .how-it-works-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .how-it-works-left {
    display: contents;
  }
  
  .how-it-works-label {
    order: 1;
  }
  
  .how-it-works-title {
    font-size: 2rem;
    order: 2;
  }
  
  .how-it-works-subtitle {
    font-size: 1rem;
    order: 3;
  }
  
  .how-it-works-right {
    min-height: 400px;
    order: 4;
    margin: 1rem 0;
  }
  
  .how-it-works-phone {
    max-width: 250px;
  }

  .how-it-works-phone-academy-single {
    max-width: 260px;
    transform: rotate(4deg);
  }

  .how-it-works-right--academy-single {
    min-height: 320px;
  }
  
  .how-it-works-steps {
    gap: 2rem;
    order: 5;
    margin-top: 0;
  }
  
  .how-it-works-step {
    gap: 1rem;
  }
  
  .how-it-works-step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .how-it-works-step-title {
    font-size: 1.125rem;
  }
  
  .how-it-works-step-description {
    font-size: 0.9375rem;
  }
}

/* Why You Need It Section */
.why-you-need-section {
  background-color: var(--Slate-950, #020617);
  padding: 8rem 2rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.why-you-need-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(2, 120, 63, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.why-you-need-container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.why-you-need-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.why-you-need-description {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 auto 2.5rem auto;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: 800px;
}

.why-you-need-label-line-left,
.why-you-need-label-line-right {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background-color: #10B981;
}

.why-you-need-label span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #02783F;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

@media (max-width: 1439px) {
  .why-you-need-container {
    padding: 0;
  }
}

.why-you-need-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-you-need-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-you-need-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.why-you-need-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-you-need-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 auto 0.75rem auto;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  max-width: 1000px;
}

.why-you-need-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.why-you-need-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.why-you-need-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-you-need-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.why-you-need-item-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
  line-height: 1.3;
}

.why-you-need-item-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

/* Ready to Grow Section */
.ready-to-grow-section {
  background-color: var(--Slate-950, #020617);
  padding: 8rem 2rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.ready-to-grow-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.ready-to-grow-label-line-left,
.ready-to-grow-label-line-right {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background-color: #10B981;
}

.ready-to-grow-label span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #02783F;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.ready-to-grow-container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
}

@media (max-width: 1439px) {
  .ready-to-grow-container {
    padding: 0;
  }
}

.ready-to-grow-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.ready-to-grow-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
  color: #ffffff;
  max-width: 900px;
}

.ready-to-grow-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
}

.ready-to-grow-video {
  width: 100%;
  max-width: 1000px;
  margin-top: 2rem;
}

.ready-to-grow-video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.ready-to-grow-video-thumbnail:hover {
  transform: scale(1.02);
}

.ready-to-grow-video-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ready-to-grow-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease;
}

.ready-to-grow-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.ready-to-grow-play-button:active {
  transform: translate(-50%, -50%) scale(0.95);
}

/* Responsive Design for Why You Need It Section */
@media (max-width: 1024px) {
  .why-you-need-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .why-you-need-left {
    order: -1;
  }
  
  .why-you-need-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .why-you-need-section {
    padding: 4rem 1.5rem;
  }
  
  .why-you-need-title {
    font-size: 2rem;
  }
  
  .why-you-need-description {
    font-size: 1rem;
  }
  
  .why-you-need-list {
    gap: 2.5rem;
  }
  
  .why-you-need-item {
    gap: 1rem;
  }
  
  .why-you-need-item-title {
    font-size: 1.125rem;
  }
  
  .why-you-need-item-text {
    font-size: 0.9375rem;
  }
  
  .ready-to-grow-section {
    padding: 4rem 1.5rem;
  }
  
  .ready-to-grow-title {
    font-size: 2rem;
  }
  
  .ready-to-grow-subtitle {
    font-size: 1rem;
  }
}

/* Trusted By Section */
.trusted-by-section {
  background-color: var(--Slate-950, #020617);
  padding: 8rem 2rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.trusted-by-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.05) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.trusted-by-container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 1439px) {
  .trusted-by-container {
    padding: 0;
  }
}

.trusted-by-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  width: 100%;
}

.trusted-by-label-line-left,
.trusted-by-label-line-right {
  flex: 1;
  max-width: 200px;
  min-width: 50px;
  height: 1px;
  background-color: #10B981;
}

.trusted-by-label span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #02783F;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.trusted-by-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  color: #ffffff;
}

.trusted-by-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 3rem 0;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
}

.trusted-by-videos-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.trusted-by-videos-container::-webkit-scrollbar {
  display: none;
}

.trusted-by-videos-container:active {
  cursor: grabbing;
}

.trusted-by-videos-wrapper {
  display: flex;
  gap: 2.5rem;
  padding-bottom: 1rem;
}

.trusted-by-video-item {
  flex: 0 0 auto;
  width: 380px;
}

.trusted-by-video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.trusted-by-video-thumbnail:hover {
  transform: scale(1.02);
}

.trusted-by-video-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.trusted-by-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease;
}

.trusted-by-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.trusted-by-play-button:active {
  transform: translate(-50%, -50%) scale(0.95);
}

/* Responsive Design for Trusted By Section */
@media (max-width: 1024px) {
  .trusted-by-title {
    font-size: 2.5rem;
  }
  
  .trusted-by-video-item {
    width: 340px;
  }
  
  .trusted-by-videos-wrapper {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .trusted-by-section {
    padding: 4rem 1.5rem;
  }
  
  .trusted-by-label {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .trusted-by-label-line-left,
  .trusted-by-label-line-right {
    max-width: 100px;
    min-width: 30px;
  }
  
  .trusted-by-label span {
    font-size: 0.8125rem;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }
  
  .trusted-by-title {
    font-size: 2rem;
  }
  
  .trusted-by-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .trusted-by-video-item {
    width: 300px;
  }
  
  .trusted-by-videos-wrapper {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .trusted-by-label {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .trusted-by-label-line-left,
  .trusted-by-label-line-right {
    max-width: 60px;
    min-width: 15px;
  }
  
  .trusted-by-label span {
    font-size: 0.6875rem;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    max-width: 200px;
  }
}

/* Pricing Plans Section */
.pricing-plans-section {
  background-color: var(--Slate-950, #020617);
  padding: 8rem 2rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.pricing-plans-container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
}

@media (max-width: 1439px) {
  .pricing-plans-container {
    padding: 0;
  }
}

.pricing-plans-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pricing-plans-label-line-left,
.pricing-plans-label-line-right {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background-color: #10B981;
}

.pricing-plans-label span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #02783F;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pricing-plans-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
}

.pricing-plans-description {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 4rem 0;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-plan-card {
  background-color: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.pricing-plan-card-popular {
  border: 2px solid #02783F;
  border-radius: 12px 12px 12px 12px;
  background-color: #0F172A;
  overflow: hidden;
  padding-top: 0;
  position: relative;
}

.pricing-plan-header {
  background-color: #02783F;
  margin: 0 -2.5rem 2rem -2.5rem;
  padding: 2.5rem 2.5rem 1.5rem 2.5rem;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  min-height: 80px;
}

.pricing-plan-card-popular .pricing-plan-header {
  margin-top: -1.5rem;
  margin-left: -2.5rem;
  margin-right: -2.5rem;
  padding: 2.5rem 2.5rem 0 2.5rem;
  border-radius: 10px 10px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  position: relative;
  z-index: 1;
}

.pricing-plan-card-popular .pricing-plan-header .pricing-plan-title {
  margin: 0;
  flex: 0 0 auto;
}

.pricing-plan-header-bottom {
  width: calc(100% + 5rem);
  height: 20px;
  background-color: #0F172A;
  border-radius: 18px 18px 0 0;
  border-bottom: 2px solid #0F172A;
  margin-top: 1.5rem;
  margin-left: -2.5rem;
  margin-right: -2.5rem;
}

.pricing-plan-card-popular .pricing-plan-title {
  margin: 0 0 0.75rem 0;
  color: #ffffff;
}

.pricing-plan-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #10B981;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

.pricing-plan-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  color: #ffffff;
  text-align: left;
}


.pricing-plan-package-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  color: #ffffff;
  text-align: left;
}

.pricing-plan-description {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
}

.pricing-plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-plan-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.pricing-plan-period {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.pricing-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.pricing-plan-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.pricing-plan-feature-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 0.875rem;
  color: #ffffff;
  flex-shrink: 0;
}

.pricing-plan-feature-icon.bi {
  font-size: 0.875rem;
}

.pricing-plan-button {
  width: 100%;
  padding: 1rem 2rem;
  background-color: #ffffff;
  color: #020617;
  border: none;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-bottom: 1rem;
}

.pricing-plan-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.pricing-plan-button:active {
  transform: translateY(0);
}

.pricing-plan-button-primary {
  background-color: #02783F;
  color: #ffffff;
}

.pricing-plan-button-primary:hover {
  background-color: #025a2e;
}

.pricing-plan-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: auto;
}

.pricing-plan-guarantee-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 0.75rem;
  color: #ffffff;
  flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.faq-label-line-left,
.faq-label-line-right {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background-color: #10B981;
}

.faq-label span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #02783F;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.faq-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
}

.faq-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 4rem 0;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.faq-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 3rem;
  padding: 1rem 1.5rem;
  background-color: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  width: fit-content;
}

.faq-tab {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 8px;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-tab:hover {
  color: #ffffff;
}

.faq-tab-active {
  background-color: #02783F;
  color: #ffffff;
}

.faq-content {
  position: relative;
}

.faq-category {
  display: none;
}

.faq-category-active {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 
    background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
  background-color: rgba(30, 41, 59, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.faq-item-expanded {
  background: linear-gradient(to bottom, #02783F 0%, rgba(2, 120, 63, 0.95) 5%, rgba(2, 120, 63, 0.85) 10%, rgba(2, 120, 63, 0.7) 15%, rgba(2, 120, 63, 0.5) 20%, rgba(2, 120, 63, 0.3) 30%, rgba(2, 120, 63, 0.15) 50%, rgba(2, 120, 63, 0.05) 80%, transparent 100%);
  border: none;
  padding-bottom: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(2, 120, 63, 0.3);
  transition: 
    background 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  padding-top: 0;
  width: 100%;
  cursor: pointer;
  user-select: none;
}

.faq-item-category-label {
  position: absolute;
  top: -0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.25rem 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  opacity: 0;
  transform: translateY(-10px) scale(0.9);
  transition: 
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  pointer-events: none;
}

.faq-item-expanded .faq-item-category-label {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.faq-item-question {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  flex: 1;
  padding-top: 0;
  text-align: left;
  transition: 
    padding-top 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.3s ease;
}

.faq-item-expanded .faq-item-question {
  padding-top: 1.5rem;
  transition: 
    padding-top 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.3s ease;
}

.faq-item-toggle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    color 0.3s ease,
    background-color 0.3s ease;
  pointer-events: none;
}

.faq-item:hover .faq-item-toggle {
  color: rgba(255, 255, 255, 1);
}

.faq-item-expanded .faq-item-toggle {
  transform: rotate(45deg) scale(1.1);
  color: #ffffff;
  transition: 
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    color 0.3s ease;
}

.faq-item-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  padding: 0;
  width: 100%;
  transform: translateY(-20px) scale(0.98);
  transition: 
    max-height 0.2s cubic-bezier(0.4, 0, 1, 1),
    opacity 0.2s cubic-bezier(0.4, 0, 1, 1),
    transform 0.2s cubic-bezier(0.4, 0, 1, 1),
    margin-top 0.2s cubic-bezier(0.4, 0, 1, 1),
    padding 0.2s cubic-bezier(0.4, 0, 1, 1);
}

.faq-item-expanded .faq-item-answer {
  max-height: 2000px;
  margin-top: 1rem;
  opacity: 1;
  padding: 0;
  transform: translateY(0) scale(1);
  transition: 
    max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
    margin-top 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.faq-item-answer p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
  text-align: left;
  letter-spacing: -0.01em;
}

/* Responsive Design for FAQ Section */
@media (max-width: 768px) {
  .faq-section {
    padding: 4rem 1.5rem;
  }

  .faq-title {
    font-size: 2.5rem;
  }

  .faq-subtitle {
    font-size: 1rem;
  }

  .faq-tabs {
    flex-direction: column;
    gap: 0.5rem;
    justify-content: flex-start;
    width: 100%;
    padding: 1rem;
  }

  .faq-tab {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    width: 100%;
    text-align: left;
  }

  .faq-category-active {
    grid-template-columns: 1fr;
  }

  .faq-item {
    padding: 1.25rem;
  }

  .faq-item-question {
    font-size: 1rem;
  }
}

/* Responsive Design for Pricing Plans Section */
@media (max-width: 1024px) {
  .pricing-plans-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 500px;
  }
  
  .pricing-plans-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .pricing-plans-section {
    padding: 4rem 1.5rem;
  }
  
  .pricing-plans-title {
    font-size: 2rem;
  }
  
  .pricing-plans-description {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  
  .pricing-plan-amount {
    font-size: 2.5rem;
  }
}

/* Platform CTA Section (multi-sport & academy-network) */
.platform-section {
  background-color: var(--Slate-950, #020617);
  padding: 8rem 2rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.platform-section-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.platform-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.platform-section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.platform-section-label-line-left,
.platform-section-label-line-right {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background-color: #10b981;
}

.platform-section-label span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #02783f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.platform-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem 0;
  line-height: 1.15;
  color: #ffffff;
}

.platform-section-description {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.85);
  max-width: 900px;
}

.platform-section-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem 3rem;
  margin-top: 1rem;
}

.platform-section-card-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.platform-section-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  line-height: 1.25;
}

.platform-section-cta-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.platform-section-cta-btn {
  display: inline-block;
  align-self: flex-start;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #020617;
  background: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 0.875rem 2rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  margin-top: 0.5rem;
}

.platform-section-cta-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #020617;
  transform: translateY(-1px);
}

.platform-section-card-right {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  justify-content: center;
}

.platform-section-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.platform-section-item-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.platform-section-item-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: #ffffff;
}

.platform-section-item-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
  .platform-section-card {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }

  .platform-section-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .platform-section {
    padding: 4rem 1.5rem;
  }

  .platform-section-title {
    font-size: 1.875rem;
  }

  .platform-section-description {
    font-size: 1rem;
  }
}

/* Features Section */
.features-section {
  background-color: var(--Slate-950, #020617);
  padding: 6rem 2rem 14rem 2rem;
  color: #ffffff;
  position: relative;
  z-index: 0;
  transform-origin: center center;
  will-change: transform;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  overflow: visible;
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: visible;
  position: relative;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 4rem;
  position: relative;
  z-index: 1;
}

.features-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.features-label-line-left,
.features-label-line-right {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background-color: #10B981;
}

.features-label span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #02783F;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.features-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1.5rem 0;
  color: #ffffff;
}

.features-description {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Multi-sport: features header matches centered hero-style label + headline */
.features-section--multi-sport .features-header {
  max-width: 52rem;
}

.features-section--multi-sport .features-label span {
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #10b981;
}

.features-section--multi-sport .features-label-line-left,
.features-section--multi-sport .features-label-line-right {
  background-color: #10b981;
}

.features-section--multi-sport .features-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.02em;
}

.features-section--multi-sport .features-description {
  color: rgba(248, 250, 252, 0.92);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 480px) {
  .features-section--multi-sport .features-label span {
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  align-items: stretch;
  position: relative;
}

.feature-card {
  background-color: #F8FAFC0D;
  border: 1px solid #F8FAFC29;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.feature-card:hover {
  box-shadow: 0 0 8px rgba(248, 250, 252, 0.15);
  transform: translateY(-8px);
}

.feature-card:nth-child(2) {
  margin-top: 2rem;
}

.feature-image {
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.feature-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid #F8FAFC29;
}

.feature-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 1rem 0;
  color: #ffffff;
}

.feature-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.5rem 0;
  flex: 1;
}

.feature-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--Secondary, #02783F);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.feature-link:hover {
  opacity: 0.8;
}

.feature-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-link-icon img {
  width: 24px;
  height: 24px;
}

/* Responsive Design for Features Section */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .feature-card {
    margin-top: 0 !important;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 4rem 1.5rem 10rem 1.5rem;
  }
  
  .features-header {
    margin-bottom: 3rem;
    padding-top: 2rem;
  }
  
  .features-title {
    font-size: 1.75rem;
  }
  
  .features-title .no-break {
    white-space: nowrap;
  }
  
  .features-description {
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
  }
  
  .feature-card {
    margin-top: 0 !important;
    width: 100%;
  }
  
  .feature-image {
    height: 280px;
    width: 100%;
    margin: 0;
  }
  
  .feature-content {
    padding: 1.5rem;
  }
  
  .feature-heading {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .feature-text {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }
  
  .feature-link {
    font-size: 0.875rem;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
    width: 50px;
    height: 50px;
  background-color: var(--Secondary, #02783F);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(2, 120, 63, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0.9;
  visibility: visible;
}

.scroll-to-top.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.scroll-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(2, 120, 63, 0.4);
  opacity: 1;
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  animation: flashArrow 1.5s ease-in-out infinite;
}

@keyframes flashArrow {
  0%, 100% {
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    opacity: 0.3;
    filter: brightness(2);
  }
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
  }
  
  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* Network Training Section */
.network-training-section {
  background-color: transparent;
  padding: 11rem 3rem 16rem 3rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
  height: auto;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: visible;
  isolation: isolate;
}

.network-training-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--bg-height, 0);
  top: var(--bg-top, auto);
  background-color: var(--Slate-950, #020617);
  border-radius: var(--bg-radius, 80px) var(--bg-radius, 80px) 0 0;
  z-index: 0;
  transform-origin: bottom center;
  will-change: height, border-radius, top;
  transition: none;
  pointer-events: none;
}

.network-training-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.network-training-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: visible;
}

/* Left Side - Text Content */
.network-training-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
  height: 100%;
  overflow: visible;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
}

.network-training-text-content {
  min-height: 18rem;
  max-height: 18rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  overflow: hidden;
}

.network-training-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: -1.3rem;
}

.network-training-label-line-left,
.network-training-label-line-right {
  flex: 1;
  max-width: 200px;
  min-width: 50px;
  height: 1px;
  background-color: #10B981;
}

.network-training-label span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #02783F;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.network-training-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.75rem 0;
  color: #ffffff;
  transition: opacity 0.4s ease, transform 0.4s ease;
  min-height: 3.5rem;
  max-height: 6rem;
  overflow: hidden;
}

.network-training-description {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 0 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  min-height: 4.5rem;
  max-height: 7rem;
  overflow: hidden;
}

.network-training-icons {
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  padding: 3rem 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: calc(100% + 4rem);
  position: absolute;
  top: 20rem;
  left: 50%;
  transform: translateX(-50%);
  min-height: 140px;
  height: auto;
  flex-shrink: 0;
  z-index: 100;
  pointer-events: none;
  max-width: calc(100vw - 6rem);
  box-sizing: border-box;
}

.network-training-icons > * {
  pointer-events: auto;
}

.network-training-icons::-webkit-scrollbar {
  display: none;
}

/* Center indicator for active icon alignment */
.network-training-icons::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: transparent;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.network-icon-item {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 90px;
  width: 90px;
  position: relative;
  z-index: 101;
  margin: 0 -0.15rem;
}

.network-icon-item.active {
  margin: 0 0.3rem;
  z-index: 102;
}

/* Distance-based scaling - icons get smaller the further from active */
.network-icon-item:not(.active) {
  --scale: 0.85;
}

.network-icon-item.active ~ .network-icon-item:not(.active),
.network-icon-item:not(.active) ~ .network-icon-item.active ~ .network-icon-item:not(.active) {
  --scale: 0.85;
}

/* First sibling after active */
.network-icon-item.active + .network-icon-item:not(.active),
.network-icon-item:not(.active) + .network-icon-item.active + .network-icon-item:not(.active) {
  --scale: 0.9;
}

/* Second sibling after active */
.network-icon-item.active + .network-icon-item:not(.active) + .network-icon-item:not(.active),
.network-icon-item:not(.active) + .network-icon-item.active + .network-icon-item:not(.active) + .network-icon-item:not(.active) {
  --scale: 0.8;
}

/* Third and beyond siblings after active */
.network-icon-item.active + .network-icon-item:not(.active) + .network-icon-item:not(.active) + .network-icon-item:not(.active) ~ .network-icon-item:not(.active),
.network-icon-item:not(.active) + .network-icon-item.active + .network-icon-item:not(.active) + .network-icon-item:not(.active) + .network-icon-item:not(.active) ~ .network-icon-item:not(.active) {
  --scale: 0.75;
}

/* Icons before active (using data-distance attribute set by JS) */
.network-icon-item[data-distance="1"]:not(.active) {
  --scale: 0.9;
}

.network-icon-item[data-distance="2"]:not(.active) {
  --scale: 0.8;
}

.network-icon-item[data-distance="3"]:not(.active),
.network-icon-item[data-distance="4"]:not(.active),
.network-icon-item[data-distance="5"]:not(.active),
.network-icon-item[data-distance="6"]:not(.active) {
  --scale: 0.75;
}

.network-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(51, 65, 85, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(148, 163, 184, 0.9);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  transform: scale(var(--scale, 1));
}

.network-icon-item:not(.active) .network-icon-circle {
  transform: scale(var(--scale, 0.85));
}

.network-icon-item:hover .network-icon-circle {
  transform: scale(calc(var(--scale, 0.85) * 1.05));
  background-color: rgba(30, 41, 59, 0.9);
}

.network-icon-item.active {
  order: 0;
  margin: 0 0.5rem;
  z-index: 102;
}

.network-icon-item.active .network-icon-circle {
  width: 90px;
  height: 90px;
  background-color: #02783F;
  color: #ffffff;
  box-shadow: 0 0 30px rgba(2, 120, 63, 0.6), 0 0 60px rgba(2, 120, 63, 0.3);
  border-color: #02783F;
  filter: brightness(1);
  position: relative;
  z-index: 102;
  transform: scale(1);
}

.network-icon-item.active .network-icon-circle::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--Secondary, #02783F);
  opacity: 0.3;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.network-icon-circle img {
  width: 20px;
  height: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0) saturate(100%) invert(60%) sepia(10%) saturate(500%) hue-rotate(180deg);
  object-fit: contain;
}

.network-icon-item.active .network-icon-circle img {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
}

/* Right Side - Phone Images */
.network-training-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  width: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
  overflow: visible;
  z-index: 1;
}

.network-training-right::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, #02783F40 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.phone-image {
  position: absolute;
  width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 1;
}

.phone-image-left {
  left: 50%;
  top: 0;
  max-width: 200px;
  transform: translateX(-120%) rotate(-8deg);
  z-index: 1;
}

.phone-image-right {
  left: 50%;
  top: 20px;
  max-width: 280px;
  transform: translateX(-20%) rotate(8deg);
  z-index: 2;
}

/* Responsive Design for Network Training Section */
@media (max-width: 1440px) {
  .network-training-section {
    padding: 10rem 2.5rem 18rem 2.5rem;
  }
  
  .network-training-content {
    gap: 1.5rem;
  }
}

@media (max-width: 1200px) {
  .network-training-section {
    padding: 10rem 2rem 18rem 2rem;
  }
  
  .network-training-content {
    gap: 1rem;
  }
  
  .network-training-title {
    font-size: 2.25rem;
  }
  
  .network-training-description {
    font-size: 1.0625rem;
  }
}

@media (max-width: 1024px) {
  .network-training-section {
    padding: 8rem 2rem 14rem 2rem;
    height: auto;
    min-height: 80vh;
  }
  
  .network-training-container {
    max-width: 100%;
    padding: 0;
  }
  
  .network-training-content {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .network-training-left {
    gap: 1.5rem;
    margin-bottom: 0;
    align-items: center;
    width: 100%;
    overflow: hidden;
  }
  
  .network-training-text-content {
    min-height: 14rem;
    max-height: 14rem;
    gap: 0.25rem;
    align-items: center;
    text-align: center;
  }
  
  .network-training-label {
    justify-content: center;
  }
  
  .network-training-title {
    font-size: 2rem;
    min-height: 3rem;
    max-height: 5rem;
    text-align: center;
  }
  
  .network-training-description {
    font-size: 1rem;
    min-height: 4rem;
    max-height: 6rem;
    text-align: center;
  }
  
  .network-training-icons {
    top: auto;
    gap: 0;
    position: relative;
    margin-top: 2rem;
    margin-bottom: 4rem;
    padding: 2rem 1rem;
    justify-content: center;
    width: 100%;
    left: 0;
    transform: none;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .network-icon-item {
    height: 78px;
    width: 78px;
  }
  
  .network-icon-circle {
    width: 44px;
    height: 44px;
  }
  
  .network-icon-item.active .network-icon-circle {
    width: 78px;
    height: 78px;
    background-color: #02783F80;
    box-shadow: 0 0 25px rgba(2, 120, 63, 0.6), 0 0 50px rgba(2, 120, 63, 0.3);
    filter: brightness(1.3);
  }
  
  .network-icon-circle img {
    width: 18px;
    height: 18px;
  }
  
  .network-icon-item.active .network-icon-circle img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1) brightness(1.2);
  }
  
  .network-training-right {
    min-height: 500px;
    justify-content: center;
    margin-top: 0;
    padding-top: 0;
    left: 0;
    right: 0;
  }
  
  .phone-image-left {
    max-width: 160px;
    left: 50%;
    transform: translateX(-120%) rotate(-8deg);
  }
  
  .phone-image-right {
    max-width: 220px;
    left: 50%;
    transform: translateX(-20%) rotate(8deg);
  }
}

@media (max-width: 900px) {
  .network-training-section {
    padding: 8rem 1.5rem 12rem 1.5rem;
  }
  
  .network-training-text-content {
    min-height: 12rem;
    max-height: 12rem;
  }
  
  .network-training-title {
    font-size: 1.875rem;
  }
  
  .network-training-description {
    font-size: 0.9375rem;
  }
  
  .network-training-icons {
    margin-top: 1.75rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .network-training-section {
    padding: 8rem 1.5rem 12rem 1.5rem;
    height: auto;
    min-height: 70vh;
  }
  
  .network-training-container {
    max-width: 100%;
    padding: 0;
  }
  
  .network-training-content {
    gap: 0;
    text-align: center;
  }
  
  .network-training-left {
    gap: 1rem;
    margin-bottom: 0;
    align-items: center;
    width: 100%;
    overflow: visible;
  }
  
  .network-training-label {
    margin-bottom: 0.75rem;
    justify-content: center;
  }
  
  .network-training-label-line-left,
  .network-training-label-line-right {
    max-width: 100px;
    min-width: 40px;
  }
  
  .network-training-text-content {
    min-height: 10rem;
    max-height: 10rem;
    gap: 0.25rem;
    align-items: center;
    text-align: center;
  }
  
  .network-training-title {
    font-size: 2rem;
    line-height: 1.3;
    margin: 0 0 0.75rem 0;
    min-height: 2rem;
    max-height: 4rem;
    text-align: center;
  }
  
  .network-training-description {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    min-height: 3rem;
    max-height: 5rem;
    text-align: center;
  }
  
  .network-training-icons {
    top: auto;
    position: relative;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    gap: 0.25rem;
    height: auto;
    min-height: 80px;
    padding: 1rem 1.5rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    left: 0;
    transform: none;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
  }
  
  .network-training-icons::-webkit-scrollbar {
    display: none;
  }
  
  .network-icon-item {
    height: 56px;
    width: 56px;
    min-width: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0 0.15rem;
  }
  
  .network-icon-item.active {
    margin: 0 0.4rem;
  }
  
  /* Mobile distance-based scaling */
  .network-icon-item:not(.active) {
    --scale-mobile: 0.85;
  }
  
  .network-icon-item[data-distance="1"]:not(.active) {
    --scale-mobile: 0.9;
  }
  
  .network-icon-item[data-distance="2"]:not(.active) {
    --scale-mobile: 0.8;
  }
  
  .network-icon-item[data-distance="3"]:not(.active),
  .network-icon-item[data-distance="4"]:not(.active),
  .network-icon-item[data-distance="5"]:not(.active),
  .network-icon-item[data-distance="6"]:not(.active) {
    --scale-mobile: 0.75;
  }
  
  .network-icon-circle {
    width: 56px;
    height: 56px;
    transition: all 0.3s ease;
  }
  
  .network-icon-item:not(.active) .network-icon-circle {
    transform: scale(var(--scale-mobile, 0.85));
  }
  
  .network-icon-item.active {
    height: 72px;
    width: 72px;
    min-width: 72px;
  }
  
  .network-icon-item.active .network-icon-circle {
    width: 72px;
    height: 72px;
    background-color: #02783F;
    box-shadow: 0 0 20px rgba(2, 120, 63, 0.6), 0 0 40px rgba(2, 120, 63, 0.3);
    filter: brightness(1);
    transform: scale(1);
  }
  
  .network-icon-circle img {
    width: 18px;
    height: 18px;
  }
  
  .network-icon-item.active .network-icon-circle img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
  }
  
  .network-training-right {
    min-height: 350px;
    margin-top: 0;
    padding-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    right: 0;
  }
  
  .phone-image-left {
    max-width: 140px;
    left: 50%;
    transform: translateX(-120%) rotate(-6deg);
  }
  
  .phone-image-right {
    max-width: 180px;
    left: 50%;
    transform: translateX(-20%) rotate(6deg);
  }
}

@media (max-width: 600px) {
  .network-training-section {
    padding: 9rem 1.25rem 10rem 1.25rem;
  }
  
  .network-training-text-content {
    min-height: 9.5rem;
    max-height: 9.5rem;
  }
  
  .network-training-title {
    font-size: 1.75rem;
  }
  
  .network-training-description {
    font-size: 1rem;
  }
  
  .phone-image-left {
    max-width: 120px;
    left: 50%;
    transform: translateX(-120%) rotate(-6deg);
  }
  
  .phone-image-right {
    max-width: 160px;
    left: 50%;
    transform: translateX(-20%) rotate(6deg);
  }
}

@media (max-width: 480px) {
  .features-title {
    font-size: 1.5rem;
  }
  
  .network-training-section {
    padding: 7rem 0.75rem 8rem 0.75rem;
    min-height: auto;
    height: auto;
  }
  
  .network-training-container {
    max-width: 100%;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  
  .network-training-content {
    gap: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }
  
  .network-training-left {
    align-items: center;
    gap: 1.5rem;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  
  .network-training-label {
    margin-bottom: 1rem;
    justify-content: center;
    width: 100%;
  }
  
  .network-training-label-line-left,
  .network-training-label-line-right {
    max-width: 60px;
    min-width: 20px;
  }
  
  .network-training-text-content {
    min-height: auto;
    max-height: none;
    gap: 0.75rem;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0;
  }
  
  .network-training-title {
    font-size: 1.5rem;
    line-height: 1.3;
    min-height: auto;
    max-height: none;
    text-align: center; 
    margin: 0 0 0.5rem 0;
    padding: 0 0.5rem;
  }
  
  .network-training-description {
    font-size: 0.875rem;
    line-height: 1.5;
    min-height: auto;
    max-height: none;
    text-align: center;
    margin: 0;
    padding: 0 0.5rem;
  }
  
  .network-training-icons {
    position: relative;
    top: auto;
    left: 0;
    transform: none;
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 70px;
    display: flex;
    gap: 0.2rem;
    justify-content: center;
    align-items: center;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-sizing: border-box;
  }
  
  .network-training-icons::-webkit-scrollbar {
    display: none;
  }
  
  .network-icon-item {
    height: 48px;
    width: 48px;
    min-width: 48px;
    flex-shrink: 0;
    margin: 0 0.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .network-icon-item.active {
    margin: 0 0.3rem;
  }
  
  /* Small mobile distance-based scaling */
  .network-icon-item:not(.active) {
    --scale-small: 0.85;
  }
  
  .network-icon-item[data-distance="1"]:not(.active) {
    --scale-small: 0.9;
  }
  
  .network-icon-item[data-distance="2"]:not(.active) {
    --scale-small: 0.8;
  }
  
  .network-icon-item[data-distance="3"]:not(.active),
  .network-icon-item[data-distance="4"]:not(.active),
  .network-icon-item[data-distance="5"]:not(.active),
  .network-icon-item[data-distance="6"]:not(.active) {
    --scale-small: 0.75;
  }
  
  .network-icon-circle {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .network-icon-item:not(.active) .network-icon-circle {
    transform: scale(var(--scale-small, 0.85));
  }
  
  .network-icon-item.active {
    height: 64px;
    width: 64px;
    min-width: 64px;
  }
  
  .network-icon-item.active .network-icon-circle {
    width: 64px;
    height: 64px;
    background-color: #02783F;
    box-shadow: 0 0 18px rgba(2, 120, 63, 0.6), 0 0 36px rgba(2, 120, 63, 0.3);
    filter: brightness(1);
    transform: scale(1);
  }
  
  .network-icon-item.active .network-icon-circle::after {
    inset: -3px;
  }
  
  .network-icon-circle img {
    width: 16px;
    height: 16px;
  }
  
  .network-icon-item.active .network-icon-circle img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
  }
  
  .network-training-right {
    margin-top: 2rem;
    padding-top: 0;
    min-height: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
  }
  
  .phone-image-left {
    max-width: 110px;
    left: 50%;
    transform: translateX(-120%) rotate(-6deg);
  }
  
  .phone-image-right {
    max-width: 140px;
    left: 50%;
    transform: translateX(-20%) rotate(6deg);
  }
}

@media (max-width: 360px) {
  .network-training-section {
    padding: 5rem 0.5rem 7rem 0.5rem;
  }
  
  .network-training-label-line-left,
  .network-training-label-line-right {
    max-width: 40px;
    min-width: 15px;
  }
  
  .network-training-title {
    font-size: 1.25rem;
    padding: 0 0.25rem;
  }
  
  .network-training-description {
    font-size: 0.8125rem;
    padding: 0 0.25rem;
  }
  
  .network-training-icons {
    padding: 0.75rem 1rem;
    gap: 0.2rem;
    min-height: 60px;
    justify-content: center;
    left: 0;
    transform: none;
  }
  
  .network-icon-item {
    height: 40px;
    width: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0 0.1rem;
  }
  
  .network-icon-item.active {
    margin: 0 0.25rem;
  }
  
  /* Very small mobile distance-based scaling */
  .network-icon-item:not(.active) {
    --scale-xsmall: 0.85;
  }
  
  .network-icon-item[data-distance="1"]:not(.active) {
    --scale-xsmall: 0.9;
  }
  
  .network-icon-item[data-distance="2"]:not(.active) {
    --scale-xsmall: 0.8;
  }
  
  .network-icon-item[data-distance="3"]:not(.active),
  .network-icon-item[data-distance="4"]:not(.active),
  .network-icon-item[data-distance="5"]:not(.active),
  .network-icon-item[data-distance="6"]:not(.active) {
    --scale-xsmall: 0.75;
  }
  
  .network-icon-circle {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
  }
  
  .network-icon-item:not(.active) .network-icon-circle {
    transform: scale(var(--scale-xsmall, 0.85));
  }
  
  .network-icon-item.active {
    height: 56px;
    width: 56px;
    min-width: 56px;
  }
  
  .network-icon-item.active .network-icon-circle {
    width: 56px;
    height: 56px;
    box-shadow: 0 0 15px rgba(2, 120, 63, 0.6), 0 0 30px rgba(2, 120, 63, 0.3);
    transform: scale(1);
  }
  
  .network-icon-circle img {
    width: 14px;
    height: 14px;
  }
  
  .network-icon-item.active .network-icon-circle img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1) brightness(1.2);
  }
  
  .phone-image-left {
    max-width: 90px;
    left: 50%;
    transform: translateX(-120%) rotate(-6deg);
  }
  
  .phone-image-right {
    max-width: 120px;
    left: 50%;
    transform: translateX(-20%) rotate(6deg);
  }
}

/* Footer Styles */
.site-footer {
  background-color: var(--Slate-950, #020617);
  color: #ffffff;
  padding: 4rem 2rem 2rem 2rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(2, 120, 63, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 2rem;
  box-sizing: border-box;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
  justify-items: center;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.footer-column-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  width: 100%;
}

.footer-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-logo {
  text-align: center;
  margin: 3rem 0 4rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo-image {
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  box-sizing: border-box;
}

.footer-copyright {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.footer-copyright p {
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-link:hover {
  color: #ffffff;
}

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
  }
  
  .footer-column {
    align-items: center;
    text-align: center;
  }
  
  .footer-logo-image {
    height: 60px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 1.5rem 1.5rem 1.5rem;
  }
  
  .footer-container {
    padding: 0;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    justify-items: flex-start;
  }
  
  .footer-column {
    align-items: flex-start;
    text-align: left;
  }
  
  .footer-logo {
    margin: 2rem 0 3rem 0;
  }
  
  .footer-logo-image {
    height: 50px;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
  }
  
  .footer-copyright {
    text-align: left;
    width: 100%;
  }
  
  .footer-legal {
    flex-direction: row;
    gap: 1rem;
    justify-content: flex-start;
    width: 100%;
  }
  
  .footer-legal-link {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    justify-items: flex-start;
  }
  
  .footer-column {
    align-items: flex-start;
    text-align: left;
  }
  
  .footer-column-title {
    font-size: 0.9375rem;
    text-align: left;
  }
  
  .footer-link-list {
    align-items: flex-start;
  }
  
  .footer-logo-image {
    height: 40px;
  }
  
  .footer-link {
    font-size: 0.875rem;
  }
  
  .footer-legal-link {
    font-size: 0.75rem;
  }
  
  .footer-copyright {
    font-size: 0.75rem;
  }
}

/* HTML Badge */
.html-badge {
  display: inline-block;
  background-color: #dc2626;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.5rem;
  font-weight: 600;
  padding: 0.1rem 0.25rem;
  border-radius: 3px;
  margin-left: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.2;
  vertical-align: middle;
  white-space: nowrap;
}

/* Mobile responsive for badges */
@media (max-width: 768px) {
  .html-badge {
    font-size: 0.4375rem;
    padding: 0.075rem 0.2rem;
    margin-left: 0.25rem;
  }
}