:root {
  --bg: #ffffff;
  --text: #0f172a;
  --bg-surface: #f8fafc;
  --text-muted: #475569;
  --primary: #0ea5e9;
  --primary-hover: #0284c7;
  --primary-rgb: 14, 165, 233;
  --primary-gradient: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
  --secondary: #1e293b;
  --border: #e2e8f0;
  --header-height: 80px;
  --container-width: 1280px;
  --transition: 0.3s ease;
  --border-radius: 8px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.dark {
  --bg: #05080f;
  --text: #ffffff;
  --bg-surface: #0f172a;
  --text-muted: #94a3b8;
  --primary: #38bdf8;
  --primary-hover: #7dd3fc;
  --primary-rgb: 56, 189, 248;
  --primary-gradient: linear-gradient(135deg, var(--primary) 0%, #818cf8 100%);
  --secondary: #f8fafc;
  --border: #1e293b;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  padding-top: var(--header-height);
}

body.theme-transitioned {
  transition:
    background-color var(--transition),
    color var(--transition);
}

main {
  animation: pageFadeIn 0.35s ease-out both;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", "Inter", system-ui, sans-serif;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #ffffff;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #6366f1 0%, var(--primary) 100%);
  z-index: -1;
  transition: opacity var(--transition);
  opacity: 0;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -10px rgba(var(--primary-rgb), 0.6);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background-color: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-login {
  background-color: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 600;
}

.btn-login:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  background-color: rgba(var(--primary-rgb), 0.05);
}

@media (max-width: 1024px) {
  .btn-login {
    display: none;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background-color 0.25s ease,
              border-color 0.25s ease,
              box-shadow 0.25s ease;
}

/* Header when over the video hero (100% transparent & seamlessly blended) */
.header.header-transparent {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.header.header-transparent .nav-links > li > a,
.header.header-transparent .nav-dropdown-toggle {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7) !important;
}

.header.header-transparent .nav-dropdown-arrow {
  color: #ffffff !important;
}

.header.header-transparent .nav-links > li > a:hover,
.header.header-transparent .nav-links > li > a.active,
.header.header-transparent .nav-dropdown-toggle:hover,
.header.header-transparent .nav-dropdown-toggle.active,
.header.header-transparent .nav-dropdown-toggle[aria-expanded="true"] {
  color: #38bdf8 !important;
}

.header.header-transparent .logo-main {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7) !important;
}

.header.header-transparent .logo-blue {
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.header.header-transparent .theme-toggle {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

.header.header-transparent .hamburger span {
  background-color: #ffffff !important;
}

.header.header-transparent .hide-on-hero-trans {
  display: none !important;
}

.header.header-transparent .show-on-hero-trans {
  display: block !important;
}

/* Header when scrolled past video (pure solid white in light mode, solid sleek dark in dark mode) */
.header.header-scrolled {
  background-color: rgba(255, 255, 255, 0.85) !important;
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
}

:root.dark .header.header-scrolled,
.dark-theme .header.header-scrolled {
  background-color: rgba(11, 15, 25, 0.85) !important;
  background: rgba(11, 15, 25, 0.85) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35) !important;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ─── Zero-Shift Navbar Brand & Layout ─── */
.logo-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  text-decoration: none !important;
  user-select: none;
  line-height: 1;
  height: 100%;
  width: 250px;
  min-width: 250px;
  flex: 0 0 250px;
}

.navbar {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  width: 250px;
  min-width: 250px;
  flex: 0 0 250px;
}

.header-actions .cta-btn {
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 1.25rem !important;
  height: 42px !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  border-radius: var(--border-radius, 8px) !important;
  text-decoration: none !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
  letter-spacing: -0.01em !important;
  box-shadow: 0 4px 14px rgba(25, 120, 230, 0.25) !important;
  transition: all var(--transition) !important;
}

.header-actions .cta-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(25, 120, 230, 0.4) !important;
}

.logo-icon-wrapper {
  position: relative;
  width: 82px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
}

.logo-icon {
  width: 105px;
  height: 105px;
  max-width: none;
  object-fit: contain;
  display: block;
  transform: scale(1.18);
  transform-origin: center center;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

/* Pure CSS Theme Toggle - Instant switching without React re-render or image load blinking */
.dark .logo-icon-light {
  display: none !important;
}

/* Light Theme Full Logo */
.logo-full-light {
  height: 65px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  object-position: left center;
  display: block;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.06));
}

.logo-dark-brand-group {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* Theme Toggle Anti-Blink */
.theme-switching,
.theme-switching *,
.theme-switching *::before,
.theme-switching *::after {
  transition: none !important;
  animation: none !important;
}

/* Removed display none toggle since logo should always show */
:root.dark .logo-full-light,
.dark-theme .logo-full-light {
  background-color: rgba(255, 255, 255, 0.95) !important;
  padding: 8px 16px !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1) !important;
  height: auto !important;
  max-height: 72px !important;
}

.dark .logo-icon-dark,
.dark-theme .logo-icon-dark,
.header.header-transparent .logo-icon-dark {
  display: block !important;
  transform: scale(1.30) !important;
}

:root:not(.dark) .logo-icon-light {
  display: block !important;
  transform: scale(1.18) !important;
}

:root:not(.dark) .logo-icon-dark {
  display: none !important;
}

.logo-text-single {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.02;
  font-family: 'Outfit', 'Inter', 'Segoe UI', Arial, sans-serif;
  white-space: nowrap;
  margin-left: -0.45rem;
}

.logo-line {
  display: inline-flex;
  align-items: center;
}

.logo-blue {
  background: linear-gradient(135deg, #1978E6 0%, #005FD1 50%, #0046A8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.dark .logo-main {
  color: #ffffff;
}

:root:not(.dark) .logo-main {
  color: #0f172a;
}

@media (max-width: 1240px) and (min-width: 1025px) {
  .logo-brand {
    width: 235px !important;
    min-width: 235px !important;
    flex: 0 0 235px !important;
  }
  .header-actions {
    width: 235px !important;
    min-width: 235px !important;
    flex: 0 0 235px !important;
    gap: 0.75rem !important;
  }
  .header-actions .cta-btn {
    padding: 0 14px !important;
    font-size: 0.9rem !important;
  }
  .nav-links {
    gap: 1.25rem !important;
  }
}

@media (max-width: 1024px) {
  .logo-brand {
    width: auto !important;
    min-width: auto !important;
    flex: 0 0 auto !important;
  }
  .header-actions {
    width: auto !important;
    min-width: auto !important;
    flex: 0 0 auto !important;
  }
  .navbar {
    flex: 0 0 auto !important;
  }
}

@media (max-width: 768px) {
  .logo-full-light {
    height: 38px !important;
    max-width: 145px !important;
  }
  .header {
    height: 70px !important;
  }
  .header-container {
    padding: 0 16px !important;
  }
  .logo-icon-wrapper {
    width: 60px !important;
    height: 60px !important;
  }
  .logo-icon {
    width: 75px !important;
    height: 75px !important;
    transform: scale(1.1) !important;
  }
  .logo-text-single {
    font-size: 1.2rem !important;
    margin-left: -0.35rem !important;
  }
}

@media (max-width: 576px) {
  .logo-full-light {
    height: 34px !important;
    max-width: 125px !important;
  }
  .header {
    height: 64px !important;
  }
  .header-container {
    padding: 0 12px !important;
  }
  .logo-brand {
    gap: 0.1rem !important;
  }
  .logo-icon-wrapper {
    width: 48px !important;
    height: 48px !important;
  }
  .logo-icon {
    width: 58px !important;
    height: 58px !important;
    transform: scale(1.08) !important;
  }
  .logo-text-single {
    font-size: 1.05rem !important;
    line-height: 1.05 !important;
    margin-left: -0.25rem !important;
  }
  .theme-toggle {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.85rem !important;
  }
  .hamburger {
    width: 36px !important;
    height: 36px !important;
    padding: 6px !important;
  }
}

@media (max-width: 375px) {
  .logo-icon-wrapper,
  .logo-icon {
    width: 34px !important;
    height: 34px !important;
  }
  .logo-text-single {
    font-size: 0.82rem !important;
  }
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-muted);
  position: relative;
  transition: color var(--transition);
}

.nav-links li a:hover {
  color: var(--text);
}

.nav-links li a.active {
  color: var(--text);
  font-weight: 600;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: width var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  font-weight: 500;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  position: relative;
  transition: color var(--transition);
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle[aria-expanded="true"],
.nav-dropdown-toggle.active {
  color: var(--text);
}

.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: width var(--transition);
}

.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle[aria-expanded="true"]::after,
.nav-dropdown-toggle.active::after {
  width: 100%;
}

.nav-dropdown-arrow {
  font-size: 0.8rem;
  transition: transform var(--transition);
}

.nav-dropdown-toggle[aria-expanded="true"] .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 290px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 0.6rem 0;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1050;
  max-height: 380px;
  overflow-y: auto;
  scroll-behavior: smooth;
}

