@charset "UTF-8";
/* Main SCSS for MazzZen Enterprise */
/* Base Styles and Resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

body {
  line-height: 1.5;
  color: #1a1a1a;
  background-color: #fff;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

.hidden {
  display: none !important;
}

.no-scroll {
  overflow: hidden !important;
  height: 100vh;
}

.icon-sm {
  font-size: 0.75rem;
}

.icon-md {
  font-size: 1rem;
}

.icon-lg {
  font-size: 1.5rem;
}

.rotated {
  transform: rotate(180deg);
}

.mt-1 {
  margin-top: 0.25rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

/* SCSS Variables */
/* Mobile Top Bar */
.mobile-top-bar {
  display: none;
}
@media (max-width: 768px) {
  .mobile-top-bar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1002;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }
  .mobile-top-bar .mobile-logo-container {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.25rem;
    border-bottom: 1px solid #f3f4f6;
    width: 100%;
    box-sizing: border-box;
  }
  .mobile-top-bar .mobile-logo-container .mobile-enterprise-logo {
    height: 30px;
    max-width: 200px;
    object-fit: contain;
  }
  .mobile-top-bar .integrated-banner {
    background-color: #f1f8ff;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #1a1a1a;
    width: 100%;
    box-sizing: border-box;
    gap: 10px;
  }
  .mobile-top-bar .integrated-banner .banner-text {
    flex: 1;
    text-align: center;
    line-height: 1.4;
    white-space: normal;
    word-break: break-word;
  }
  .mobile-top-bar .integrated-banner .banner-text .banner-link {
    color: #0066cc;
    font-weight: 700;
    margin-left: 0.5rem;
    display: inline-block;
  }
  .mobile-top-bar .integrated-banner .close-banner {
    background: none;
    border: none;
    color: #4b5563;
    padding: 4px;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 0.9rem;
  }
}

/* Announcement Banner */
.announcement-banner {
  background-color: #f1f8ff;
  padding: 0.75rem 0;
  border-bottom: 1px solid #d0e7ff;
  z-index: 1001;
  position: relative;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .announcement-banner {
    display: none !important;
  }
}
.announcement-banner.hidden {
  display: none;
}
.announcement-banner .banner-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.announcement-banner .banner-text {
  font-size: 0.875rem;
  color: #1a1a1a;
  text-align: center;
  padding-right: 2rem;
}
.announcement-banner .banner-text .banner-link {
  color: #0066cc;
  font-weight: 600;
  margin-left: 0.5rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.announcement-banner .banner-text .banner-link:hover {
  border-color: #0066cc;
}
.announcement-banner .close-button {
  position: absolute;
  right: 2rem;
  color: #4b5563;
  padding: 0.25rem;
  cursor: pointer;
}
.announcement-banner .close-button:hover {
  color: #1a1a1a;
}

/* Main Navbar */
.main-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  z-index: 1000;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .main-navbar {
    display: none !important;
  }
}
.main-navbar {
  height: 80px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.main-navbar.with-banner {
  top: 40px;
}
.main-navbar.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 70px;
  top: 0 !important;
}
.main-navbar.hidden {
  transform: translateY(-100%);
}
.main-navbar .nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-navbar .nav-left {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.main-navbar .MazzZen-logo {
  height: 32px;
  width: auto;
}
.main-navbar .nav-links {
  display: flex;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .main-navbar .nav-links {
    display: none;
  }
}
.main-navbar .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  cursor: pointer;
  transition: color 0.2s;
}
.main-navbar .nav-link:hover, .main-navbar .nav-link.active {
  color: #0066cc;
}
.main-navbar .nav-link .fas {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}
.main-navbar .nav-link .fas.rotated {
  transform: rotate(180deg);
}
.main-navbar .nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .main-navbar .nav-right {
    display: none;
  }
}
.main-navbar .icon-button {
  color: #4b5563;
  font-size: 1.125rem;
  padding: 0.5rem;
  transition: color 0.2s;
}
.main-navbar .icon-button:hover {
  color: #0066cc;
}
.main-navbar .contact-button {
  background-color: #e00505;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.main-navbar .contact-button:hover {
  background-color: #c00404;
}

