:root {
  --color-primary: #000000;
  --color-secondary: #1d1d1f;
  --color-accent: #656f77;
  --color-accent-hover: #4a5259;
  --color-bg: #ffffff;
  --color-bg-secondary: #f5f5f7;
  --color-text: #1d1d1f;
  --color-text-light: #86868b;
  --color-card: #ffffff;
  --color-border: #d2d2d7;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --radius: 18px;
  --radius-lg: 24px;
  
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  margin: 18px;
  text-align: center;
  font-family: 'Inter';
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p, span, a, li, label, input, textarea, button, div {
  font-family: var(--font-body);
  text-align: center;
}

.harvard-mega-menu p,
.harvard-mega-menu span,
.harvard-mega-menu a,
.harvard-mega-menu div {
  font-family: inherit;
}

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

* {
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.navbar {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-container {
  display: grid;
  grid-template-columns: minmax(auto, 150px) 1fr minmax(auto, 480px);
  align-items: center;
  padding: 12px 3%;
  max-width: 100%;
  margin: 0;
  gap: 20px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
  justify-self: start;
}

.logo:hover {
  opacity: 0.7;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.logo span {
  color: var(--color-primary);
  font-size: 1.4em;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  justify-content: center;
  margin: 0;
  padding: 0;
  justify-self: center;
  margin-left: 220px;
}



.nav-links a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.875rem;
  position: relative;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.6;
}

.nav-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  justify-self: end;
}

.login-btn {
  background: var(--color-primary);
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 980px;
  font-size: 0.875rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-btn:hover {
  background: var(--color-secondary);
  transform: scale(1.02);
}

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

.dropdown-trigger {
  cursor: pointer;
}

.dropdown-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  visibility: hidden;
  pointer-events: none;
}

.dropdown-menu.active {
  visibility: visible;
  pointer-events: auto;
}

.dropdown-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu.active .dropdown-backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.dropdown-content {
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translateX(-50%) translateY(-30px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(20px);
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
  padding: 24px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  min-width: 500px;
  pointer-events: none;
}

.dropdown-menu.active .dropdown-content {
  opacity: 1;
  transform: translateX(-50%) translateY(20px);
  pointer-events: auto;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dropdown-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  padding-left: 12px;
}

.dropdown-item {
  display: block;
  padding: 8px 12px;
  color: var(--color-text);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9375rem;
  font-weight: 400;
  opacity: 0;
  transform: translateX(-10px);
  animation: slideInLeft 0.4s ease forwards;
}

.dropdown-item:nth-child(1) { animation-delay: 0.05s; }
.dropdown-item:nth-child(2) { animation-delay: 0.1s; }
.dropdown-item:nth-child(3) { animation-delay: 0.15s; }
.dropdown-item:nth-child(4) { animation-delay: 0.2s; }
.dropdown-item:nth-child(5) { animation-delay: 0.25s; }
.dropdown-item:nth-child(6) { animation-delay: 0.3s; }
.dropdown-item:nth-child(7) { animation-delay: 0.35s; }

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.dropdown-item:hover {
  background: rgba(0, 0, 0, 0.06);
  transform: translateX(4px);
  padding-left: 16px;
}

.dropdown-item h4 {
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0;
  color: var(--color-text);
}

.nav-security .dropdown-trigger {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.05) 100%);
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.3), inset 0 0 10px rgba(255, 193, 7, 0.1);
  border-radius: 8px;
  padding: 8px 16px;
  animation: securityGlow 3s ease-in-out infinite;
}

@keyframes securityGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.3), inset 0 0 10px rgba(255, 193, 7, 0.1);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.5), inset 0 0 15px rgba(255, 193, 7, 0.2);
  }
}

.nav-security .dropdown-trigger:hover {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 152, 0, 0.1) 100%);
  box-shadow: 0 0 25px rgba(255, 193, 7, 0.4), inset 0 0 12px rgba(255, 193, 7, 0.15);
}

.dropdown-menu-security {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  visibility: hidden;
  pointer-events: none;
}

.dropdown-menu-security.active {
  visibility: visible;
  pointer-events: auto;
}

.dropdown-menu-security .dropdown-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu-security.active .dropdown-backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.dropdown-content-security {
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translateX(-50%) translateY(-30px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(20px);
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(255, 193, 7, 0.3), 0 0 0 1px rgba(255, 193, 7, 0.2);
  padding: 12px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 320px;
  pointer-events: none;
}

.dropdown-menu-security.active .dropdown-content-security {
  opacity: 1;
  transform: translateX(-50%) translateY(20px);
  pointer-events: auto;
}

.dropdown-security-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: var(--color-text);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9375rem;
  font-weight: 500;
  opacity: 0;
  transform: translateX(-10px);
  animation: slideInLeft 0.4s ease forwards;
  border: 1px solid transparent;
}

.dropdown-security-item:first-child {
  animation-delay: 0.05s;
  margin-bottom: 6px;
}

.dropdown-security-item:last-child {
  animation-delay: 0.1s;
}

.dropdown-security-item:hover {
  background: rgba(255, 193, 7, 0.1);
  transform: translateX(0);
  border-color: rgba(255, 193, 7, 0.3);
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.2);
}

.dropdown-security-item i {
  width: 20px;
  height: 20px;
  color: #FFC107;
}

.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
  padding: 120px 6%;
}

.hero-text {
  flex: 1;
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero-text h2 {
  color: var(--color-text);
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.cta-btn {
  background: var(--color-accent);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 980px;
  cursor: pointer;
  font-weight: 400;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
  width: 300px;
  height: 300px;
}

.cta-btn:hover {
  transform: scale(1.05);
  background: var(--color-accent-hover);
  box-shadow: 0 8px 24px rgba(147, 161, 173, 0.35);
}

.cta-btn-apk {
  background: linear-gradient(135deg, #3ddc84 0%, #2ba568 100%);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 980px;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(61, 220, 132, 0.3);
}

.cta-btn-apk::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-btn-apk:hover::before {
  width: 300px;
  height: 300px;
}

.cta-btn-apk:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #45e592 0%, #2fb370 100%);
  box-shadow: 0 8px 24px rgba(61, 220, 132, 0.5);
}

.cta-btn-secondary {
  background: transparent;
  color: var(--color-accent);
  padding: 12px 24px;
  border: 1px solid var(--color-accent);
  border-radius: 980px;
  cursor: pointer;
  font-weight: 400;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.cta-btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.cta-btn-secondary:hover::before {
  left: 0;
}

.cta-btn-secondary:hover {
  color: white;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 113, 227, 0.2);
  transform: scale(1.02);
}

.link-arrow {
  color: var(--color-accent);
  text-decoration: none;
  font-size: 1.125rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
}

.link-arrow::after {
  content: '→';
  position: absolute;
  right: -20px;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-arrow:hover {
  color: var(--color-accent-hover);
  transform: translateX(4px);
}

.link-arrow:hover::after {
  right: -24px;
}

.product-section {
  padding: 100px 6%;
  text-align: center;
  background: white;
}

.hero-main {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--color-text);
  padding: 80px 6%;
  position: relative;
  gap: 80px;
  overflow: hidden;
}

.hero-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../../images/STOCK1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.7;
  z-index: 0;
}

.hero-main::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, 
    rgba(255,255,255,0.2) 0%,
    rgba(255,255,255,0.3) 20%,
    rgba(255,255,255,0.45) 40%,
    rgba(255,255,255,0.6) 60%,
    rgba(255,255,255,0.75) 75%,
    rgba(255,255,255,0.88) 88%,
    rgba(255,255,255,0.98) 100%);
  z-index: 1;
}