:root.dark .nav-dropdown-menu,
.dark-theme .nav-dropdown-menu {
  background-color: #0f172a !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6) !important;
}

.nav-dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.nav-dropdown-menu::-webkit-scrollbar-track {
  background: transparent;
  margin: 8px 0;
}

.nav-dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}

.nav-dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

:root.dark .nav-dropdown-menu::before,
.dark-theme .nav-dropdown-menu::before {
  background-color: #0f172a !important;
  border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.nav-item-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block !important;
  padding: 0.75rem 1.6rem !important;
  color: #1e293b !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  text-shadow: none !important;
  transition: all 0.2s ease !important;
  position: relative;
}

:root.dark .nav-dropdown-item,
.dark-theme .nav-dropdown-item {
  color: #e2e8f0 !important;
}

.nav-dropdown-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background-color: var(--primary);
  transition: width 0.2s ease;
}

.nav-dropdown-item:hover,
.nav-dropdown-item:focus {
  background-color: #f0f9ff !important;
  color: #0284c7 !important;
  padding-left: 1.85rem !important;
}

:root.dark .nav-dropdown-item:hover,
:root.dark .nav-dropdown-item:focus,
.dark-theme .nav-dropdown-item:hover,
.dark-theme .nav-dropdown-item:focus {
  background-color: rgba(14, 165, 233, 0.12) !important;
  color: #38bdf8 !important;
  padding-left: 1.85rem !important;
}