/* Dropdown Menu */
.dropdown-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background-color: #fff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  /* Softer shadow */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  /* Smoother transition */
  z-index: 999;
}
.dropdown-menu.with-banner {
  top: 120px !important;
}
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu.show.with-banner {
  top: 120px !important;
}
@media (min-width: 769px) {
  .dropdown-menu.show {
    top: 80px;
  }
  .dropdown-menu.show.with-banner {
    top: 120px !important;
  }
  .dropdown-menu.scrolled {
    top: 70px !important;
  }
}
.dropdown-menu.boxy {
  transform: translateY(-15px);
  width: auto;
  min-width: 320px;
  max-width: 95vw;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  padding: 0.5rem;
  left: auto;
  right: auto;
}
.dropdown-menu.boxy.show {
  transform: translateY(0);
}
.dropdown-menu.boxy.customers-dropdown {
  left: 40%;
  transform: translateX(-50%) translateY(-15px);
}
.dropdown-menu.boxy.customers-dropdown.show {
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu.boxy.partners-dropdown {
  left: 52%;
  transform: translateX(-50%) translateY(-15px);
}
.dropdown-menu.boxy.partners-dropdown.show {
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu.boxy.resources-dropdown {
  left: 62%;
  transform: translateX(-50%) translateY(-15px);
}
.dropdown-menu.boxy.resources-dropdown.show {
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu.boxy .dropdown-container {
  max-width: none;
  margin: 0;
  padding: 0;
}
.dropdown-menu.boxy .close-dropdown {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: 0;
  z-index: 10;
}
.dropdown-menu .dropdown-container {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  /* Ensure full height */
}
.dropdown-menu .dropdown-tabs {
  padding: 0 2rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  height: 60px;
  /* Fixed height for tabs */
}
.dropdown-menu .tab-button {
  font-size: 0.9375rem;
  /* Slightly larger */
  font-weight: 600;
  color: #4b5563;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: color 0.2s;
}
.dropdown-menu .tab-button:hover {
  color: #1a1a1a;
}
.dropdown-menu .tab-button.active {
  color: #0066cc;
}
.dropdown-menu .tab-button.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  /* Align perfectly with border */
  left: 0;
  right: 0;
  height: 3px;
  background-color: #0066cc;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.dropdown-menu .explore-link {
  margin-left: auto;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0066cc;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.dropdown-menu .explore-link:hover {
  background-color: #f0f7ff;
}
.dropdown-menu .close-dropdown {
  margin-left: 1.5rem;
  color: #9ca3af;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.2s;
}
.dropdown-menu .close-dropdown:hover {
  color: #1a1a1a;
  background-color: #f3f4f6;
}
.dropdown-menu .dropdown-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  /* Fixed sidebar width */
  height: 520px;
  /* Specific height for consistency */
}
.dropdown-menu .sidebar {
  background-color: #fff;
  padding: 1.5rem;
  border-right: 1px solid #e5e7eb;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.dropdown-menu .search-container {
  position: relative;
  margin-bottom: 1.5rem;
}
.dropdown-menu .search-container .search-input {
  width: 100%;
  padding: 0.625rem 1rem 0.625rem 2.25rem;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  /* Sharper corners */
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.dropdown-menu .search-container .search-input:focus {
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}
.dropdown-menu .search-container .search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 0.875rem;
}
.dropdown-menu .sidebar-items {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.dropdown-menu .sidebar-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  color: #4b5563;
  transition: all 0.2s;
  cursor: pointer;
}
.dropdown-menu .sidebar-item:hover, .dropdown-menu .sidebar-item.active {
  background-color: #fff;
  color: #0066cc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  /* Subtle lift */
  font-weight: 500;
}
.dropdown-menu .sidebar-item .fas {
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-5px);
}
.dropdown-menu .sidebar-item .fas.visible {
  opacity: 1;
  transform: translateX(0);
}
.dropdown-menu .sidebar-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}
.dropdown-menu .sidebar-footer .explore-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0066cc;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  background: #fff;
  transition: all 0.2s;
}
.dropdown-menu .sidebar-footer .explore-button:hover {
  border-color: #0066cc;
  background-color: #f0f7ff;
}
.dropdown-menu .main-content {
  padding: 2.5rem 3rem;
  overflow-y: auto;
  background-color: #fff;
}
.dropdown-menu .main-content .content-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #1a1a1a;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f3f4f6;
}
.dropdown-menu .products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 columns generally works well */
  gap: 2rem 3rem;
  /* Row gap, Column gap */
}
.dropdown-menu .product-item {
  display: flex;
  gap: 1rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background-color 0.2s;
}
.dropdown-menu .product-item:hover {
  background-color: #f9fafb;
}
.dropdown-menu .product-item:hover .product-name {
  color: #0066cc;
}
.dropdown-menu .product-item:hover .product-icon {
  transform: scale(1.1);
}
.dropdown-menu .product-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: #0066cc;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eff6ff;
  border-radius: 6px;
  transition: transform 0.2s;
}
.dropdown-menu .product-info {
  flex: 1;
}
.dropdown-menu .product-name {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #1f2937;
  transition: color 0.2s;
}
.dropdown-menu .product-desc {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.4;
}
.dropdown-menu .related-section {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f3f4f6;
}
.dropdown-menu .related-section .related-text {
  font-size: 0.875rem;
  color: #4b5563;
}
.dropdown-menu .related-section .related-link {
  color: #0066cc;
  font-weight: 600;
  margin-left: 0.25rem;
}
.dropdown-menu .related-section .related-link:hover {
  text-decoration: underline;
}
.dropdown-menu {
  /* Suites StyLing */
}
.dropdown-menu .suites-container {
  padding: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.dropdown-menu .suites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.dropdown-menu .suite-card {
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.dropdown-menu .suite-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.dropdown-menu .suite-card .suite-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.dropdown-menu .suite-card .suite-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.dropdown-menu .suite-card .suite-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.dropdown-menu .suite-card .suite-description {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.5;
}
.dropdown-menu .suite-card .suite-btn {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}
.dropdown-menu .suite-card .suite-btn:hover {
  gap: 0.75rem;
  color: #0066cc;
}
.dropdown-menu {
  /* MazzZen One & Marketplace */
}
.dropdown-menu .MazzZen-one-container,
.dropdown-menu .marketplace-container {
  display: flex;
  height: 500px;
}
.dropdown-menu .MazzZen-one-content,
.dropdown-menu .marketplace-content {
  flex: 1;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dropdown-menu .MazzZen-one-visual,
.dropdown-menu .marketplace-visual {
  flex: 1;
  background-color: #f8f9fb;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dropdown-menu .MazzZen-one-visual img,
.dropdown-menu .marketplace-visual img {
  max-width: 80%;
  height: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.dropdown-menu .MazzZen-one-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #1a1a1a;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  align-self: flex-start;
  margin-bottom: 2rem;
}
.dropdown-menu .MazzZen-one-badge .MazzZen-one-icon {
  width: 24px;
  height: 24px;
}
.dropdown-menu .MazzZen-one-badge .MazzZen-one-badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
}
.dropdown-menu .MazzZen-one-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.dropdown-menu .MazzZen-one-subtitle {
  font-size: 1.5rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}
.dropdown-menu .MazzZen-one-description {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.6;
}
.dropdown-menu .marketplace-header {
  margin-bottom: 2rem;
}
.dropdown-menu .marketplace-header img {
  height: 40px;
}
.dropdown-menu .marketplace-description {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.6;
}
.dropdown-menu .MazzZen-one-btn,
.dropdown-menu .marketplace-btn {
  background-color: #e00505;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.dropdown-menu .MazzZen-one-btn:hover,
.dropdown-menu .marketplace-btn:hover {
  background-color: #c00404;
}
.dropdown-menu {
  /* Custom Dropdown Content Styles */
}
.dropdown-menu .simple-dropdown-content {
  padding: 1.5rem 2rem;
  min-width: 280px;
}
.dropdown-menu .simple-dropdown-content .simple-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.dropdown-menu .simple-dropdown-content .simple-list li a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #4b5563;
  padding: 0.5rem;
  border-radius: 6px;
  display: block;
  transition: all 0.2s;
}
.dropdown-menu .simple-dropdown-content .simple-list li a:hover {
  color: #0066cc;
  background-color: #f0f7ff;
  padding-left: 0.75rem;
}
.dropdown-menu .partners-dropdown-content {
  display: flex;
  padding: 2.5rem;
  gap: 2.5rem;
  width: 800px;
}
.dropdown-menu .partners-dropdown-content .partner-card {
  flex: 1;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: 12px;
  transition: all 0.2s;
}
.dropdown-menu .partners-dropdown-content .partner-card:hover {
  background-color: #f9fafb;
  transform: translateY(-2px);
}
.dropdown-menu .partners-dropdown-content .partner-icon-box {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.dropdown-menu .partners-dropdown-content .partner-info p {
  font-size: 0.9375rem;
  color: #4b5563;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.dropdown-menu .partners-dropdown-content .partner-info .partner-link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0066cc;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dropdown-menu .partners-dropdown-content .partner-info .partner-link i {
  font-size: 0.75rem;
}
.dropdown-menu .resources-dropdown-content {
  display: flex;
  padding: 2.5rem;
  gap: 4rem;
  width: 750px;
}
.dropdown-menu .resources-dropdown-content .resource-column h3 {
  font-size: 0.75rem;
  font-weight: 700;
  color: #888;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.dropdown-menu .resources-dropdown-content .resource-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.dropdown-menu .resources-dropdown-content .resource-column ul li a {
  font-size: 0.95rem;
  color: #4b5563;
  display: block;
  padding: 0.25rem 0;
  transition: all 0.2s;
}
.dropdown-menu .resources-dropdown-content .resource-column ul li a:hover {
  color: #0066cc;
  transform: translateX(4px);
}
.dropdown-menu .divider-v {
  width: 1px;
  background-color: #e5e7eb;
}

/* Enterprise Navbar */
.enterprise-navbar {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  height: 60px;
  background-color: transparent;
  border-bottom: 1px solid rgba(229, 231, 235, 0.3);
  z-index: 998;
  transition: background 0.4s ease, top 0.3s ease;
}
@media (max-width: 768px) {
  .enterprise-navbar {
    display: none !important;
  }
}
.enterprise-navbar.top-position {
  top: 0 !important;
}
.enterprise-navbar.with-banner {
  top: 120px;
}
.enterprise-navbar.scrolled {
  background-color: #fff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  top: 0 !important;
}
.enterprise-navbar.hidden {
  display: none;
}
@media (max-width: 768px) {
  .enterprise-navbar {
    background-color: #fff;
    border-bottom: 1px solid #e5e7eb;
    height: 60px;
    top: 0 !important;
  }
  .enterprise-navbar.with-banner {
    top: 40px !important;
  }
  .enterprise-navbar .nav-container {
    padding: 0 1rem;
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .enterprise-navbar .brand-section {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .enterprise-navbar .nav-menu {
    display: none !important;
  }
}
.enterprise-navbar .nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.enterprise-navbar .brand-logo img {
  height: 24px;
}
.enterprise-navbar .nav-menu {
  display: flex;
  gap: 2rem;
}
.enterprise-navbar .nav-item {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  transition: color 0.2s;
}
.enterprise-navbar .nav-item:hover {
  color: #1a1a1a;
}

/* Mobile Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  z-index: 1002;
}
@media (max-width: 1024px) {
  .hamburger-menu {
    display: flex;
  }
}
.hamburger-menu .hamburger-line {
  width: 24px;
  height: 2px;
  background-color: #1a1a1a;
  transition: all 0.3s ease;
}
.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 85%;
  max-width: 400px;
  background-color: #fff;
  z-index: 2011;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
}
.active .mobile-menu-container {
  transform: translateX(0);
}

.mobile-navigation {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0 100px 0;
  -webkit-overflow-scrolling: touch;
}

.mobile-header {
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  height: 60px;
  box-sizing: border-box;
}
.mobile-header img {
  height: 24px;
}
.mobile-header .mobile-close-btn {
  font-size: 1.5rem;
  color: #4b5563;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-navigation {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-item,
.mobile-nav-link {
  border-bottom: 1px solid #f3f4f6;
}

.mobile-nav-btn,
.mobile-nav-link {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-nav-btn .fas,
.mobile-nav-link .fas {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}
.mobile-nav-btn .fas.rotated,
.mobile-nav-link .fas.rotated {
  transform: rotate(180deg);
}

.mobile-dropdown {
  background-color: #f9fafb;
  /* Remove high max-height and fixed logic, use Alpine x-show */
}

.mobile-nav-section {
  padding: 1.5rem;
  border-bottom: 1px solid #f3f4f6;
}
.mobile-nav-section .section-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.mobile-nav-section .section-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-nav-section .section-list li a {
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  display: block;
}

.mobile-section-link {
  display: block;
  padding: 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  border-bottom: 1px solid #f3f4f6;
}

.mobile-resource-sec {
  padding: 1rem 1.5rem;
}

.mobile-resource-sec h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.mobile-resource-sec ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.mobile-resource-sec ul li a {
  font-size: 0.9375rem;
  color: #4b5563;
}

.mobile-footer {
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  border-top: 1px solid #e5e7eb;
}
.mobile-footer .mobile-contact-btn {
  flex: 1;
  background-color: #e00505;
  color: #fff;
  padding: 1rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  transition: background-color 0.2s;
}
.mobile-footer .mobile-contact-btn:hover {
  background-color: #c00404;
}
.mobile-footer .mobile-search-btn {
  display: none;
}

/* Mobile Nav Top Links */
.mobile-nav-top-links {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.mobile-nav-top-links .mobile-search-mock {
  position: relative;
  margin-bottom: 1.5rem;
}
.mobile-nav-top-links .mobile-search-mock input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.9375rem;
  background: #fff;
}
.mobile-nav-top-links .mobile-search-mock i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}
.mobile-nav-top-links .mobile-quick-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-nav-top-links .mobile-quick-links .quick-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: #1a1a1a;
}
.mobile-nav-top-links .mobile-quick-links .quick-link.sign-in {
  color: #e00505;
  font-weight: 600;
}

/* Mobile Bottom Navbar */
.mobile-bottom-nav {
  display: none;
}
@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    background-color: #fff;
    z-index: 2010;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
    padding-bottom: env(safe-area-inset-bottom);
    width: 100%;
    box-sizing: border-box;
  }
  .mobile-bottom-nav .bottom-nav-container {
    display: flex;
    height: 100%;
  }
  .mobile-bottom-nav .hamburger-box {
    width: 70px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    padding: 0;
    outline: none;
  }
  .mobile-bottom-nav .hamburger-box .hamburger-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .mobile-bottom-nav .hamburger-box .hamburger-lines .line {
    width: 24px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
  }
  .mobile-bottom-nav .hamburger-box.active .line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-bottom-nav .hamburger-box.active .line:nth-child(2) {
    opacity: 0;
  }
  .mobile-bottom-nav .hamburger-box.active .line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .mobile-bottom-nav .contact-box {
    flex: 1;
    background-color: #fff;
    color: #ff3d3d;
    font-weight: 700;
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    outline: none;
    padding: 0 1rem;
    margin: 0;
    height: 100%;
    text-align: center;
    border-left: 1px solid #eee;
  }
  .mobile-bottom-nav.scrolled .contact-box {
    background-color: #e00505;
    color: #fff;
  }
}

/* All Products Mobile View */
.mobile-all-products {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 2005;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-all-products .tabs-scroll-container {
  position: sticky;
  top: 60px;
  z-index: 11;
  background: #fff;
  overflow: hidden;
  border-bottom: 1px solid #e5e7eb;
  min-height: 48px;
}
.mobile-all-products .tabs-scroll-container::before, .mobile-all-products .tabs-scroll-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}
.mobile-all-products .tabs-scroll-container::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}
.mobile-all-products .tabs-scroll-container::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}
.mobile-all-products .mobile-products-tabs {
  display: flex;
  overflow-x: auto;
  padding: 0 1rem;
  background: #fff;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.mobile-all-products .mobile-products-tabs::-webkit-scrollbar {
  display: none;
}
.mobile-all-products .mobile-products-tabs .prod-tab-btn {
  padding: 1rem 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #4b5563;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.mobile-all-products .mobile-products-tabs .prod-tab-btn.active {
  color: #0066cc;
  border-bottom-color: #0066cc;
}
.mobile-all-products .mobile-products-header {
  position: sticky;
  top: 0;
  z-index: 12;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.25rem;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
  flex-shrink: 0;
  box-sizing: border-box;
}
.mobile-all-products .mobile-products-header .back-btn {
  font-size: 1.25rem;
  color: #4b5563;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.mobile-all-products .mobile-products-header .header-logo {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.mobile-all-products .mobile-products-header .header-logo img {
  height: 28px;
}
.mobile-all-products .mobile-products-header .spacer {
  width: 40px;
}
.mobile-all-products .mobile-products-search {
  padding: 1.25rem;
  background: #f9fafb;
}
.mobile-all-products .mobile-products-search .search-box {
  position: relative;
}
.mobile-all-products .mobile-products-search .search-box input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.9375rem;
  background: #fff;
}
.mobile-all-products .mobile-products-search .search-box i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}
.mobile-all-products .mobile-suite-card {
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #eee;
  margin-bottom: 1.5rem;
}
.mobile-all-products .mobile-suite-card .suite-header {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.mobile-all-products .mobile-suite-card .suite-header .suite-logo {
  width: 40px;
  height: 40px;
}
.mobile-all-products .mobile-suite-card .suite-header h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.mobile-all-products .mobile-suite-card .suite-header p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.4;
}
.mobile-all-products .mobile-suite-card .suite-link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0066cc;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
}
.mobile-all-products .mobile-products-content {
  padding: 1.5rem 1.5rem 120px 1.5rem;
  flex: 1;
}
.mobile-all-products .mobile-products-content .apps-container .category-section {
  margin-bottom: 2.5rem;
}
.mobile-all-products .mobile-products-content .apps-container .category-section h3 {
  font-size: 0.75rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.mobile-all-products .mobile-products-content .apps-container .products-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.mobile-all-products .mobile-products-content .apps-container .product-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.mobile-all-products .mobile-products-content .apps-container .product-card .product-icon {
  width: 44px;
  height: 44px;
  background: #f3f4f6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066cc;
  font-size: 1.25rem;
}
.mobile-all-products .mobile-products-content .apps-container .product-card .product-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
  color: #1a1a1a;
}
.mobile-all-products .mobile-products-content .apps-container .product-card .product-info p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.4;
  margin: 0;
}
.mobile-all-products .mobile-products-content .suites-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.mobile-all-products .mobile-products-content .mobile-MazzZen-one,
.mobile-all-products .mobile-products-content .mobile-marketplace {
  padding: 1rem 0;
  text-align: center;
}
.mobile-all-products .mobile-products-content .mobile-MazzZen-one h2,
.mobile-all-products .mobile-products-content .mobile-marketplace h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.mobile-all-products .mobile-products-content .mobile-MazzZen-one .one-badge,
.mobile-all-products .mobile-products-content .mobile-marketplace .one-badge {
  background: #000;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}
.mobile-all-products .mobile-products-content .mobile-MazzZen-one .mp-logo,
.mobile-all-products .mobile-products-content .mobile-marketplace .mp-logo {
  width: 150px;
  margin-bottom: 1rem;
}
.mobile-all-products .mobile-products-content .mobile-MazzZen-one .one-visual,
.mobile-all-products .mobile-products-content .mobile-MazzZen-one .mp-visual,
.mobile-all-products .mobile-products-content .mobile-marketplace .one-visual,
.mobile-all-products .mobile-products-content .mobile-marketplace .mp-visual {
  margin: 2rem 0;
}
.mobile-all-products .mobile-products-content .mobile-MazzZen-one .one-visual img,
.mobile-all-products .mobile-products-content .mobile-MazzZen-one .mp-visual img,
.mobile-all-products .mobile-products-content .mobile-marketplace .one-visual img,
.mobile-all-products .mobile-products-content .mobile-marketplace .mp-visual img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.mobile-all-products .mobile-products-content .mobile-MazzZen-one .one-btn,
.mobile-all-products .mobile-products-content .mobile-MazzZen-one .mp-btn,
.mobile-all-products .mobile-products-content .mobile-marketplace .one-btn,
.mobile-all-products .mobile-products-content .mobile-marketplace .mp-btn {
  background: #e00505;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  border: none;
  width: 100%;
}

[x-transition\:enter=slide-up] {
  animation: slideUp 0.3s ease forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
/* Hero Section */
.hero-container {
  padding-top: 180px;
  background-color: #f8f9fb;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .hero-container {
    padding-top: 140px;
  }
}
@media (max-width: 768px) {
  .hero-container {
    padding-top: 120px;
  }
}

.hero-section {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content {
  padding: 0 2rem;
  max-width: 900px;
}
@media (max-width: 768px) {
  .hero-content {
    padding: 0 1.25rem;
  }
}

.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
  }
}