.hero-logo-side {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.hero-logo-animate {
  width: 400px;
  height: 400px;
  animation: fadeInBounce 1.2s ease-out, gentleBounce 3s ease-in-out 1.2s infinite;
}

@keyframes fadeInBounce {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(-100px) rotate(-15deg);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05) translateY(15px) rotate(3deg);
  }
  70% {
    transform: scale(0.95) translateY(-8px) rotate(-2deg);
  }
  85% {
    transform: scale(1.02) translateY(4px) rotate(1deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0) rotate(0deg);
  }
}

@keyframes gentleBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-content {
  flex: 1;
  text-align: left;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  text-align: left;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--color-text);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards 0.2s;
}

.hero-content p {
  text-align: left;
  padding-left: 31px;
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
  font-weight: 400;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards 0.4s;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards 0.6s;
}

.product-section.bg-light {
  background: var(--color-bg-secondary);
}

.section-content {
  max-width: 980px;
  margin: 0 auto;
}

.section-content h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--color-text-light);
  margin-bottom: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.split-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  background: #ffffff;
}

.split-banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 80px;
  text-align: center;
}

.split-banner-title {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 400;
  color: #1e1e1e;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.split-banner-subtitle {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: #656f77;
  margin-bottom: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.split-banner-description {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #86868b;
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 480px;
  letter-spacing: -0.01em;
}

.split-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: fit-content;
  background: transparent;
  color: #1e1e1e;
  border: 2px solid #1e1e1e;
}

.split-banner-btn:hover {
  background: #1e1e1e;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 30, 30, 0.25);
}

/* Contenedor de botones con info */
.split-banner-btn-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Botón circular de información */
.split-banner-info-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #1e1e1e;
  background: transparent;
  color: #1e1e1e;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.split-banner-info-btn i {
  width: 20px;
  height: 20px;
}

.split-banner-info-btn:hover {
  background: #1e1e1e;
  color: #ffffff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(30, 30, 30, 0.25);
}

.split-banner-btn-android {
  gap: 10px;
  background: #3ddc84;
  color: #ffffff;
  border: 2px solid #3ddc84;
  text-decoration: none;
}

.split-banner-btn-android:hover {
  background: #32c973;
  border-color: #32c973;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(61, 220, 132, 0.35);
}

.split-banner-android {
  background: #fcfcfe;
}

.split-banner-image-android {
  position: relative;
}

.android-download-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 80%);
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  background: transparent;
  color: #3ddc84;
  border: 2px solid #3ddc84;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  white-space: nowrap;
}

.android-download-btn:hover {
  background: #3ddc84;
  color: #ffffff;
  transform: translate(-50%, 80%) translateY(-2px);
  box-shadow: 0 8px 25px rgba(61, 220, 132, 0.35);
}

.split-banner-image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.split-banner-image::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 300px;
  pointer-events: none;
  z-index: 1;
}

.split-banner-img-left .split-banner-image::after {
  right: 0;
  left: auto;
  background: linear-gradient(to left, 
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 15%,
    rgba(255, 255, 255, 0.85) 35%,
    rgba(255, 255, 255, 0.5) 60%,
    rgba(255, 255, 255, 0) 100%);
}

.split-banner-img-right {
  background: #f8f9fa;
}

.split-banner-img-right .split-banner-image::after {
  left: 0;
  right: auto;
  background: linear-gradient(to right, 
    rgba(248, 249, 250, 1) 0%,
    rgba(248, 249, 250, 1) 15%,
    rgba(248, 249, 250, 0.85) 35%,
    rgba(248, 249, 250, 0.5) 60%,
    rgba(248, 249, 250, 0) 100%);
}

.split-banner-image img,
.split-banner-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-banner-img-left .split-banner-image video {
  object-position: -10% center;
}

.split-banner-img-right .split-banner-image video {
  object-position: 90% center;
}