.nav-dropdown-item:hover::before,
.nav-dropdown-item:focus::before {
  width: 3px;
}

.nav-dropdown-item.active {
  color: var(--primary) !important;
  background-color: rgba(14, 165, 233, 0.08) !important;
  font-weight: 600 !important;
}

.nav-dropdown-item.active::before {
  width: 3px;
}

@media (min-width: 769px) {

  .nav-item-dropdown:hover .nav-dropdown-menu,
  .nav-item-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .nav-item-dropdown:hover .nav-dropdown-arrow,
  .nav-item-dropdown:focus-within .nav-dropdown-arrow {
    transform: rotate(180deg);
  }

  .nav-dropdown-toggle::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    z-index: 999;
  }
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.mobile-menu-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: clamp(250px, 80vw, 300px);
  height: 100vh;
  height: 100dvh;
  background-color: var(--bg-surface, #fff);
  border-left: 1px solid var(--border);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.25);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(110%);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  visibility: hidden;
}

.mobile-menu-panel.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-menu-nav {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 1.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(14, 165, 233, 0.3) transparent;
}

.mobile-menu-nav::-webkit-scrollbar {
  width: 5px;
  display: block;
}

.mobile-menu-nav::-webkit-scrollbar-track {
  background: transparent;
}

.mobile-menu-nav::-webkit-scrollbar-thumb {
  background-color: rgba(14, 165, 233, 0.3);
  border-radius: 10px;
}