.title-divider {
  width: 80px;
  height: 2px;
  background-color: #e00505;
  margin: 0 auto 2rem;
}

.hero-description {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.cta-button {
  background-color: #e00505;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 auto;
  transition: background-color 0.2s;
}
.cta-button:hover {
  background-color: #c00404;
}

.illustration-section {
  width: 100%;
  margin-top: 4rem;
}
.illustration-section .hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
}

/* Trusted by and Gartner Sections */
.enterprise-section {
  position: relative;
  background-color: #fff;
}

.top-band {
  background-color: #0b5ea8;
  padding: 80px 0 140px;
  color: #fff;
}
.top-band .top-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .top-band .top-inner {
    padding: 0 1.25rem;
  }
}
.top-band .trusted {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
.top-band .logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .top-band .logos {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 2.5rem;
    padding: 15px 0;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .top-band .logos::-webkit-scrollbar {
    display: none;
  }
  .top-band .logos .logo-item {
    flex: 0 0 calc(33.33% - 1.5rem);
    display: flex;
    justify-content: center;
  }
  .top-band .logos .logo-item img {
    height: 20px;
  }
}
.top-band .logos .logo-item img {
  height: 32px;
  width: auto;
  opacity: 0.9;
  object-fit: contain;
}

.card-wrap {
  max-width: 1200px;
  margin: -60px auto 0;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}
.card-wrap .card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 3rem;
}
@media (max-width: 768px) {
  .card-wrap .card {
    padding: 1.5rem;
  }
}