@media (max-width: 992px) {
  .split-banner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .split-banner-content {
    padding: 50px 40px;
    order: 2 !important;
    text-align: center;
  }
  
  .split-banner-image {
    order: 1 !important;
    min-height: 300px;
  }
  
  .split-banner-title {
    font-size: 2.5rem;
  }
  
  .split-banner-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .split-banner-btn {
    margin: 0 auto;
  }
  
  .split-banner-btn-container {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .split-banner-content {
    padding: 40px 24px;
  }
  
  .split-banner-title {
    font-size: 2rem;
  }
  
  .split-banner-image {
    min-height: 250px;
  }
}


.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal[data-delay="1"] {
  transition-delay: 0.1s;
}

.scroll-reveal[data-delay="2"] {
  transition-delay: 0.2s;
}

.scroll-reveal[data-delay="3"] {
  transition-delay: 0.3s;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-image {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-image.visible {
  opacity: 1;
}


.section-description {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.01em;
}

.section-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 80px 6%;
  max-width: 1400px;
  margin: 0 auto;
  background: white;
}

.feature-card {
  padding: 48px 24px;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }

.feature-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  color: var(--color-accent);
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  animation: floatIcon 3s ease-in-out infinite;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

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

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.feature-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.6;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.footer {
  background: var(--color-bg-secondary);
  padding: 40px 6%;
  border-top: 1px solid var(--color-border);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 0.875rem;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .nav-container {
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    order: 3;
    justify-content: center;
    gap: 16px;
    padding: 8px 0;
  }

  .nav-buttons {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .login-btn,
  .login-btn-admin {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .hero-main {
    flex-direction: column;
    gap: 40px;
    padding: 60px 20px;
  }
  
  .hero-logo-animate {
    width: 200px;
    height: 200px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-btn,
  .cta-btn-apk {
    padding: 12px 24px;
    font-size: 1rem;
  }
  
  .section-content h2 {
    font-size: 2.5rem;
  }
  
  .section-subtitle {
    font-size: 1.25rem;
  }
  
  .nav-links {
    display: none;
  }
}

.hero {
  display: none;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-logo {
  width: 100%;
  max-width: 500px;
  animation: logoEntrance 1.5s ease-out forwards, logoFloat 3s ease-in-out 1.5s infinite;
  cursor: pointer;
  filter: drop-shadow(0 5px 15px rgba(30, 60, 114, 0.2));
}

@keyframes logoEntrance {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-10deg);
    filter: blur(10px);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05) rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter: blur(0);
  }
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.02);
  }
}

.roles {
  text-align: center;
  padding: 100px 8%;
  background: var(--color-bg-secondary);
  position: relative;
}

.roles h2 {
  font-family: var(--font-heading);
  font-size: 2.8em;
  color: var(--color-text);
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.roles h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  margin: 20px auto 40px;
  border-radius: 2px;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.role-card {
  background: white;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.role-card:nth-child(1) { animation-delay: 0.1s; }
.role-card:nth-child(2) { animation-delay: 0.3s; }
.role-card:nth-child(3) { animation-delay: 0.5s; }

.role-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.role-card:hover::before {
  transform: scaleX(1);
}

.role-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.role-card i {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: var(--color-primary);
  background: linear-gradient(135deg, rgba(30, 60, 114, 0.1), rgba(42, 82, 152, 0.1));
  padding: 15px;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.role-card:hover i {
  transform: scale(1.15) rotate(10deg);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  animation: none;
}

.role-card h3 {
  font-family: 'Inter';
  margin-bottom: 15px;
  color: var(--color-text);
  font-size: 1.4em;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.role-card p {
  font-family: var(--font-body);
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: 0.95em;
  font-weight: 400;
}

.modules {
  text-align: center;
  padding: 100px 8%;
  background: white;
  position: relative;
}

.modules::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100"><path fill="%23f8f9ff" d="M0,50 Q360,100 720,50 T1440,50 L1440,0 L0,0 Z"></path></svg>');
  background-size: cover;
}

.modules h2 {
  font-family: var(--font-heading);
  font-size: 2.8em;
  color: var(--color-text);
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.modules h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  margin: 20px auto 40px;
  border-radius: 2px;
}

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

.module-card {
  background: linear-gradient(135deg, rgba(30, 60, 114, 0.05), rgba(42, 82, 152, 0.05));
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.95);
  animation: fadeInScale 0.8s ease forwards;
}

.module-card:nth-child(1) { animation-delay: 0.1s; }
.module-card:nth-child(2) { animation-delay: 0.2s; }
.module-card:nth-child(3) { animation-delay: 0.3s; }
.module-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.module-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, transparent, rgba(30, 60, 114, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.module-card:hover::before {
  top: -100%;
  right: -100%;
}

.module-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
  background: linear-gradient(135deg, rgba(30, 60, 114, 0.1), rgba(42, 82, 152, 0.1));
}

.module-card i {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: white;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: 15px;
  border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.module-card:hover i {
  transform: rotateY(360deg);
}

.module-card:hover i {
  transform: scale(1.1) rotate(-5deg);
}

.module-card h3 {
  font-family: 'Inter';
  margin-bottom: 15px;
  color: var(--color-text);
  font-size: 1.3em;
  font-weight: 400;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.module-card p {
  font-family: var(--font-body);
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: 0.95em;
  font-weight: 400;
  position: relative;
  z-index: 1;
}


.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 100px 8%;
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, white 100%);
}

.about-hero .hero-text h1 {
  font-family: var(--font-heading);
  font-size: 2.8em;
  margin-bottom: 25px;
  color: var(--color-primary);
  font-weight: 400;
}

.about-hero .hero-text p {
  font-size: 1.15em;
  line-height: 1.8;
  color: var(--color-text-light);
}

.about-hero .hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-hero .hero-image img:hover {
  transform: scale(1.03) !important;
  transition: transform 0.3s ease;
}

.about-section {
  padding: 80px 8%;
  background: white;
}

.about-section h2 {
  font-family: var(--font-heading);
  text-align: center;
  font-size: 2.8em;
  color: var(--color-primary);
  margin-bottom: 20px;
  font-weight: 400;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-card {
  background: linear-gradient(135deg, var(--color-bg-secondary), white);
  padding: 35px 25px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 2px solid var(--color-border);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.team-card i {
  width: 60px;
  height: 60px;
  color: white;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: 15px;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.team-card:hover i {
  transform: scale(1.1) rotate(10deg);
}

.team-card h4 {
  font-family: 'Inter';
  color: var(--color-text);
  font-size: 1.2em;
  margin-bottom: 8px;
  font-weight: 400;
}

.team-card p {
  color: var(--color-text-light);
  font-size: 0.9em;
}

footer {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: white;
  text-align: center;
  padding: 50px 8%;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
}

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

footer h3 {
  margin-bottom: 20px;
  font-size: 1.5em;
  font-weight: 600;
}

footer p {
  margin: 12px 0;
  opacity: 0.9;
  font-size: 0.95em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

footer i {
  width: 18px;
  height: 18px;
  opacity: 0.8;
}

.footer-link {
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 8px;
}

.footer-link:hover {
  color: #93a1ad;
}

.footer-link i {
  transition: transform 0.3s ease;
}

.footer-link:hover i {
  transform: scale(1.2);
}

.mapa-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mapa-modal.active {
  display: flex;
  opacity: 1;
}

.mapa-modal-content {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s ease;
  overflow: hidden;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mapa-modal-header {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mapa-modal-header h3 {
  margin: 0;
  font-size: 1.5em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mapa-modal-header i {
  width: 24px;
  height: 24px;
}

.mapa-close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
}

.mapa-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.mapa-close-btn i {
  width: 24px;
  height: 24px;
}

.mapa-container {
  padding: 0;
  background: #f5f5f5;
}

.mapa-actions {
  padding: 25px 30px;
  background: var(--color-bg-secondary);
  display: flex;
  justify-content: center;
}

.mapa-directions-btn {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  padding: 14px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.mapa-directions-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.mapa-directions-btn i {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .mapa-modal-content {
    max-width: 100%;
    margin: 10px;
  }

  .mapa-container iframe {
    height: 300px;
  }
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 6%;
    min-height: auto;
  }

  .hero-text h2 {
    font-size: 2.5em;
  }

  .hero-image img {
    max-width: 350px;
  }

  .about-hero {
    grid-template-columns: 1fr;
    padding: 60px 6%;
  }

  .nav-links {
    display: none;
  }

  .role-grid,
  .module-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

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

.role-card,
.module-card,
.team-card {
  animation: fadeIn 0.6s ease forwards;
  opacity: 0;
}

.role-card:nth-child(1) { animation-delay: 0.1s; }
.role-card:nth-child(2) { animation-delay: 0.2s; }
.role-card:nth-child(3) { animation-delay: 0.3s; }

.module-card:nth-child(1) { animation-delay: 0.1s; }
.module-card:nth-child(2) { animation-delay: 0.2s; }
.module-card:nth-child(3) { animation-delay: 0.3s; }
.module-card:nth-child(4) { animation-delay: 0.4s; }

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }
.team-card:nth-child(4) { animation-delay: 0.4s; }

.login-body {
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #e8eef3 0%, #d4dce6 100%);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.login-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.login-background .floating-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(66, 99, 140, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatLogin 6s ease-in-out infinite;
  opacity: 0;
  animation-fill-mode: forwards;
}

.login-background .floating-icon svg {
  width: 40px;
  height: 40px;
  color: rgba(66, 99, 140, 0.3);
  stroke-width: 1.5;
}

.login-background .icon-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.login-background .icon-2 {
  top: 20%;
  right: 15%;
  animation-delay: 1s;
}

.login-background .icon-3 {
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}

.login-background .icon-4 {
  bottom: 15%;
  right: 10%;
  animation-delay: 3s;
}

@keyframes floatLogin {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
    opacity: 0.7;
  }
}

.login-body::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(66, 99, 140, 0.05) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
  z-index: 0;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(50px, 50px); }
}

.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-side-panel {
  flex: 1;
  background-image: url('../../images/STOCK3.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: none;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
  position: relative;
  overflow: hidden;
}

.login-side-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1;
  pointer-events: none;
  transition: backdrop-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius-lg);
}

.login-side-panel:hover::before {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.side-panel-content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 3;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.side-panel-content:hover {
  transform: translateY(-4px);
}

.side-panel-content p {
  color: white;
}

.side-panel-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  animation: bounceIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
  position: relative;
}

.side-panel-icon::before,
.side-panel-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s ease-out infinite;
  opacity: 0;
}

.side-panel-icon::after {
  animation-delay: 1s;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

.side-panel-icon i,
.side-panel-icon svg {
  width: 36px;
  height: 36px;
  color: white;
  stroke: white;
  animation: floatIcon 3s ease-in-out 1.5s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.login-side-panel h2 {
  font-size: 1.875rem;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  margin-bottom: 12px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.5px;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.login-side-panel > p {
  font-size: 0.9375rem;
  color: white;
  margin-bottom: 32px;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
}

.login-features {
  margin: 32px 0;
}

.login-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  margin-bottom: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInFadeLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.login-feature-item:nth-child(1) { animation-delay: 0.8s; }
.login-feature-item:nth-child(2) { animation-delay: 0.9s; }
.login-feature-item:nth-child(3) { animation-delay: 1s; }

@keyframes slideInFadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.login-feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.login-feature-item i,
.login-feature-item svg {
  width: 20px;
  height: 20px;
  color: white;
  stroke: white;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.login-feature-item span {
  font-size: 0.9375rem;
  font-weight: 400;
  color: white;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.login-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.login-stat {
  background: rgba(255, 255, 255, 0.15);
  padding: 20px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: scale(0.8);
  animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.login-stat:nth-child(1) { animation-delay: 1.1s; }
.login-stat:nth-child(2) { animation-delay: 1.2s; }

@keyframes scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.login-stat:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px) scale(1.02);
}

.login-stat i,
.login-stat svg {
  width: 28px;
  height: 28px;
  color: white;
  stroke: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.login-stat div {
  text-align: left;
}

.login-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.login-stat span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.login-box {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  width: 100%;
  max-width: 440px;
  text-align: center;
  opacity: 0;
  transform: translateX(30px);
  animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.login-header {
  margin-bottom: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: bounceIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s backwards;
}

.login-logo:hover {
  transform: scale(1.05) rotate(5deg);
}

.login-header h1 {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
}

.login-header p {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  font-weight: 400;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}

#loginForm {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 16px;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}

.form-group {
  margin-bottom: 0;
}

.input-wrapper {
  position: relative;
}

#loginForm input {
  text-align: left;
  width: 100%;
  padding: 14px 16px 14px 44px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  font-size: 0.9375rem;
  background: var(--color-bg);
  color: var(--color-text);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  -webkit-appearance: none;
  appearance: none;
}

#loginForm input::placeholder {
  color: var(--color-text-light);
}

#loginForm input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
  background: var(--color-bg);
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-light);
  width: 18px;
  height: 18px;
  pointer-events: none;
  transition: color 0.2s ease;
}

#loginForm input:focus ~ .input-icon {
  color: var(--color-accent);
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--color-text-light);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border-radius: 6px;
}

.toggle-password:hover {
  color: var(--color-primary);
  background: rgba(0, 0, 0, 0.04);
}

.toggle-password:active {
  transform: translateY(-50%) scale(0.95);
}

.toggle-password i,
.toggle-password svg {
  width: 18px;
  height: 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-password.eye-closing i,
.toggle-password.eye-closing svg {
  animation: eyeClose 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-password.eye-opening i,
.toggle-password.eye-opening svg {
  animation: eyeOpen 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes eyeClose {
  0% {
    transform: scaleY(1);
    opacity: 1;
  }
  50% {
    transform: scaleY(0.1);
    opacity: 0.5;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes eyeOpen {
  0% {
    transform: scaleY(0.1) rotate(-10deg);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1.2) rotate(5deg);
    opacity: 0.8;
  }
  100% {
    transform: scaleY(1) rotate(0deg);
    opacity: 1;
  }
}

.form-options {
  display: flex;
  justify-content: flex-end;
  margin: 8px 0 16px 0;
}

.forgot-password {
  color: var(--color-accent);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.forgot-password:hover {
  opacity: 0.7;
}

.login-submit {
  background: var(--color-primary);
  color: white;
  border: none;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.9375rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  position: relative;
  overflow: hidden;
}

.login-submit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.login-submit:hover::before {
  width: 300px;
  height: 300px;
}

.login-submit:hover {
  background: var(--color-secondary);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.login-submit i {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.login-submit:hover i {
  transform: translateX(3px);
}

.login-message {
  margin-top: 16px;
  font-size: 0.875rem;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
}

.login-divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
  color: var(--color-text-light);
  font-size: 0.8125rem;
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.login-divider span {
  padding: 0 16px;
  font-weight: 400;
}

.register-text {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text);
  margin: 20px 0;
  opacity: 0;
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.1s forwards;
}

.register-link {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.register-link:hover {
  opacity: 0.7;
}

.login-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
  gap: 12px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

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

.back-link i {
  width: 16px;
  height: 16px;
}

.login-help a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.login-help a:hover {
  color: var(--color-primary);
}

.login-help i {
  width: 16px;
  height: 16px;
}

@media (min-width: 1024px) {
  .login-side-panel {
    display: block;
  }
}

@media (max-width: 768px) {
  .login-wrapper {
    flex-direction: column;
    gap: 24px;
  }
  
  .login-box {
    padding: 40px 28px;
  }
  
  .login-footer {
    flex-direction: column;
    gap: 16px;
  }
}

.about-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 20px;
  background-color: #f5f7fa;
}

.about-hero .hero-text {
  flex: 1 1 500px;
}

.about-hero .hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.about-hero .hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-hero .hero-image {
  flex: 1 1 800px;
  text-align: center;
}

.about-hero .hero-image img {
  max-width: 800px;
}

.about-section {
  padding: 50px 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.about-card {
  background-color: #ffffff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.about-card i {
  font-size: 2rem;
  color: #1976d2;
  margin-bottom: 15px;
  display: block;
}

.about-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.about-card p {
  font-size: 1rem;
  line-height: 1.5;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.team-card {
  background-color: #f5f7fa;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-3px);
}

.team-card i {
  font-size: 2rem;
  color: #1976d2;
  margin-bottom: 10px;
}

.team-card h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.team-card p {
  font-size: 0.9rem;
  color: #555;
}

.register-box {
  background: var(--color-card);
  padding: 10px 50px;
  border-radius: 0 16px 16px 0;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 520px;
  min-height: 870px;
  max-height: 720px;
  height: 720px;
  overflow-y: hidden;
  border: 1px solid var(--color-border);
  border-left: none;
  opacity: 0;
  transform: translateX(30px);
  animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.register-form {
  margin-top: 30px;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.form-row .form-group:nth-child(1) { animation-delay: 0.6s; }
.form-row .form-group:nth-child(2) { animation-delay: 0.7s; }
.form-group:not(.form-row .form-group) { animation-delay: 0.8s; }

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #4a5259;
  margin-bottom: 8px;
}

.form-group label i {
  width: 16px;
  height: 16px;
  color: #5d646b;
}

.form-group input {
  width: 100%;
  padding: 14px 16px 14px 12px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  font-size: 0.9375rem;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--color-bg);
  color: var(--color-text);
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder {
  color: var(--color-text-light);
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-accent);
  background: var(--color-bg);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.form-group input:focus ~ .input-icon {
  color: var(--color-accent);
}

.input-hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #666;
  font-weight: 400;
}

.password-strength {
  margin: 20px 0 25px 0;
  opacity: 0;
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}

.strength-bar {
  width: 100%;
  height: 6px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.strength-fill {
  height: 100%;
  width: 0%;
  background: #e0e0e0;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
  border-radius: 10px;
}

.strength-text {
  font-size: 13px;
  font-weight: 600;
  color: #999;
  margin: 0;
  text-align: center;
}

.register-form .login-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 25px auto 0 auto;
  width: fit-content;
  opacity: 0;
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
}

.register-form .login-submit i {
  width: 20px;
  height: 20px;
}

.register-panel {
  background-image: url('../../images/STOCK2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.register-benefits {
  margin-top: 30px;
  text-align: left;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.3s forwards;
}

.register-benefits h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.register-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.register-benefits ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 0;
  animation: slideInFadeLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.register-benefits ul li:nth-child(1) { animation-delay: 1.4s; }
.register-benefits ul li:nth-child(2) { animation-delay: 1.5s; }
.register-benefits ul li:nth-child(3) { animation-delay: 1.6s; }
.register-benefits ul li:nth-child(4) { animation-delay: 1.7s; }

.register-benefits ul li:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.register-benefits ul li i,
.register-benefits ul li svg {
  width: 20px;
  height: 20px;
  color: white;
  stroke: white;
  flex-shrink: 0;
  margin-top: 2px;
}

.register-benefits ul li span {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
  color: white;
}

@media (max-width: 768px) {
  .register-box {
    padding: 35px 30px;
    max-width: 95%;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .login-header h1 {
    font-size: 2rem;
  }

  .login-header p {
    font-size: 0.95rem;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

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

  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .cta-btn,
  .cta-btn-apk {
    flex: 0 0 auto;
    min-width: 160px;
  }
}

@media (max-width: 480px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  .container,
  .main-container,
  .content-wrapper {
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
  }

  .register-box,
  .login-box {
    padding: 20px 15px;
    margin: 10px;
    width: calc(100% - 20px);
    max-width: 100%;
    box-sizing: border-box;
  }

  .register-box h2,
  .login-box h2 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    word-wrap: break-word;
  }

  .form-group {
    margin-bottom: 14px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
  }

  .form-group label {
    font-size: 13px;
    margin-bottom: 6px;
    display: block;
  }

  .submit-btn,
  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
  }

  .login-footer,
  .register-footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .login-footer a,
  .register-footer a {
    font-size: 13px;
  }

  .hero-main {
    padding: 80px 15px 40px 15px;
    min-height: auto;
  }

  .hero-logo-side {
    width: 150px;
    height: 150px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

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

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
    margin-top: 20px;
  }

  .cta-btn,
  .cta-btn-apk {
    width: 100%;
    max-width: 260px;
    padding: 12px 20px;
    font-size: 0.9rem;
    justify-content: center;
  }

  .link-arrow {
    font-size: 0.85rem;
    margin-top: 8px;
  }

  .nav-container {
    padding: 10px 15px;
  }

  .nav-links {
    display: none;
  }

  .logo {
    width: auto;
  }

  .logo span {
    font-size: 1.1em;
  }

  .nav-buttons {
    gap: 6px;
    width: auto;
    flex: 1;
    justify-content: flex-end;
  }

  .login-btn,
  .login-btn-admin {
    padding: 7px 12px;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .login-btn-admin i,
  .login-btn i {
    display: none;
  }

  .section-content,
  .product-section {
    padding: 30px 15px;
  }

  .section-content h2 {
    font-size: 1.6rem;
    word-wrap: break-word;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .card,
  .feature-card,
  .info-card,
  .platform-card,
  .selector-card {
    padding: 20px 16px;
    margin: 12px 10px;
    width: calc(100% - 20px);
    box-sizing: border-box;
  }

  .platform-card h3,
  .platform-card p,
  .selector-card h3,
  .selector-card p,
  .selector-card li {
    text-shadow: 0 2px 6px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.5);
  }

  .selector-card .card-content {
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 16px;
  }

  .selector-card .card-icon {
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  }

  .grid,
  .features-grid,
  .cards-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }

  .table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  table {
    min-width: 600px;
    font-size: 12px;
  }

  table th,
  table td {
    padding: 8px 6px;
    white-space: nowrap;
  }

  .modal-content,
  .modal,
  .popup {
    padding: 16px;
    margin: 10px;
    width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
    box-sizing: border-box;
  }

  .modal-header h2,
  .modal-title {
    font-size: 1.2rem;
  }

  button,
  .btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .register-box,
  .login-box {
    padding: 20px 16px;
    margin: 10px;
  }

  .register-box h2,
  .login-box h2 {
    font-size: 1.3rem;
  }

  .form-group input,
  .form-group select {
    font-size: 13px;
    padding: 9px 12px;
  }

  .submit-btn {
    font-size: 13px;
    padding: 11px 18px;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  .cta-btn,
  .cta-btn-apk {
    max-width: 240px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.stats-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 20px;
  margin: 60px 0;
}

.stats-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 50px;
  font-weight: 700;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.stat-item {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(30, 60, 114, 0.15);
  border-color: var(--color-accent);
}

.stat-item i {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  color: var(--color-primary);
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  color: var(--color-primary);
  margin: 10px 0;
  line-height: 1;
}

.stat-item p {
  font-size: 1.1rem;
  color: #6c757d;
  font-weight: 500;
  margin: 10px 0 0 0;
}

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

.stat-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 50px rgba(30, 60, 114, 0.2);
  border-color: var(--color-accent);
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover .stat-icon {
  transform: rotate(360deg) scale(1.1);
}

.stat-icon i {
  width: 30px;
  height: 30px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  color: #6c757d;
  font-weight: 500;
}

.features-section {
  padding: 80px 20px;
  background: white;
}

.features-section h2 {
  font-family: var(--font-heading);
  text-align: center;
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 50px;
  font-weight: 400;
}

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

.feature-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(30, 60, 114, 0.12);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.feature-icon {
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e1e1e;
  flex-shrink: 0;
}

.feature-icon i {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  font-family: 'Inter';
  font-size: 1.3rem;
  color: var(--color-primary);
  margin: 8;
  font-weight: 400;
}

.feature-card p {
  color: #495057;
  line-height: 1.6;
  margin: 0;
}


.feature-item {
  background: linear-gradient(135deg, rgba(30, 60, 114, 0.05), rgba(42, 82, 152, 0.05));
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, transparent, rgba(30, 60, 114, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.feature-item:hover::before {
  top: -100%;
  right: -100%;
}

.feature-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
  background: linear-gradient(135deg, rgba(30, 60, 114, 0.1), rgba(42, 82, 152, 0.1));
}

.feature-item .feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: #1e1e1e;
  padding: 15px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
}

.feature-item .feature-icon i,
.feature-item .feature-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 2;
}

.feature-item .feature-content {
  position: relative;
  z-index: 1;
}

.feature-item .feature-content h3 {
  font-family: 'Inter';
  margin-bottom: 15px;
  color: var(--color-text);
  font-size: 1.3em;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.feature-item .feature-content p {
  font-family: var(--font-body);
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: 0.95em;
  font-weight: 400;
}

.tech-section {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: 80px 20px;
  color: white;
}

.tech-section h2 {
  font-family: var(--font-heading);
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 400;
}

.tech-subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 50px;
  opacity: 0.95;
  font-weight: 400;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.tech-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.tech-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tech-icon {
  margin-bottom: 15px;
}

.tech-icon i {
  width: 50px;
  height: 50px;
  color: white;
  opacity: 0.9;
}

.tech-item a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  transition: all 0.3s ease;
}

.tech-item a:hover {
  transform: scale(1.05);
  text-decoration: underline;
}

.tech-item h4 {
  font-family: 'Inter';
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 400;
  color: white;
}

.tech-item p {
  opacity: 0.9;
  line-height: 1.6;
  font-size: 0.95rem;
  color: white;
}

.tech-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.tech-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tech-card i {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  color: white;
  opacity: 0.9;
}

.tech-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.tech-card p {
  opacity: 0.9;
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.faq-section h2 {
  font-family: var(--font-heading);
  text-align: center;
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 50px;
  font-weight: 400;
}

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

.faq-item {
  background: white;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(30, 60, 114, 0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px 30px;
  cursor: pointer;
  background: white;
  transition: all 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question > i:first-child {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.faq-question h3 {
  text-align: left;
  font-family: 'Inter';
  flex: 1;
  margin: 0;
  font-size: 1.15rem;
  color: var(--color-primary);
  font-weight: 400;
}

.faq-toggle {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #f8f9fa;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px 69px;
}

.faq-answer p {
  text-align: left;
  color: #495057;
  line-height: 1.7;
  margin: 0;
}

.professional-footer {
  background: #1e1e1e;
  color: white;
  padding: 60px 20px 20px;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 400;
  color: white;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-logo img {
  width: auto;
  height: auto;
  max-height: 80px;
  border-radius: 0;
}

.footer-logo-long {
  height: 80px;
  width: auto;
}

.footer-logo h3 {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 700;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-accent-hover);
  transform: translateX(5px);
}

.footer-links a i {
  width: 16px;
  height: 16px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-align: left;
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.footer-contact i {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #93a1ad;
}

.social-link i {
  width: 20px;
  height: 20px;
}

.footer-cta {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.footer-cta:hover {
  color: #93a1ad;
}

.footer-cta i {
  width: 18px;
  height: 18px;
}

.footer-cta-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
  justify-content: center;
}

.footer-cta-link:hover {
  color: #93a1ad;
}

.footer-cta-link i {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid #93a1ad;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 8px 0;
  font-size: 0.9rem;
}

.footer-tech {
  display: block;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links-bottom {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.footer-links-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
  color: #93a1ad;
}

.doc-hidden-link {
  display: block;
  margin-top: 20px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.3s ease;
}

.doc-hidden-link:hover {
  color: rgba(255, 255, 255, 0.5);
}

.floating-menu-wrapper {
  position: fixed !important;
  bottom: 30px !important;
  left: 30px !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10000 !important;
}

.floating-menu-toggle {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background: #0071e3 !important;
  color: white !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 12px rgba(0, 113, 227, 0.4), 0 0 40px rgba(0, 113, 227, 0.25) !important;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  order: 999;
  position: relative !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: all !important;
}

.floating-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  background: #0077ed !important;
  box-shadow: 0 6px 20px rgba(0, 113, 227, 0.6), 0 0 50px rgba(0, 113, 227, 0.4) !important;
}

.floating-menu-toggle i {
  width: 24px;
  height: 24px;
  transition: transform 0.4s ease;
}

.floating-menu-wrapper.active .floating-menu-toggle {
  transform: rotate(135deg);
  background: #4a5259;
}

.floating-menu-item {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  opacity: 0;
  transform: translateY(20px) scale(0.3);
  pointer-events: none;
  position: relative;
}

.floating-menu-item:nth-child(1) {
  background: linear-gradient(135deg, #6b8fc3 0%, #5a7aad 100%);
  box-shadow: 0 4px 16px rgba(107, 143, 195, 0.5), 0 0 35px rgba(107, 143, 195, 0.3);
}

.floating-menu-item:nth-child(2) {
  background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
  box-shadow: 0 4px 16px rgba(102, 187, 106, 0.5), 0 0 35px rgba(102, 187, 106, 0.3);
}

.floating-menu-item:nth-child(3) {
  background: linear-gradient(135deg, #ffb74d 0%, #ff9800 100%);
  box-shadow: 0 4px 16px rgba(255, 183, 77, 0.5), 0 0 35px rgba(255, 183, 77, 0.3);
}

.floating-menu-item::before {
  content: attr(data-label);
  position: absolute;
  left: 60px;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  transform: translateX(-10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.floating-menu-item:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.floating-menu-item i {
  width: 20px;
  height: 20px;
}

.floating-menu-wrapper.active .floating-menu-item {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.floating-menu-wrapper.active .floating-menu-item:nth-child(1) {
  transition-delay: 0.1s;
}

.floating-menu-wrapper.active .floating-menu-item:nth-child(2) {
  transition-delay: 0.15s;
}

.floating-menu-wrapper.active .floating-menu-item:nth-child(3) {
  transition-delay: 0.2s;
}

.floating-menu-item:nth-child(1):hover {
  transform: translateY(0) scale(1.15);
  box-shadow: 0 8px 24px rgba(107, 143, 195, 0.7), 0 0 45px rgba(107, 143, 195, 0.5);
}

.floating-menu-item:nth-child(2):hover {
  transform: translateY(0) scale(1.15);
  box-shadow: 0 8px 24px rgba(102, 187, 106, 0.7), 0 0 45px rgba(102, 187, 106, 0.5);
}

.floating-menu-item:nth-child(3):hover {
  transform: translateY(0) scale(1.15);
  box-shadow: 0 8px 24px rgba(255, 183, 77, 0.7), 0 0 45px rgba(255, 183, 77, 0.5);
}

.floating-menu-item:active {
  transform: translateY(0) scale(0.95);
}

@media (max-width: 768px) {
  .floating-menu-wrapper {
    bottom: 20px;
    left: 20px;
    gap: 10px;
  }

  .floating-menu-toggle {
    width: 50px;
    height: 50px;
  }

  .floating-menu-toggle i {
    width: 20px;
    height: 20px;
  }

  .floating-menu-item {
    width: 44px;
    height: 44px;
  }

  .floating-menu-item i {
    width: 18px;
    height: 18px;
  }

  .floating-menu-item::before {
    display: none;
  }
}
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }


.swal-high-zindex {
  z-index: 9999 !important;
}

.login-btn-admin {
  background: linear-gradient(135deg, #0071E3 0%, #005bb5 100%);
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 980px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.login-btn-admin:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 113, 227, 0.5);
  background: linear-gradient(135deg, #005bb5 0%, #0071E3 100%);
}

.login-btn-admin:active {
  transform: scale(0.98);
}

.admin-panel {
  background-image: linear-gradient(135deg, rgba(0, 113, 227, 0.9), rgba(0, 91, 181, 0.9)), 
                    url('../../images/STOCK3.webp');
}

.admin-panel::before {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.admin-panel:hover::before {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.admin-icon {
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  animation: pulse-admin 2s infinite;
}

@keyframes pulse-admin {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
}

.admin-warning {
  background: rgba(255, 193, 7, 0.15);
  border-left: 4px solid #ffc107;
  padding: 15px;
  border-radius: 8px;
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  backdrop-filter: blur(10px);
}

.admin-warning i {
  color: #ffc107;
  flex-shrink: 0;
  margin-top: 2px;
}

.admin-warning p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: white;
}

.admin-submit {
  background: linear-gradient(135deg, #4a5259 0%, #5d646b 100%);
}

.admin-submit:hover {
  background: linear-gradient(135deg, #5d646b 0%, #4a5259 100%);
  box-shadow: 0 8px 24px rgba(30, 60, 114, 0.4);
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  text-align: left;
}


.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
  .nav-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 12px 20px;
  }

  .nav-links {
    gap: 20px;
    margin-left: 0;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

  .hero-main {
    padding: 80px 30px 60px;
    gap: 30px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 60px 30px;
  }

  .role-grid,
  .module-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    gap: 10px;
  }

  .mobile-menu-toggle {
    display: block;
    order: 3;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }

  .nav-links.mobile-active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 1rem;
    font-weight: 500;
  }

  .nav-buttons {
    order: 2;
    gap: 8px;
  }

  .login-btn-admin {
    display: none;
  }

  .login-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .hero-main {
    flex-direction: column;
    padding: 100px 20px 50px;
    min-height: auto;
    gap: 30px;
    text-align: center;
  }

  .hero-logo-side {
    order: 1;
    width: 180px;
    height: 180px;
  }

  .hero-logo-animate {
    width: 150px;
    height: 150px;
  }

  .hero-content {
    order: 2;
    text-align: center;
    padding: 0 10px;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 24px;
    color: var(--color-text-light);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
  }

  .cta-btn,
  .cta-btn-apk,
  .cta-btn-secondary {
    width: 100%;
    max-width: 300px;
    padding: 14px 24px;
    font-size: 0.95rem;
    justify-content: center;
  }

  .link-arrow {
    margin-top: 10px;
    font-size: 0.9rem;
  }

  .product-section,
  .section-content {
    padding: 50px 20px;
  }

  .section-content h2 {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .section-description {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 40px 20px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }

  .roles,
  .modules {
    padding: 50px 20px;
  }

  .roles h2,
  .modules h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .role-grid,
  .module-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .role-card,
  .module-card {
    padding: 24px 20px;
  }

  .role-card h3,
  .module-card h3 {
    font-size: 1.1rem;
  }

  .stats-section {
    padding: 40px 20px;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-item h3,
  .counter {
    font-size: 2rem;
  }

  .stat-item p {
    font-size: 0.85rem;
  }

  .features-section {
    padding: 50px 20px;
  }

  .features-section h2 {
    font-size: 1.8rem;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .feature-icon {
    margin-bottom: 15px;
  }

  .tech-section {
    padding: 50px 20px;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .tech-item {
    padding: 20px 15px;
  }

  .about-hero {
    flex-direction: column;
    padding: 50px 20px;
    gap: 30px;
  }

  .hero-text,
  .hero-image {
    width: 100%;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 1.8rem !important;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 20px;
  }

  .team-card {
    padding: 24px 20px;
  }

  .faq-section {
    padding: 50px 20px;
  }

  .faq-section h2 {
    font-size: 1.8rem;
  }

  .faq-container {
    padding: 0;
  }

  .faq-question {
    padding: 16px;
  }

  .faq-question h3 {
    font-size: 0.95rem;
  }

  .professional-footer {
    padding: 0;
  }

  .footer-main {
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }

  .footer-column {
    text-align: center;
  }

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

  .footer-links,
  .footer-contact {
    align-items: center;
  }

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

  .footer-cta {
    width: 100%;
    max-width: 250px;
  }

  .footer-bottom {
    padding: 20px;
    text-align: center;
  }

  .footer-bottom .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .floating-menu-wrapper {
    bottom: 20px;
    left: 20px;
    right: auto;
  }

  .dropdown-menu,
  .dropdown-menu-security {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
  }

  .dropdown-content,
  .dropdown-content-security {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 10px 12px;
  }

  .logo img {
    width: 36px;
    height: 36px;
  }

  .logo span {
    font-size: 1.1rem;
  }

  .login-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .hero-main {
    padding: 90px 16px 40px;
  }

  .hero-logo-side {
    width: 140px;
    height: 140px;
  }

  .hero-logo-animate {
    width: 120px;
    height: 120px;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

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

  .cta-btn,
  .cta-btn-apk,
  .cta-btn-secondary {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .section-content h2,
  .roles h2,
  .modules h2 {
    font-size: 1.5rem;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .role-card,
  .module-card,
  .team-card {
    padding: 20px 16px;
  }

  .cookie-modal {
    margin: 15px;
    padding: 24px 20px;
    max-height: 90vh;
    overflow-y: auto;
  }

  .cookie-modal h2 {
    font-size: 1.3rem;
  }

  .cookie-modal p {
    font-size: 0.85rem;
  }

  .cookie-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .cookie-btn {
    width: 100%;
    padding: 14px;
  }
}

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

  .hero-logo-side {
    width: 120px;
    height: 120px;
  }

  .cta-btn,
  .cta-btn-apk {
    font-size: 0.8rem;
    padding: 10px 16px;
  }

  .nav-buttons {
    gap: 4px;
  }

  .login-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
}

@media (hover: none) and (pointer: coarse) {
  .nav-links a,
  .cta-btn,
  .cta-btn-apk,
  .login-btn,
  .footer-cta,
  .faq-question {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .feature-card:hover,
  .role-card:hover,
  .module-card:hover {
    transform: none;
  }
}


@media (max-width: 1024px) {
  .login-wrapper {
    gap: 30px;
    padding: 20px;
  }

  .login-side-panel {
    min-width: 300px;
    padding: 40px 30px;
  }

  .login-box,
  .register-box {
    max-width: 420px;
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .login-body {
    padding: 20px 15px;
    min-height: 100vh;
    align-items: flex-start;
    padding-top: 40px;
  }

  .login-wrapper {
    flex-direction: column;
    gap: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
  }

  .login-side-panel {
    display: none !important;
  }

  .login-box {
    width: 100%;
    max-width: 100%;
    padding: 32px 24px;
    border-radius: 20px;
    margin: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .login-header {
    margin-bottom: 28px;
  }

  .login-logo {
    width: 76px;
    height: 76px;
    margin-bottom: 16px;
  }

  .login-header h1 {
    font-size: 1.6rem;
  }

  .login-header p {
    font-size: 0.9rem;
  }

  #loginForm,
  .register-form {
    gap: 14px;
  }

  .form-group input,
  #loginForm input {
    padding: 14px 16px 14px 42px;
    font-size: 16px; /* Previene zoom en iOS */
    border-radius: 10px;
  }

  .input-icon {
    left: 14px;
    width: 16px;
    height: 16px;
  }

  .toggle-password {
    right: 10px;
    padding: 8px;
  }

  .form-label {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }

  .login-submit {
    padding: 14px 20px;
    font-size: 1rem;
    border-radius: 10px;
    margin-top: 8px;
  }

  .login-divider {
    margin: 20px 0;
  }

  .register-text {
    font-size: 0.9rem;
    margin: 16px 0;
  }

  .login-footer {
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
    padding-top: 20px;
    text-align: center;
  }

  .back-link,
  .login-help a {
    font-size: 0.9rem;
    justify-content: center;
  }

  .register-box {
    width: 100%;
    max-width: 100%;
    padding: 28px 20px;
    border-radius: 20px;
    max-height: none;
    overflow-y: visible;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .password-strength {
    margin: 16px 0 20px 0;
  }

  .strength-bar {
    height: 5px;
  }

  .strength-text {
    font-size: 12px;
  }

  .input-hint {
    font-size: 11px;
    margin-top: 4px;
  }

  .admin-warning {
    padding: 12px 14px;
    font-size: 0.8rem;
    margin-top: 16px;
  }

  .admin-warning i {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .login-body {
    padding: 15px 12px;
    padding-top: 30px;
  }

  .login-box,
  .register-box {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .login-logo {
    width: 68px;
    height: 68px;
  }

  .login-header h1 {
    font-size: 1.4rem;
  }

  .login-header p {
    font-size: 0.85rem;
  }

  .form-group input,
  #loginForm input {
    padding: 12px 14px 12px 38px;
    border-radius: 8px;
  }

  .input-icon {
    left: 12px;
    width: 14px;
    height: 14px;
  }

  .login-submit {
    padding: 12px 18px;
    font-size: 0.95rem;
  }

  .login-submit i {
    width: 16px;
    height: 16px;
  }

  .register-link,
  .forgot-password {
    font-size: 0.85rem;
  }

  .login-background .floating-icon {
    display: none;
  }

  .login-particles .particle {
    display: none;
  }
}

@media (max-width: 360px) {
  .login-box,
  .register-box {
    padding: 20px 16px;
  }

  .login-header h1 {
    font-size: 1.3rem;
  }

  .login-submit {
    padding: 11px 16px;
    font-size: 0.9rem;
  }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea {
    text-align: left !important;
    font-size: 16px !important;
  }
}

@media (max-width: 430px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  * {
    box-sizing: border-box;
  }

  .nav-container {
    padding: 10px 14px;
    gap: 8px;
  }

  .logo img {
    width: 38px;
    height: 38px;
  }

  .logo span {
    font-size: 1.15rem;
  }

  .nav-buttons {
    gap: 6px;
  }

  .login-btn {
    padding: 9px 16px;
    font-size: 0.82rem;
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero-main {
    padding: 85px 16px 45px;
    gap: 24px;
  }

  .hero-logo-side {
    width: 150px;
    height: 150px;
  }

  .hero-logo-animate {
    width: 130px;
    height: 130px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .hero-buttons {
    gap: 12px;
    width: 100%;
    padding: 0 8px;
  }

  .cta-btn,
  .cta-btn-apk,
  .cta-btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 13px 22px;
    font-size: 0.9rem;
  }

  .link-arrow {
    font-size: 0.85rem;
  }

  .product-section,
  .section-content {
    padding: 45px 16px;
  }

  .section-content h2 {
    font-size: 1.65rem;
    padding: 0 8px;
  }

  .section-subtitle {
    font-size: 1rem;
    padding: 0 8px;
  }

  .section-description {
    font-size: 0.9rem;
    padding: 0 12px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 35px 16px;
  }

  .feature-card {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .feature-card h3 {
    font-size: 1.05rem;
  }

  .feature-card p {
    font-size: 0.88rem;
  }

  .roles,
  .modules {
    padding: 45px 16px;
  }

  .roles h2,
  .modules h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .role-grid,
  .module-grid {
    gap: 14px;
  }

  .role-card,
  .module-card {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .role-card h3,
  .module-card h3 {
    font-size: 1.08rem;
  }

  .stats-section {
    padding: 40px 16px;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .stat-item,
  .stat-card {
    padding: 24px 20px;
    border-radius: 14px;
  }

  .stat-item h3,
  .counter,
  .stat-number {
    font-size: 2.2rem;
  }

  .stat-item p,
  .stat-label {
    font-size: 0.9rem;
  }

  .faq-section {
    padding: 45px 16px;
  }

  .faq-section h2 {
    font-size: 1.65rem;
  }

  .faq-question {
    padding: 18px 16px;
  }

  .faq-question h3 {
    font-size: 0.95rem;
    padding-right: 30px;
  }

  .faq-answer {
    padding: 0 16px 18px;
  }

  .faq-answer p {
    font-size: 0.88rem;
  }

  .footer-main {
    padding: 35px 16px;
    gap: 28px;
  }

  .footer-column h4 {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .footer-links a,
  .footer-contact p {
    font-size: 0.88rem;
  }

  .footer-cta {
    padding: 12px 20px;
    font-size: 0.88rem;
    max-width: 220px;
  }

  .footer-bottom {
    padding: 18px 16px;
  }

  .footer-bottom p {
    font-size: 0.82rem;
  }

  .footer-bottom .footer-links {
    gap: 12px;
  }

  .footer-bottom .footer-links a {
    font-size: 0.8rem;
  }

  .login-body {
    padding: 16px 14px;
    padding-top: 28px;
  }

  .login-box,
  .register-box {
    padding: 26px 20px;
    border-radius: 18px;
    width: 100%;
    max-width: 100%;
  }

  .login-header {
    margin-bottom: 24px;
  }

  .login-logo {
    width: 72px;
    height: 72px;
    margin-bottom: 14px;
  }

  .login-header h1 {
    font-size: 1.5rem;
  }

  .login-header p {
    font-size: 0.88rem;
  }

  #loginForm,
  .register-form {
    gap: 12px;
  }

  .form-group {
    margin-bottom: 14px;
  }

  .form-group input,
  #loginForm input {
    padding: 13px 15px 13px 40px;
    font-size: 16px;
    border-radius: 10px;
  }

  .input-icon {
    left: 13px;
    width: 15px;
    height: 15px;
  }

  .form-label {
    font-size: 0.85rem;
  }

  .toggle-password {
    right: 10px;
    padding: 8px;
  }

  .login-submit {
    padding: 13px 20px;
    font-size: 0.95rem;
    border-radius: 10px;
  }

  .login-submit i {
    width: 17px;
    height: 17px;
  }

  .login-divider {
    margin: 18px 0;
  }

  .login-divider span {
    font-size: 0.8rem;
  }

  .register-text {
    font-size: 0.88rem;
  }

  .register-link,
  .forgot-password {
    font-size: 0.88rem;
  }

  .login-footer {
    gap: 12px;
    margin-top: 18px;
    padding-top: 18px;
  }

  .back-link,
  .login-help a {
    font-size: 0.88rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .password-strength {
    margin: 14px 0 18px;
  }

  .strength-text {
    font-size: 0.75rem;
  }

  .input-hint {
    font-size: 0.7rem;
  }

  .login-background .floating-icon,
  .login-particles .particle {
    display: none;
  }

  .cookie-modal {
    margin: 12px;
    padding: 22px 18px;
    border-radius: 16px;
  }

  .cookie-modal h2 {
    font-size: 1.2rem;
  }

  .cookie-modal p {
    font-size: 0.85rem;
  }

  .cookie-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .cookie-btn {
    width: 100%;
    padding: 13px;
    font-size: 0.9rem;
  }

  .container,
  .main-container {
    padding: 0 14px;
    width: 100%;
    max-width: 100%;
  }
}