.mobile-menu-nav::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary);
}

.mobile-menu-nav ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-nav>ul>li {
  border-bottom: 1px solid var(--border);
}

.mobile-menu-nav>ul>li:last-child {
  border-bottom: none;
}

.mobile-menu-nav>ul>li>a {
  display: block;
  padding: 1rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  transition: color 0.2s ease;
  text-decoration: none;
}

.mobile-menu-nav>ul>li>a:hover,
.mobile-menu-nav>ul>li>a.active {
  color: var(--primary);
}

.mobile-dropdown-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.4;
  outline: none;
}

.mobile-dropdown-toggle:focus,
.mobile-dropdown-toggle:active {
  outline: none;
  background: none;
}

.mobile-dropdown-toggle i {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.mobile-dropdown-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
  color: var(--primary);
}

.mobile-dropdown.is-open .mobile-dropdown-toggle {
  padding-bottom: 0.5rem;
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    padding-top 0.3s ease,
    padding-bottom 0.3s ease;
  opacity: 0;
  padding-left: 1rem;
  padding-top: 0;
  padding-bottom: 0;
  border-left: 2px solid var(--border);
  margin-left: 0.25rem;
  list-style: none;
}

.mobile-dropdown.is-open .mobile-dropdown-menu {
  max-height: 420px;
  opacity: 1;
  padding-top: 0.25rem;
  padding-bottom: 0.75rem;
}

.mobile-dropdown-menu li {
  border-bottom: none !important;
}

.mobile-dropdown-menu li a {
  display: flex !important;
  align-items: center;
  padding: 0.5rem 0 !important;
  font-size: 0.95rem !important;
  color: var(--text-muted) !important;
  line-height: 1.4;
  transition: all 0.2s ease;
  text-decoration: none;
}

.mobile-dropdown-menu li a::before {
  content: "\25CB";
  font-size: 0.55rem;
  margin-right: 0.65rem;
  color: var(--primary);
  opacity: 0.6;
  flex-shrink: 0;
}

.mobile-dropdown-menu li a:hover,
.mobile-dropdown-menu li a.active {
  color: var(--primary) !important;
}

.mobile-dropdown-menu li a:hover::before,
.mobile-dropdown-menu li a.active::before {
  opacity: 1;
}