.gartner-pill {
  background-color: #f1f8ff;
  border-radius: 100px;
  padding: 2.5rem 3.5rem;
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .gartner-pill {
    flex-direction: column;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
  }
}

.gartner-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .gartner-left {
    flex-direction: column;
  }
}
.gartner-left .gartner-badge img {
  height: 48px;
}
.gartner-left .gartner-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
}
.gartner-left .gartner-sub {
  font-size: 0.875rem;
  color: #4b5563;
  max-width: 200px;
}

.gartner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #4b5563;
}
@media (max-width: 768px) {
  .gartner-grid {
    grid-template-columns: 1fr;
  }
}
.gartner-grid .g-item {
  position: relative;
  padding-left: 1.5rem;
}
.gartner-grid .g-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0066cc;
  font-weight: 700;
}

.lower-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .lower-row {
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .lower-row .left-leaf {
    display: none;
  }
}

.award-list {
  display: flex;
  gap: 2.5rem;
  flex: 1;
}
@media (max-width: 768px) {
  .award-list {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.award {
  flex: 1;
  text-align: left;
}
.award .logo-box {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.award .logo-box img {
  max-width: 80%;
  max-height: 80%;
}
.award .logo-box.pastel-pink {
  background-color: #fff1f2;
}
.award .logo-box.pastel-blue {
  background-color: #eff6ff;
}
.award .logo-box.pastel-white {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
}
.award .logo-box.pastel-lightblue {
  background-color: #ecfeff;
}
.award p {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #4b5563;
}

/* Security Section */
.security-wrapper {
  padding: 50px 0 100px;
  background-color: #fff;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .security-wrapper {
    padding: 100px 0;
  }
}

.security-box {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .security-box {
    flex-direction: column;
    min-height: auto;
    padding: 0 1.25rem;
    text-align: center;
    align-items: center;
  }
}

.center-content {
  text-align: center;
  max-width: 500px;
  z-index: 2;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.center-content h1 {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.center-content p {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 2rem;
}
.center-content .learn-btn {
  color: #0066cc;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto;
  font-size: 0.875rem;
}
.center-content .learn-btn:hover {
  text-decoration: underline;
}

.icon-ring {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .icon-ring {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    pointer-events: auto;
  }
}
.icon-ring .item {
  position: absolute;
  width: 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}
@media (max-width: 1024px) {
  .icon-ring .item {
    position: relative;
    width: auto;
    top: auto !important;
    left: auto !important;
    right: auto !important;
  }
}
.icon-ring .item:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.icon-ring .item:nth-child(2) {
  top: 5%;
  right: 15%;
  animation-delay: 0.5s;
}
.icon-ring .item:nth-child(3) {
  top: 40%;
  left: 0%;
  animation-delay: 1s;
}
.icon-ring .item:nth-child(4) {
  top: 45%;
  right: 0%;
  animation-delay: 1.5s;
}
.icon-ring .item:nth-child(5) {
  bottom: 10%;
  left: 15%;
  animation-delay: 2s;
}
.icon-ring .item:nth-child(6) {
  bottom: 5%;
  right: 10%;
  animation-delay: 2.5s;
}
.icon-ring .item .bubble {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-ring .item p {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

/* Unique Enterprise Section */
.unique-enterprise-section {
  padding: 100px 0;
  background-color: #f8f9fb;
}

.unique-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .unique-section-header {
    padding: 0 1.25rem;
  }
}
.unique-section-header h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 1rem;
}
.unique-section-header p {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 2rem;
}
.unique-section-header .divider {
  width: 60px;
  height: 2px;
  background: #e00505;
  margin: 0 auto;
}

.tabs-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid #e5e7eb;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .tabs-container {
    display: none;
  }
}
.tabs-container .tab-button {
  padding: 1.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #6b7280;
  position: relative;
  transition: all 0.3s;
}
.tabs-container .tab-button.active {
  color: #1a1a1a;
}
.tabs-container .tab-button.active .active-indicator {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #e00505;
}

.desktop-cards-container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  height: 600px;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .desktop-cards-container {
    padding: 0 1.25rem;
  }
}
@media (max-width: 768px) {
  .desktop-cards-container {
    display: none;
  }
}
.desktop-cards-container .card-wrapper {
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(40px);
}
.desktop-cards-container .card-wrapper.stacked {
  opacity: 1;
  transform: translateY(0);
}
.desktop-cards-container .card-wrapper.top-card {
  z-index: 10;
}
.desktop-cards-container .enterprise-card {
  border-radius: 24px;
  padding: 4rem;
  min-height: 500px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.desktop-cards-container .enterprise-card .card-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.desktop-cards-container .enterprise-card .text-content {
  text-align: left;
}
.desktop-cards-container .enterprise-card .text-content h3 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}
.desktop-cards-container .enterprise-card .text-content p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 3rem;
}