.mobile-menu-close {
  position: absolute;
  top: 19px;
  right: 20px;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.mobile-menu-close:hover {
  background-color: var(--border);
}

.mobile-menu-footer {
  flex-shrink: 0;
  padding: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.theme-toggle-btn {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-surface);
  transition: all var(--transition);
}

.theme-toggle-btn:hover {
  background-color: var(--border);
  transform: rotate(15deg);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.footer {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 5rem 0 0 0;
  margin-top: 5rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-gradient);
  opacity: 0.6;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.25fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-col--brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.footer-logo-img {
  height: 70px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.footer-logo-text {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: none;
  background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 50%, #0f172a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition:
    background 0.4s ease,
    -webkit-text-fill-color 0.4s ease;
}

.dark .footer-logo-text {
  background: linear-gradient(135deg, #38bdf8 0%, #e2e8f0 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand:not(:has(img[style*="display:block"])) .footer-logo-text,
.footer-brand:has(img[style*="display:none"]) .footer-logo-text {
  display: block;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
  margin: 0;
}

.footer-contact-mini {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.25s ease;
  text-decoration: none;
}

.footer-contact-link i {
  color: var(--primary);
  font-size: 0.85rem;
  width: 18px;
  text-align: center;
}

.footer-contact-link:hover {
  color: var(--primary);
}

.footer-badge {
  margin-top: 1.25rem;
  display: inline-flex;
}

.footer-badge-img {
  height: 130px;
  width: auto;
  border-radius: 8px;
  background-color: #ffffff;
  padding: 5px 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  object-fit: contain;
}

.footer-badge-img:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.footer-heading {
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
  position: relative;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.footer-linklist {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.35rem 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  width: 100%;
}

.footer-link i.fa-chevron-right {
  font-size: 0.65rem;
  color: var(--text-muted);
  opacity: 0.4;
  transform: translateX(-4px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link:hover {
  color: var(--primary);
  padding-left: 2px;
}

.footer-link:hover i.fa-chevron-right {
  opacity: 1;
  color: var(--primary);
  transform: translateX(2px);
}

.footer-col--social {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-social-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--bg);
  color: var(--text-muted);
  border: 1px solid var(--border);
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}

.social-links a:hover {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 20px -6px rgba(var(--primary-rgb), 0.45);
}

.social-links a.social-link-linkedin:hover {
  background: #0077b5 !important;
  color: #fff !important;
  border-color: #0077b5 !important;
  box-shadow: 0 8px 20px -6px rgba(0, 119, 181, 0.6) !important;
}

.social-links a.social-link-youtube:hover {
  background: #ff0000 !important;
  color: #fff !important;
  border-color: #ff0000 !important;
  box-shadow: 0 8px 20px -6px rgba(255, 0, 0, 0.6) !important;
}

.social-links a.social-link-facebook:hover {
  background: #1877f2 !important;
  color: #fff !important;
  border-color: #1877f2 !important;
  box-shadow: 0 8px 20px -6px rgba(24, 119, 242, 0.6) !important;
}

.social-links a.social-link-instagram:hover {
  background: linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 8px 20px -6px rgba(220, 39, 67, 0.6) !important;
}

.social-links a.social-link-whatsapp:hover {
  background: #25d366 !important;
  color: #fff !important;
  border-color: #25d366 !important;
  box-shadow: 0 8px 20px -6px rgba(37, 211, 102, 0.6) !important;
}

.social-links a.social-link-login:hover {
  background: var(--primary-gradient) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
  box-shadow: 0 8px 20px -6px rgba(var(--primary-rgb), 0.6) !important;
}

.footer-location {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 0.5rem;
}

.footer-location i {
  color: var(--primary);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

.footer-divider {
  color: var(--border);
  font-size: 0.8rem;
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
  }

  .footer-tagline {
    max-width: 480px;
  }

  .footer-contact-mini {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }

  .footer-col--social {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
  }

  .footer-location {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 0;
    margin-top: 0;
    border-top: none;
    background: #0b1628;
  }

  .footer::before {
    height: 2px;
    opacity: 1;
  }

  .footer-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    padding: 16px 16px 0;
    margin-bottom: 0;
    max-width: 100%;
  }

  .footer-col--brand {
    order: 1;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: center;
    padding: 28px 24px 24px;
    margin-bottom: 12px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    align-items: center;
  }

  .footer-logo-img {
    height: 42px;
    margin: 0 auto;
  }

  .footer-logo-text {
    background: linear-gradient(135deg, #38bdf8 0%, #e2e8f0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.35rem;
  }

  .footer-tagline {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
    max-width: 260px;
    margin: 0 auto;
  }

  .footer-contact-mini {
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.75rem;
  }

  .footer-contact-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    justify-content: center;
  }

  .footer-contact-link:hover {
    color: #38bdf8;
  }

  .footer-col--links {
    order: 2;
    width: calc(50% - 7px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 20px 8px;
    margin-bottom: 12px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .footer-col--links:first-of-type {
    margin-right: 6px;
  }

  .footer-col--links:last-of-type {
    margin-left: 0;
  }

  .footer-heading {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-heading::after {
    display: none;
  }

  .footer-linklist {
    gap: 0;
  }

  .footer-linklist li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .footer-linklist li:last-child {
    border-bottom: none;
  }

  .footer-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
  }

  .footer-link::before {
    display: none;
  }

  .footer-link::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
  }

  .footer-link:hover {
    color: #fff;
    padding-left: 0;
  }

  .footer-link:hover::after {
    color: #0ea5e9;
    transform: translateX(3px);
  }

  .footer-col--social {
    order: 3;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    margin-bottom: 12px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    align-items: center;
  }

  .footer-social-text {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
  }

  .social-links {
    justify-content: center;
    gap: 14px;
  }

  .social-links a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 1.15rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  }

  .social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(14, 165, 233, 0.25);
    border-color: rgba(14, 165, 233, 0.5);
    color: #fff;
    box-shadow: 0 12px 32px -8px rgba(14, 165, 233, 0.5);
  }

  .footer-location {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.75rem;
  }

  .footer-location i {
    color: #0ea5e9;
  }

  .footer-bottom {
    padding: 16px 24px;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0 16px;
  }

  .footer-bottom-container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
  }

  .footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
  }

  .footer-bottom-links a:hover {
    color: #38bdf8;
  }

  .footer-divider {
    color: rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 480px) {
  .footer-col--links {
    width: 100%;
    margin-right: 0 !important;
  }

  .footer-link {
    padding: 12px 0;
  }

  .social-links a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  .footer-link,
  .social-links a,
  .footer-logo-img {
    transition: none !important;
  }
}

.chatbot-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.chatbot-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  animation: pulse 2s infinite;
}

.chatbot-btn:hover {
  transform: scale(1.1);
  background-color: var(--primary-hover);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(14, 165, 233, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
  }
}

.hero {
  padding: 2rem 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  z-index: -1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

.hero-image {
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-animation {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(var(--primary-rgb), 0.2) 0%,
      transparent 70%);
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.shield-animation::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 70%;
  background-color: var(--bg-surface);
  border: 4px solid var(--primary);
  border-radius: 20px;
  clip-path: polygon(50% 0%, 100% 20%, 100% 70%, 50% 100%, 0% 70%, 0% 20%);
  box-shadow: 0 0 30px rgba(14, 165, 233, 0.4);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 1024px) {
  h1 {
    font-size: 2.75rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 3rem;
  }

  .hero-content p {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .btn-login {
    display: none !important;
  }

  .header-actions .cta-btn {
    display: none !important;
  }

  .nav-links {
    display: none !important;
  }

  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    z-index: 2001;
  }

  .mobile-menu-btn:hover {
    background-color: var(--border);
  }
}

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

  .hero-container {
    gap: 1.5rem;
  }

  .hero-image {
    aspect-ratio: 16/9;
  }

  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 2rem;
  }

  .header {
    position: fixed;
  }

  .footer {
    padding: 0;
    margin-top: 0;
    border-top: none;
    background: #0b1628;
    position: relative;
    overflow: hidden;
  }

  .footer::before {
    content: "";
    display: block;
    height: 2px;
    background: linear-gradient(90deg, #0ea5e9, #6366f1, #0ea5e9);
    width: 100%;
  }

  .footer-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    padding: 16px 16px 0;
    margin-bottom: 0;
    max-width: 100%;
  }

  .footer-col--brand {
    order: 1;
  }

  .footer-col--links {
    order: 2;
  }

  .footer-col--social {
    order: 3;
  }

  .footer-col--brand,
  .footer-col--social {
    width: 100%;
  }

  .footer-col--brand {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: center;
    padding: 28px 24px 24px;
    margin-bottom: 12px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .footer-col--brand .footer-logo {
    display: inline-block;
    margin-bottom: 12px;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .footer-col--brand .footer-logo:active {
    transform: scale(0.96);
  }

  .footer-col--brand p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 260px;
  }

  .footer-col--links {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 20px 8px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex: 1;
  }

  .footer-col--links {
    width: calc(50% - 7px);
    margin-bottom: 12px;
  }

  .footer-col--links:first-of-type {
    margin-right: 6px;
  }

  .footer-col--links:last-of-type {
    margin-left: 0;
  }

  .footer-col--links h3,
  .footer-col--social h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0;
    text-transform: none;
    background: none;
    padding-left: 0;
    border-radius: 0;
  }

  .footer-col--links ul {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .footer-col--links ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .footer-col--links ul li:last-child {
    border-bottom: none;
  }

  .footer-col--links ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    border-radius: 0;
    transition: color 0.2s ease;
    gap: 0;
  }

  .footer-col--links ul li a::before {
    display: none;
  }

  .footer-col--links ul li a i.fa-chevron-right {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition:
      color 0.2s ease,
      transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .footer-col--links ul li a:hover,
  .footer-col--links ul li a:focus {
    color: #fff;
    padding-left: 0;
  }

  .footer-col--links ul li a:hover i.fa-chevron-right,
  .footer-col--links ul li a:focus i.fa-chevron-right {
    color: #0ea5e9;
    transform: translateX(3px);
  }

  .footer-col--social {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 20px;
    text-align: center;
    margin-bottom: 12px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .footer-col--social h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: none;
    background: none;
    border-radius: 0;
  }

  .footer-social-text {
    margin-bottom: 12px;
  }

  .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
  }

  .social-links a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 1.15rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition:
      transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
      background 0.25s ease,
      box-shadow 0.25s ease;
  }

  .social-links a:hover,
  .social-links a:focus {
    transform: translateY(-5px) scale(1.1);
    background: rgba(14, 165, 233, 0.25);
    border-color: rgba(14, 165, 233, 0.5);
    color: #fff;
    box-shadow: 0 12px 32px -8px rgba(14, 165, 233, 0.5);
  }

  .social-links a:active {
    transform: scale(0.94);
  }

  .footer-bottom {
    padding: 16px 24px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0 16px;
  }

  .footer-bottom p {
    margin: 0;
    line-height: 1.5;
  }

  .footer-cta-strip {
    display: none;
  }

  .navbar .nav-item-dropdown,
  .navbar .nav-dropdown-menu {
    display: none !important;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  padding-top: calc(var(--header-height) + -2rem);
  padding-bottom: 2rem;
  min-height: auto;
}

.hero-image {
  aspect-ratio: auto;
}

.hero-image video {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(14, 165, 233, 0.3);
  display: block;
}

.video-sound-wrapper {
  position: absolute;
  bottom: 8px;
  right: 16px;
  z-index: 10;
}

.section {
  padding: 5rem 0;
}

@media (max-width: 1024px) {
  .hero {
    padding-top: calc(var(--header-height) + -2rem);
    padding-bottom: 4rem;
  }

  .hero-image {
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: calc(var(--header-height) + -2rem);
    padding-bottom: 3rem;
  }

  .hero-content h1 {
    font-size: clamp(1.75rem, 5.5vw, 2.25rem);
    line-height: 1.2;
    margin-bottom: 1.25rem;
  }

  .hero-content p {
    font-size: 1.1rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
    max-width: 480px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.875rem;
    width: 100%;
    max-width: 340px;
    margin: 0;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-image {
    margin-top: 0.5rem;
  }

  .section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: calc(var(--header-height) + -2rem);
    padding-bottom: 2.5rem;
  }

  .hero-content h1 {
    font-size: clamp(1.5rem, 6vw, 1.875rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    gap: 0.75rem;
    max-width: 100%;
  }

  .hero-image video {
    border-radius: 12px;
  }

  .sound-toggle-btn {
    padding: 6px 14px;
    font-size: 0.85rem;
  }

  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 1.45rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }
}

html.dark #siteLogo {
  height: 72px !important;
}

html.dark #loginLogo {
  height: 65px !important;
}