/* Feature Grid Systems */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.features-grid .feature-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.features-grid .feature-item .icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.features-grid .feature-item h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0;
}
.features-grid .feature-item p {
  font-size: 0.8125rem;
  color: #6b7280;
  margin: 0;
}

/* Extended Features */
.enterprise-sections section {
  padding: 100px 0;
}
.enterprise-sections h1,
.enterprise-sections h2.section-title,
.enterprise-sections h2.solution-title {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.enterprise-sections .section-1 {
  background: #fff;
}
.enterprise-sections .section-1 .feature-icon {
  width: 48px;
  height: 48px;
  color: #0066cc;
  margin-bottom: 1.5rem;
}
.enterprise-sections .section-1 .features-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Section 2: Security refined */
.section-2 {
  position: relative;
}
.section-2 .section-2-bg {
  background-color: hsl(214, 100%, 45%);
  color: #fff;
  padding: 60px 0 160px;
  text-align: center;
}
@media (min-width: 768px) {
  .section-2 .section-2-bg {
    padding: 80px 0 220px;
  }
}
.section-2 .section-2-bg .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-2 .section-2-bg h2 {
  font-size: 1.875rem;
  line-height: 1.25;
  font-weight: 300;
  margin-bottom: 32px;
  color: #fff;
  white-space: normal;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .section-2 .section-2-bg h2 {
    font-size: 44px;
  }
}
.section-2 .section-2-bg p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 768px;
  margin: 0 auto 40px;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .section-2 .section-2-bg p {
    font-size: 18px;
  }
}
.section-2 .section-2-bg .btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 12px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s;
  text-decoration: none;
}
.section-2 .section-2-bg .btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.section-2 .section-2-bg .btn-outline-white svg {
  width: 16px;
  height: 16px;
}
.section-2 .section-2-content {
  max-width: 1200px;
  margin: -100px auto 0;
  padding: 0 1.5rem 80px;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .section-2 .section-2-content {
    margin-top: -120px;
    padding-bottom: 112px;
  }
}
.section-2 .section-2-content .container {
  width: 100%;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 32px;
}
@media (min-width: 768px) {
  .section-2 .section-2-content .container {
    padding: 56px;
  }
}
.section-2 .security-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: left;
}
@media (min-width: 768px) {
  .section-2 .security-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}