html.dark #mobileSiteLogo {
  height: 52px !important;
}

body.no-scroll {
  overflow: hidden !important;
}

.mobile-dropdown-toggle.active {
  color: var(--primary) !important;
}

.mobile-dropdown-toggle.active i {
  color: var(--primary) !important;
}

/* Professional Mobile & Tablet Responsiveness Enhancements */
@media (max-width: 1024px) {

  .header-actions .cta-btn,
  .header-actions .btn-login,
  .header-actions .btn-primary {
    display: none !important;
  }

  .navbar {
    display: none !important;
  }
}

@media (max-width: 768px) {

  #siteLogo,
  html.dark #siteLogo {
    height: 48px !important;
  }

  #mobileSiteLogo,
  html.dark #mobileSiteLogo {
    height: 40px !important;
  }

  .header {
    height: 70px !important;
  }

  :root {
    --header-height: 70px !important;
  }

  .header-actions {
    gap: 0.75rem !important;
  }

  .mobile-menu-btn {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.15rem !important;
  }

  .social-links {
    gap: 8px !important;
    flex-wrap: nowrap !important;
  }

  .social-links a {
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
    font-size: 0.95rem !important;
  }

  .footer-container {
    padding: 24px 16px 0 !important;
  }

  .footer-col--brand,
  .footer-col--links,
  .footer-col--social {
    border-radius: 0 !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px !important;
  }

  h1 {
    font-size: 1.85rem !important;
  }

  h2 {
    font-size: 1.5rem !important;
  }

  h3 {
    font-size: 1.3rem !important;
  }

  .section {
    padding: 3rem 0 !important;
  }

  .service-card {
    padding: 1.75rem 1.25rem !important;
  }

  .learn-more {
    flex-wrap: wrap !important;
  }
}