.section-2 .security-features .security-item {
  display: flex;
  flex-direction: column;
}
.section-2 .security-features .security-item .security-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-2 .security-features .security-item .security-icon svg {
  width: 48px;
  height: 48px;
  color: #1a1a1a;
  stroke-width: 1;
}
.section-2 .security-features .security-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .section-2 .security-features .security-item h3 {
    font-size: 24px;
  }
}
.section-2 .security-features .security-item p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.625;
}
.section-2 .certifications {
  margin-top: 64px;
  text-align: center;
}
.section-2 .certifications .cert-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.section-2 .certifications .cert-badge {
  width: 60px;
  height: 60px;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #9ca3af;
}
.section-2 .section-3-stats {
  background: #f8f9fb;
  padding: 60px 0;
}
.section-2 .section-3-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
}
.section-2 .section-3-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0066cc;
  margin-bottom: 0.5rem;
}
.section-2 .section-3-stats .stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary {
  background: #e00505;
  color: #fff;
}
.btn-primary:hover {
  background: #c00404;
}
.btn-outline-white {
  border: 1px solid #fff;
  color: #fff;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn-outline-blue {
  border: 1px solid #0066cc;
  color: #0066cc;
}
.btn-outline-blue:hover {
  background: rgba(0, 102, 204, 0.05);
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* Uniquely Positioned Section (New) */
/* Uniquely Positioned Section (New) */
.uniquely-positioned-section {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .uniquely-positioned-section {
    padding: 120px 0;
  }
}
.uniquely-positioned-section {
  background-color: #ffffff;
}
.uniquely-positioned-section .section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.uniquely-positioned-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.uniquely-positioned-section .section-header h2 {
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  .uniquely-positioned-section .section-header h2 {
    font-size: 38px;
  }
}
.uniquely-positioned-section .section-header h2 {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.uniquely-positioned-section .section-header p {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .uniquely-positioned-section .section-header p {
    font-size: 1.125rem;
  }
}
.uniquely-positioned-section .section-header p {
  color: #6b7280;
  max-width: 42rem;
  margin: 0 auto;
}
.uniquely-positioned-section .tabs-nav {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 0px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.uniquely-positioned-section .tabs-nav::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .uniquely-positioned-section .tabs-nav {
    justify-content: center;
    mask-image: none;
    -webkit-mask-image: none;
    overflow-x: visible;
  }
}
.uniquely-positioned-section .tabs-nav .tab-btn {
  position: relative;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  flex: 0 0 auto;
}
@media (min-width: 768px) {
  .uniquely-positioned-section .tabs-nav .tab-btn {
    font-size: 1rem;
    flex: none;
  }
}
.uniquely-positioned-section .tabs-nav .tab-btn {
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .uniquely-positioned-section .tabs-nav .tab-btn {
    white-space: pre-line;
  }
}
.uniquely-positioned-section .tabs-nav .tab-btn {
  transition: color 0.15s;
  cursor: pointer;
  background: none;
  border: none;
  color: #6b7280;
  font-weight: 400;
}
.uniquely-positioned-section .tabs-nav .tab-btn:hover {
  color: #1a1a1a;
}
.uniquely-positioned-section .tabs-nav .tab-btn.active {
  color: #e00505;
  font-weight: 500;
}
.uniquely-positioned-section .tabs-nav .tab-btn .active-bar {
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 3px;
  background-color: #e00505;
  border-radius: 3px 3px 0 0;
}
.uniquely-positioned-section .cards-deck {
  position: relative;
  padding-top: 0;
}
.uniquely-positioned-section .cards-deck .card-item {
  border-radius: 0.75rem;
  padding: 2rem;
}
@media (min-width: 768px) {
  .uniquely-positioned-section .cards-deck .card-item {
    padding: 3rem;
  }
}
.uniquely-positioned-section .cards-deck .card-item {
  border: 1px solid transparent;
  min-height: 520px;
  /* ENFORCE SAME HEIGHT */
  display: none;
}
.uniquely-positioned-section .cards-deck .card-item.top-card {
  display: block;
  position: relative;
  z-index: 20;
}
.uniquely-positioned-section .cards-deck .card-item.animating {
  animation: deckSlideUp 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.uniquely-positioned-section .cards-deck .card-item.card-bg-blue {
  background: linear-gradient(135deg, hsl(200, 80%, 96%), hsl(200, 60%, 92%));
  border-color: hsl(200, 40%, 90%);
}
.uniquely-positioned-section .cards-deck .card-item.card-bg-green {
  background: linear-gradient(135deg, hsl(160, 50%, 96%), hsl(160, 40%, 92%));
  border-color: hsl(160, 30%, 90%);
}
.uniquely-positioned-section .cards-deck .card-item.card-bg-purple {
  background: linear-gradient(135deg, hsl(270, 40%, 96%), hsl(270, 30%, 92%));
  border-color: hsl(270, 20%, 90%);
}
.uniquely-positioned-section .cards-deck .card-grid {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.uniquely-positioned-section .cards-deck .grid-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .uniquely-positioned-section .cards-deck .grid-header {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.uniquely-positioned-section .cards-deck .grid-header .card-title {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .uniquely-positioned-section .cards-deck .grid-header .card-title {
    font-size: 32px;
  }
}
.uniquely-positioned-section .cards-deck .grid-header .card-title {
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.2;
}
.uniquely-positioned-section .cards-deck .grid-header .card-desc {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .uniquely-positioned-section .cards-deck .grid-header .card-desc {
    font-size: 17px;
  }
}
.uniquely-positioned-section .cards-deck .grid-header .card-desc {
  color: #4b5563;
  line-height: 1.6;
}
.uniquely-positioned-section .cards-deck .grid-header .card-desc .highlight-under {
  color: #e00505;
  text-decoration: underline;
  font-weight: 500;
  cursor: pointer;
}
.uniquely-positioned-section .cards-deck .divider {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}
.uniquely-positioned-section .cards-deck {
  /* Tab 0 Features */
}
.uniquely-positioned-section .cards-deck .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .uniquely-positioned-section .cards-deck .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .uniquely-positioned-section .cards-deck .features-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.uniquely-positioned-section .cards-deck .features-grid .feature-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: box-shadow 0.3s;
}
.uniquely-positioned-section .cards-deck .features-grid .feature-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.uniquely-positioned-section .cards-deck .features-grid .feature-card .icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.uniquely-positioned-section .cards-deck .features-grid .feature-card .icon-box.icon-blue {
  background: linear-gradient(135deg, hsl(200, 70%, 90%), hsl(180, 50%, 88%));
  color: hsl(200, 70%, 40%);
}
.uniquely-positioned-section .cards-deck .features-grid .feature-card .feature-text h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #1a1a1a;
}
.uniquely-positioned-section .cards-deck .features-grid .feature-card .feature-text p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
  margin: 0;
}
.uniquely-positioned-section .cards-deck .app-logos-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
}
.uniquely-positioned-section .cards-deck .app-logos-footer .logos-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #6b7280;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.uniquely-positioned-section .cards-deck .app-logos-footer .logos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .uniquely-positioned-section .cards-deck .app-logos-footer .logos-container {
    gap: 3rem;
  }
}
.uniquely-positioned-section .cards-deck .app-logos-footer .logos-container span {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .uniquely-positioned-section .cards-deck .app-logos-footer .logos-container span {
    font-size: 1.125rem;
  }
}
.uniquely-positioned-section .cards-deck .app-logos-footer .logos-container span {
  font-weight: 700;
  color: rgba(107, 114, 128, 0.4);
  letter-spacing: 0.025em;
}
.uniquely-positioned-section .cards-deck {
  /* Tab 1 Testimonial */
}
.uniquely-positioned-section .cards-deck .testimonial-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .uniquely-positioned-section .cards-deck .testimonial-layout {
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
  }
}
.uniquely-positioned-section .cards-deck .testimonial-layout .testimonial-side {
  background: hsl(160, 40%, 94%);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.uniquely-positioned-section .cards-deck .testimonial-layout .testimonial-side .tafe-badge {
  align-self: flex-end;
  font-size: 11px;
  font-weight: 700;
  color: hsl(160, 40%, 40%);
  background: hsl(160, 40%, 88%);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.uniquely-positioned-section .cards-deck .testimonial-layout .testimonial-side .avatar-placeholder {
  width: 5rem;
  height: 5rem;
  background: hsl(160, 20%, 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.uniquely-positioned-section .cards-deck .testimonial-layout .testimonial-side p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}
.uniquely-positioned-section .cards-deck .testimonial-layout .testimonial-content .quote-mark {
  font-size: 2.5rem;
  color: #1a1a1a;
  font-family: serif;
  line-height: 1;
  margin-bottom: 1rem;
}
.uniquely-positioned-section .cards-deck .testimonial-layout .testimonial-content .quote-text {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.uniquely-positioned-section .cards-deck .testimonial-layout .testimonial-content .quote-author {
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.uniquely-positioned-section .cards-deck .testimonial-layout .testimonial-content .quote-title {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}
.uniquely-positioned-section .cards-deck .testimonial-layout .testimonial-content .learn-more {
  margin-top: 1.5rem;
  font-size: 12px;
  font-weight: 700;
  color: #e00505;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.2s;
}
.uniquely-positioned-section .cards-deck .testimonial-layout .testimonial-content .learn-more:hover {
  gap: 0.75rem;
}
.uniquely-positioned-section .cards-deck {
  /* Tab 2 Integrated */
}
.uniquely-positioned-section .cards-deck .integrated-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .uniquely-positioned-section .cards-deck .integrated-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.uniquely-positioned-section .cards-deck .integrated-grid .feature-box {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.uniquely-positioned-section .cards-deck .integrated-grid .feature-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
.uniquely-positioned-section .cards-deck .integrated-grid .feature-box p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}
.uniquely-positioned-section .cards-deck .deck-peek-edges .peek-strip {
  border-radius: 0 0 0.75rem 0.75rem;
  border: 1px solid transparent;
  border-top: 0;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes deckSlideUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Animation for Stats Section */
.stats-banner-section {
  padding: 2rem 0 3rem;
  background-color: #fff;
}
@media (min-width: 768px) {
  .stats-banner-section {
    padding: 4rem 0 5rem;
  }
}
.stats-banner-section .stats-card {
  background-color: hsl(214, 100%, 45%);
  border-radius: 1rem;
  /* rounded-2xl */
  padding: 3.5rem 2rem;
}
@media (min-width: 768px) {
  .stats-banner-section .stats-card {
    padding: 4rem 2rem;
  }
}
.stats-banner-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 640px) {
  .stats-banner-section .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .stats-banner-section .stats-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }
}
.stats-banner-section .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stats-banner-section .stat-number {
  font-size: 1.875rem;
  /* text-3xl */
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .stats-banner-section .stat-number {
    font-size: 2.75rem;
    /* ~44px */
  }
}
.stats-banner-section .stat-label {
  font-size: 0.875rem;
  /* text-sm */
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 768px) {
  .stats-banner-section .stat-label {
    font-size: 1rem;
    /* text-base */
  }
}

/* EBS and SI Partners Section */
.ebs-partners-section {
  padding: 5rem 0;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .ebs-partners-section {
    padding: 7rem 0;
  }
}
.ebs-partners-section .section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.ebs-partners-section .partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 768px) {
  .ebs-partners-section .partners-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
.ebs-partners-section .partner-column {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .ebs-partners-section .partner-column.bordered {
    border-left: 1px solid #e5e7eb;
    padding-left: 4rem;
  }
}
.ebs-partners-section .label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #e00505;
  margin-bottom: 1rem;
}
.ebs-partners-section .title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .ebs-partners-section .title {
    font-size: 32px;
  }
}
.ebs-partners-section .description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .ebs-partners-section .description {
    font-size: 1.125rem;
  }
}
.ebs-partners-section .trusted-section {
  margin-bottom: 2rem;
}
.ebs-partners-section .trusted-section .trusted-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 1rem;
}
.ebs-partners-section .trusted-section .companies-flex {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ebs-partners-section .trusted-section .companies-flex span {
  font-size: 1.125rem;
  font-weight: 700;
  color: #90949d;
}
.ebs-partners-section .learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid hsl(200, 80%, 50%);
  color: hsl(200, 80%, 45%);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s;
  align-self: flex-start;
  text-decoration: none;
}
.ebs-partners-section .learn-more-btn:hover {
  background-color: hsl(200, 80%, 97%);
}
.ebs-partners-section .learn-more-btn i {
  font-size: 0.875rem;
}

/* Solutions Section */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  text-align: center;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.tab-navigation {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 60px;
  border-bottom: 1px solid #e0e0e0;
}
@media (max-width: 991px) {
  .tab-navigation {
    justify-content: flex-start;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    margin-bottom: 30px;
  }
  .tab-navigation::-webkit-scrollbar {
    display: none;
  }
}
.tab-navigation .tab-item {
  font-size: 1.1rem;
  font-weight: 500;
  color: #666;
  padding-bottom: 15px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex: 0 0 auto;
  padding: 12px 20px 15px;
}
@media (min-width: 992px) {
  .tab-navigation .tab-item {
    padding: 0 0 15px;
    flex: none;
  }
}
.tab-navigation .tab-item:hover {
  color: #000;
}
.tab-navigation .tab-item.active {
  color: #000;
  font-weight: 700;
}
.tab-navigation .tab-item.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #e00505;
}

.content-wrapper {
  display: flex;
  gap: 60px;
  text-align: left;
  animation: fadeIn 0.5s ease;
}
.content-wrapper .left-section {
  flex: 1;
}
.content-wrapper .left-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;
}
.content-wrapper .left-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
}
.content-wrapper .left-section .client-logos {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  height: 40px;
}
.content-wrapper .left-section .client-logos img {
  max-height: 100%;
  filter: grayscale(1);
  opacity: 0.6;
}
.content-wrapper .right-section {
  flex: 1;
  background-color: #f7f9fc;
  padding: 50px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper .right-section .quote-mark {
  font-size: 6rem;
  color: #e0e0e0;
  line-height: 1;
  height: 40px;
  margin-bottom: 20px;
}
.content-wrapper .right-section .testimonial-text {
  font-size: 1.15rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 30px;
  color: #333;
}
.content-wrapper .right-section .author-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.content-wrapper .right-section .author-info .author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.content-wrapper .right-section .author-info .author-details h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}
.content-wrapper .right-section .author-info .author-details p {
  font-size: 0.95rem;
  color: #777;
  margin: 0;
}

.learn-more-btn {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: #0066cc;
  margin-top: auto;
  padding-top: 20px;
}
.learn-more-btn:hover {
  text-decoration: underline;
}

.mobile-view {
  display: none;
}

@media (max-width: 991px) {
  .desktop-view {
    display: none;
  }
  .mobile-view {
    display: block;
  }
  h1 {
    font-size: 2rem;
  }
  .content-wrapper {
    flex-direction: column;
    gap: 30px;
    text-align: left;
  }
  .content-wrapper .right-section {
    padding: 25px;
  }
  .content-wrapper .right-section .testimonial-text {
    font-size: 1.05rem;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Carousel Section */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.carousel-hero-section {
  background: linear-gradient(135deg, #004a99 0%, #0066cc 100%);
  padding: 100px 0 160px;
  color: #fff;
  text-align: center;
}

.carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.carousel-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.carousel-hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .carousel-hero-title {
    font-size: 2rem;
  }
}

.carousel-hero-description {
  font-size: 1.125rem;
  opacity: 0.9;
  line-height: 1.6;
}

.carousel-hero-divider {
  width: 60px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 2rem auto 0;
}

.cards-section {
  margin-top: -100px;
  padding-bottom: 100px;
}

.carousel-container2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.carousel-wrapper {
  position: relative;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  left: -60px;
  right: -60px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}
@media (max-width: 768px) {
  .carousel-nav {
    display: none;
  }
}
.carousel-nav .nav-button {
  width: 48px;
  height: 48px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  pointer-events: auto;
  transition: all 0.2s;
}
.carousel-nav .nav-button:hover {
  color: #0066cc;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-inner-overflow {
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-inner-overflow::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 50%;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .carousel-slide {
    flex: 0 0 100%;
    padding: 0 0.5rem;
    scroll-snap-align: center;
  }
}

.testimonial-card {
  background-color: #fff;
  border-radius: 12px;
  border: 2px solid #1a1a1a;
  padding: 3rem;
  height: 100%;
  box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  text-align: left;
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 2rem;
  }
}
.testimonial-card .badge-container {
  margin-bottom: 2rem;
}
.testimonial-card .badge {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.testimonial-card .testimonial-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}
.testimonial-card .testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 2.5rem;
  flex: 1;
  font-style: italic;
}
.testimonial-card .testimonial-footer {
  border-top: 1px solid #f3f4f6;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
}
.testimonial-card .author-name {
  font-weight: 700;
  color: #1a1a1a;
}
.testimonial-card .author-role {
  font-size: 0.875rem;
  color: #6b7280;
}
.testimonial-card .learn-more-link {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.testimonial-card .learn-more-link:hover {
  text-decoration: underline;
}

.pagination-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}
.pagination-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #e5e7eb;
  transition: all 0.3s;
}
.pagination-dots .dot.active {
  background-color: #0066cc;
  width: 24px;
  border-radius: 4px;
}

.serious-software-section {
  padding: 80px 1.25rem;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .serious-software-section {
    padding: 120px 1.5rem;
  }
}
.serious-software-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.serious-software-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .serious-software-section .section-header {
    margin-bottom: 5rem;
  }
}
.serious-software-section .section-header .title-line {
  font-size: 1.875rem;
  line-height: 1.25;
  font-weight: 300;
  color: #1a1a1a;
}
@media (min-width: 768px) {
  .serious-software-section .section-header .title-line {
    font-size: 42px;
  }
}
.serious-software-section .serious-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 6rem;
  row-gap: 4rem;
}
@media (min-width: 768px) {
  .serious-software-section .serious-features-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 5rem;
  }
}
.serious-software-section .serious-feature-item {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.serious-software-section .serious-feature-item .serious-feature-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.serious-software-section .serious-feature-item .serious-feature-header .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
}
.serious-software-section .serious-feature-item .serious-feature-header .icon-box svg {
  width: 2.5rem;
  height: 2.5rem;
}
.serious-software-section .serious-feature-item .serious-feature-header .feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.2;
  padding-top: 0.5rem;
}
@media (min-width: 768px) {
  .serious-software-section .serious-feature-item .serious-feature-header .feature-title {
    font-size: 1.5rem;
  }
}
.serious-software-section .serious-feature-item .feature-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .serious-software-section .serious-feature-item .feature-description {
    font-size: 1.125rem;
    padding-left: 4.5rem;
  }
}

.section-2 {
  background: #f8f9fb;
}
.section-2 .section-2-bg {
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  padding: 80px 1.25rem;
}
@media (min-width: 768px) {
  .section-2 .section-2-bg {
    padding: 120px 1.5rem;
  }
}
.section-2 .section-title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.section-2 .section-title.white {
  color: #ffffff;
}
@media (min-width: 768px) {
  .section-2 .section-title {
    font-size: 3rem;
  }
}
.section-2 .section-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 2rem;
}
.section-2 .section-subtitle.white {
  color: rgba(255, 255, 255, 0.9);
}
.section-2 .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
}
.section-2 .btn.btn-outline-white {
  color: #ffffff;
  border-color: #ffffff;
  background: transparent;
}
.section-2 .btn.btn-outline-white:hover {
  background: #ffffff;
  color: #0066cc;
}
.section-2 .btn .btn-arrow {
  transition: transform 0.3s ease;
}
.section-2 .btn:hover .btn-arrow {
  transform: translateX(0.25rem);
}
.section-2 .section-2-content {
  padding: 5rem 1.25rem;
}
.section-2 .security-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .section-2 .security-features {
    grid-template-columns: repeat(3, 1fr);
  }
}
.section-2 .security-item {
  text-align: center;
}
.section-2 .security-item .security-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  color: #0066cc;
}
.section-2 .security-item .security-icon svg {
  width: 100%;
  height: 100%;
}
.section-2 .security-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}
.section-2 .security-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}
.section-2 .certifications {
  text-align: center;
  padding: 2rem 0;
}
.section-2 .certifications .cert-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #666;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  display: block;
}
.section-2 .certifications .cert-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.section-2 .certifications .cert-badge {
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #666;
}