/* Floating Side Social Media Icons */
.side-social-share {
  position: fixed;
  right: 35px;
  bottom: 175px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.4s;
  pointer-events: auto;
}

.side-social-share.hide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  pointer-events: none;
}

html.intro-active .side-social-share {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.no-scroll .side-social-share {
  display: none !important;
}

.side-social-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-surface);
  border: 1.5px solid var(--border);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.side-social-whatsapp {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.2);
}

.side-social-facebook {
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.2);
}

.side-social-instagram {
  color: #e1306c;
  border-color: rgba(225, 48, 108, 0.2);
}

.side-social-linkedin {
  color: #0077b5;
  border-color: rgba(0, 119, 181, 0.2);
}

.side-social-whatsapp:hover {
  background-color: #25d366;
  color: #ffffff;
  border-color: #25d366;
  transform: translateX(6px) scale(1.08);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.side-social-facebook:hover {
  background-color: #1877f2;
  color: #ffffff;
  border-color: #1877f2;
  transform: translateX(6px) scale(1.08);
  box-shadow: 0 8px 24px rgba(24, 119, 242, 0.4);
}

.side-social-instagram:hover {
  background: linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  color: #ffffff;
  border-color: transparent;
  transform: translateX(6px) scale(1.08);
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.4);
}

.side-social-linkedin:hover {
  background-color: #0077b5;
  color: #ffffff;
  border-color: #0077b5;
  transform: translateX(6px) scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 119, 181, 0.4);
}

.scroll-to-top {
  position: fixed;
  bottom: 105px;
  right: 35px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--bg-surface);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.9);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
  background: var(--primary-gradient);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px -6px rgba(var(--primary-rgb), 0.6);
}

.scroll-to-top:active {
  transform: translateY(-2px) scale(0.95);
}

@media (max-width: 768px) {
  .side-social-share {
    right: 15px;
    bottom: 155px;
  }

  .side-social-item {
    width: 40px;
    height: 40px;
    font-size: 1.05rem;
  }

  .scroll-to-top {
    right: 15px;
    bottom: 95px;
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }
}