.section-3 {
  background: #ffffff;
}
.section-3 .section-3-top {
  padding: 80px 1.25rem;
}
@media (min-width: 768px) {
  .section-3 .section-3-top {
    padding: 120px 1.5rem;
  }
}
.section-3 .solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 768px) {
  .section-3 .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.section-3 .solution-item .solution-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0066cc;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.section-3 .solution-item .solution-title {
  font-size: 2rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .section-3 .solution-item .solution-title {
    font-size: 2.5rem;
  }
}
.section-3 .solution-item .divider {
  width: 4rem;
  height: 2px;
  background-color: #e5e7eb;
  margin-bottom: 1.5rem;
}
.section-3 .solution-item .divider.gray {
  background-color: #e5e7eb;
}
.section-3 .solution-item .solution-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.section-3 .solution-item .trusted-by {
  margin-bottom: 2rem;
}
.section-3 .solution-item .trusted-by .trusted-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 0.75rem;
}
.section-3 .solution-item .trusted-by .trusted-companies {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.section-3 .solution-item .trusted-by .trusted-companies span {
  font-size: 0.875rem;
  color: #666;
  padding: 0.5rem 1rem;
  background: #f8f9fb;
  border-radius: 0.25rem;
}
.section-3 .solution-item .btn-outline-blue {
  color: #0066cc;
  border-color: #0066cc;
  background: transparent;
}
.section-3 .solution-item .btn-outline-blue:hover {
  background: #0066cc;
  color: #ffffff;
}
.section-3 .section-3-stats {
  background: #f8f9fb;
  padding: 4rem 1.25rem;
}
.section-3 .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (min-width: 768px) {
  .section-3 .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .section-3 .stats-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.section-3 .stat-item {
  text-align: center;
}
.section-3 .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .section-3 .stat-item .stat-number {
    font-size: 3rem;
  }
}
.section-3 .stat-item .stat-label {
  font-size: 0.875rem;
  color: #666;
}
.section-3 {
  /* Animation for Stats Section */
}
.section-3 .stats-banner-section {
  padding: 4rem 0;
  background-color: #fff;
  /* or theme background if different */
}
@media (min-width: 768px) {
  .section-3 .stats-banner-section {
    padding: 5rem 0;
  }
}
.section-3 .stats-banner-section .stats-card {
  background-color: #0066e6;
  /* hsl(214, 100%, 45%) */
  border-radius: 1rem;
  /* rounded-2xl */
  padding: 3.5rem 2rem;
}
@media (min-width: 768px) {
  .section-3 .stats-banner-section .stats-card {
    padding: 4rem 2rem;
  }
}
.section-3 .stats-banner-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 640px) {
  .section-3 .stats-banner-section .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .section-3 .stats-banner-section .stats-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }
}
.section-3 .stats-banner-section .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-3 .stats-banner-section .stat-number {
  font-size: 1.875rem;
  /* text-3xl */
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .section-3 .stats-banner-section .stat-number {
    font-size: 2.75rem;
    /* ~44px */
  }
}
.section-3 .stats-banner-section .stat-label {
  font-size: 0.875rem;
  /* text-sm */
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 768px) {
  .section-3 .stats-banner-section .stat-label {
    font-size: 1rem;
    /* text-base */
  }
}

.section-4 {
  padding: 80px 1.25rem;
  background: #ffffff;
}
@media (min-width: 768px) {
  .section-4 {
    padding: 120px 1.5rem;
  }
}
.section-4 .mb-12 {
  margin-bottom: 3rem;
}
.section-4 h1 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .section-4 h1 {
    font-size: 3rem;
  }
}
.section-4 .btn-primary {
  color: #ffffff;
  background: #dc2626;
  border-color: #dc2626;
}
.section-4 .btn-primary:hover {
  background: #b91c1c;
  border-color: #b91c1c;
}
.section-4 .mandala-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
}
.section-4 .mandala-container .mandala-icon {
  width: 200px;
  height: 200px;
  animation: rotate 20s linear infinite;
}
.section-4 .mandala-container .mandala-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.section-4 .footer-links {
  margin-top: 4rem;
}
.section-4 .links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .section-4 .links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .section-4 .links-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.section-4 .link-column h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.section-4 .link-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.section-4 .link-column ul li {
  margin-bottom: 0.75rem;
}
.section-4 .link-column ul li a {
  font-size: 0.875rem;
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}
.section-4 .link-column ul li a:hover {
  color: #0066cc;
}
.section-4 .link-column ul.contact-info .contact-label {
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 0.25rem;
}
.section-4 .link-column ul.contact-info a {
  font-size: 1rem;
  color: #1a1a1a;
  font-weight: 500;
}
.section-4 .link-column .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.section-4 .link-column .social-links a {
  width: 2rem;
  height: 2rem;
  color: #666;
  transition: color 0.2s ease;
}
.section-4 .link-column .social-links a:hover {
  color: #0066cc;
}
.section-4 .link-column .social-links a svg {
  width: 100%;
  height: 100%;
}
.section-4 .footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}
.section-4 .footer-bottom p {
  font-size: 0.75rem;
  color: #999;
  line-height: 1.6;
}
.section-4 .main-footer {
  background: #f8f9fb;
  padding: 2rem 1rem;
  margin-top: 3rem;
}
.section-4 .main-footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .section-4 .main-footer .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.section-4 .main-footer .footer-content p {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
}
.section-4 .main-footer .footer-content .footer-links {
  display: flex;
  gap: 1.5rem;
}
.section-4 .main-footer .footer-content .footer-links a {
  font-size: 0.875rem;
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}
.section-4 .main-footer .footer-content .footer-links a:hover {
  color: #0066cc;
}

/* Section 4 */
.section-4 {
  background: #fff;
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.section-4 h1 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #e60000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-primary:hover {
  background: #cc0000;
}
.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.mandala-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  pointer-events: none;
  overflow: visible;
}

.mandala-icon {
  width: 600px;
  height: 600px;
  opacity: 0.3;
  animation: rotate 60s linear infinite;
  flex-shrink: 0;
}
.mandala-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.footer-links {
  margin-top: 60px;
  padding: 60px 20px 0;
  border-top: 1px solid #eee;
  background: #f8f9fb;
  position: relative;
  z-index: 10;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.link-column h3 {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  letter-spacing: 1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.link-column h3 .toggle-icon {
  display: none;
  font-size: 12px;
  transition: transform 0.3s ease;
  color: #666;
}
.link-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.link-column ul li {
  margin-bottom: 12px;
}
.link-column ul li a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 2;
}
.link-column ul li a:hover {
  color: #0078d4;
}

.contact-info li {
  margin-bottom: 24px !important;
}
.contact-info li .contact-label {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}
.contact-info li a {
  font-size: 15px !important;
  color: #111 !important;
  font-weight: 600 !important;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.social-links a {
  color: #999;
  transition: color 0.2s ease;
}
.social-links a:hover {
  color: #0078d4;
}
.social-links a svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 50px auto 0;
  padding: 20px 0;
  border-top: 1px solid #eee;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: #999;
  line-height: 1.8;
}

.main-footer {
  padding: 30px 0;
  border-top: 1px solid #eee;
  background: #f8f9fb;
}
.main-footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.main-footer .footer-content p {
  font-size: 13px;
  color: #999;
}
.main-footer .footer-content .footer-links-bottom {
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
  display: flex;
  gap: 20px;
}
.main-footer .footer-content .footer-links-bottom a {
  font-size: 13px;
  color: #999;
  text-decoration: none;
}
.main-footer .footer-content .footer-links-bottom a:hover {
  color: #666;
}

@media (max-width: 1024px) {
  .links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .mandala-icon {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 480px) {
  .links-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .link-column {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
  }
  .link-column h3 {
    margin-bottom: 0;
    cursor: pointer;
  }
  .link-column h3 .toggle-icon {
    display: block;
  }
  .link-column ul {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
  }
  .link-column.active h3 .toggle-icon {
    transform: rotate(180deg);
  }
  .link-column.active ul {
    max-height: 500px;
    /* Adjust based on content */
    margin-top: 20px;
    opacity: 1;
  }
  .mandala-icon {
    width: 250px;
    height: 250px;
  }
  .section-4 h1 {
    font-size: 24px;
  }
}
/* Any complex animations or specific page overrides can go here */

/*# sourceMappingURL=main.css.map */
