html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  /* Prevent horizontal scroll globally */
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  position: relative;
  background-color: #050511;
  /* Explicit background to prevent white flashes */
}

:root {
  /* Updated color scheme to use #0B2C4D and #F28C28 */
  --primary: #f28c28;
  --primary-dark: #d97615;
  --secondary: #0b2c4d;
  --background: #0a0a0a;
  --surface: #0b2c4d;
  --surface-light: #1e3a5f;
  --text: #ffffff;
  --text-secondary: #a0a0a0;
  --accent: #f28c28;
  --border: #1e3a5f;
  --neon-primary: #f28c28;
  --neon-secondary: #00f2fe;
  --neon-purple: #bd00ff;
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.03);
}

@media (min-width: 769px) {
  .mobile-nav-actions {
    display: none !important;
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 20000;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  /* Prevent logo from shrinking */
}

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: 48px;
  /* Add space between logo and links */
  flex: 1;
  /* Allow nav-links to grow */
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
  /* Prevent text wrapping */
}

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

/* Services Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.nav-dropdown-toggle:hover {
  color: var(--text);
}

.nav-dropdown-toggle svg {
  transition: transform 0.3s;
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 320px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.nav-toggle-icon {
  margin-left: 4px;
  transition: transform 0.3s;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 12px);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
}

.nav-dropdown-item:hover {
  background: var(--surface-light);
}

.nav-dropdown-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 20px;
  flex-shrink: 0;
}

.icon-whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.icon-sms {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
}

.icon-rcs {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
}

.icon-political {
  background: rgba(155, 89, 182, 0.1);
  color: #9b59b6;
}

.icon-primary {
  background: rgba(242, 140, 40, 0.1);
  color: #f28c28;
}

.icon-red {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}

.icon-teal {
  background: rgba(26, 188, 156, 0.1);
  color: #1abc9c;
}

.icon-cyan {
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
}

.icon-neon {
  background: rgba(0, 242, 254, 0.1);
  color: #00f2fe;
}

.nav-dropdown-content {
  flex: 1;
}

.nav-dropdown-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--text);
}

.nav-dropdown-desc {
  font-size: 12px;
  color: var(--text-secondary);
}

.nav-dropdown-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  flex-shrink: 0;
}

.badge-whatsapp {
  background: rgba(37, 211, 102, 0.2);
  color: #25d366;
}

.badge-sms {
  background: rgba(52, 152, 219, 0.2);
  color: #3498db;
}

.badge-rcs {
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
}

.badge-political {
  background: rgba(155, 89, 182, 0.2);
  color: #9b59b6;
}

.badge-primary {
  background: rgba(242, 140, 40, 0.2);
  color: #f28c28;
}

.badge-red {
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}

.badge-teal {
  background: rgba(26, 188, 156, 0.2);
  color: #1abc9c;
}

.badge-cyan {
  background: rgba(6, 182, 212, 0.2);
  color: #06b6d4;
}

.badge-neon {
  background: rgba(0, 242, 254, 0.2);
  color: #00f2fe;
}

.nav-dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

.nav-dropdown-divider-strong {
  background: rgba(255, 255, 255, 0.1);
  margin: 15px 0;
}

.nav-dropdown-view-all {
  justify-content: center;
  font-weight: 600;
  color: var(--primary);
}

.nav-view-all-text {
  color: var(--neon-secondary);
}

.nav-dropdown-view-all:hover {
  background: rgba(242, 140, 40, 0.1);
}

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

.nav-actions a,
.nav-actions button {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

/* Mobile Responsive Styles for Dropdown */
@media (max-width: 768px) {
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    padding: 12px 0;
    justify-content: center;
    gap: 8px;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: visible;
    transition: all 0.3s ease;
  }

  .nav-dropdown.active .nav-dropdown-menu {
    max-height: 600px;
    opacity: 1;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 0;
    max-height: 0;
  }

  .nav-dropdown.active:hover .nav-dropdown-menu {
    opacity: 1;
    max-height: 600px;
  }

  .nav-dropdown.active .nav-dropdown-toggle svg {
    transform: rotate(180deg);
  }
}

/* Buttons */
.btn-primary {
  background: var(--primary);
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 140, 40, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--surface);
  border-color: var(--primary);
}

.btn-outline-danger {
  background: transparent;
  color: #ff4d4d;
  border: 1px solid #ff4d4d;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline-danger:hover {
  background: #ff4d4d;
  color: #fff;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 14px;
}

/* Custom Language Selector - Premium UI Refined */
.custom-lang-selector {
  position: relative;
  display: inline-block;
  min-width: 140px;
  /* Reduced from 160px for better navbar fit */
  z-index: 1001;
  margin: 0 0 0 20px;
  /* Add left margin to separate from Contact link */
}

.lang-selected {
  background: rgba(255, 255, 255, 0.08);
  color: var(--primary);
  border: 1px solid rgba(242, 140, 40, 0.4);
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.lang-selected:hover {
  background: rgba(242, 140, 40, 0.15);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 140, 40, 0.2);
}

.custom-lang-selector.active .lang-selected {
  border-color: var(--primary);
  background: rgba(242, 140, 40, 0.1);
}

.lang-chevron {
  font-size: 10px;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  background: #0d0d15;
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(30px);
  max-height: 350px;
  overflow-y: auto;
  z-index: 1002;
}

.custom-lang-selector.active .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  padding: 12px 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.lang-option:hover {
  background: rgba(242, 140, 40, 0.2);
  color: var(--primary);
  padding-left: 18px;
  /* Subtle slide effect */
}

.lang-option.active {
  background: var(--primary);
  color: #000;
  font-weight: 700;
}

/* Mobile Responsive Overrides */
@media (max-width: 768px) {
  .custom-lang-selector {
    width: 100%;
    margin-bottom: 5px;
  }

  .lang-selected {
    justify-content: flex-start;
  }

  .lang-dropdown {
    position: relative;
    top: 5px;
    margin-bottom: 15px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .custom-lang-selector.active .lang-dropdown {
    display: block;
  }
}

/* Scrollbar for dropdown */
.lang-dropdown::-webkit-scrollbar {
  width: 4px;
}

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

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

/* Hero Section */
.hero {
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  /* Updated gradient to use new primary color */
  background: radial-gradient(circle, rgba(242, 140, 40, 0.1) 0%, transparent 70%);
  animation: float 20s infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-50px, 50px) rotate(180deg);
  }
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 24px;
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: slideUp 0.8s ease-out 0.2s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
  animation: slideUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  animation: slideUp 0.8s ease-out 0.6s both;
}

.hero-stats {
  display: flex;
  gap: 32px;
  animation: slideUp 0.8s ease-out 0.8s both;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.stat-icon {
  font-size: 20px;
}

.hero-visual {
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  animation: slideLeft 1s ease-out 0.4s both;
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.dashboard-mockup {
  width: 500px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
}

.mockup-dots span:nth-child(1) {
  background: #ff5f57;
}

.mockup-dots span:nth-child(2) {
  background: #ffbd2e;
}

.mockup-dots span:nth-child(3) {
  background: #28ca42;
}

.mockup-title {
  font-size: 14px;
  color: var(--text-secondary);
}

.mockup-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric-card {
  background: var(--surface-light);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  animation: fadeIn 0.6s ease-out both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.metric-label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.metric-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.metric-chart {
  height: 40px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  opacity: 0.2;
  border-radius: 4px;
}

.metric-progress {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.metric-progress::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 75%;
  background: var(--primary);
  border-radius: 3px;
  animation: progress 2s ease-out;
}

@keyframes progress {
  from {
    width: 0;
  }

  to {
    width: 75%;
  }
}

.metric-status {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Social Proof */
.social-proof {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.social-proof-text {
  color: var(--text-secondary);
  font-size: 18px;
}

.social-proof-text strong {
  color: var(--text);
}

/* Why Choose Section */
.why-choose {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
}

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

.feature-card {
  background: var(--surface);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  /* Updated box shadow to match new primary color */
  box-shadow: 0 12px 32px rgba(242, 140, 40, 0.2);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(37, 211, 102, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: var(--surface);
}

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

.pricing-card {
  background: var(--background);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
}

.pricing-card.featured {
  border-color: var(--primary);
  /* Updated gradient to use new primary color */
  background: linear-gradient(135deg, rgba(242, 140, 40, 0.05) 0%, transparent 100%);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #000;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}

.pricing-header {
  margin-bottom: 32px;
}

.pricing-header h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-currency {
  font-size: 24px;
  color: var(--text-secondary);
}

.price-amount {
  font-size: 48px;
  font-weight: 800;
}

.price-period {
  font-size: 18px;
  color: var(--text-secondary);
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* Advanced Features */
.advanced-features {
  padding: 100px 0;
}

.features-list {
  max-width: 900px;
  margin: 0 auto;
}

.feature-row {
  display: flex;
  gap: 32px;
  padding: 48px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
  transition: all 0.3s;
}

.feature-row:hover {
  border-color: var(--primary);
  transform: translateX(8px);
}

.feature-icon-large {
  font-size: 48px;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.feature-content ul {
  list-style: none;
}

.feature-content li {
  padding: 8px 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 24px;
}

.feature-content li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* CTA Section */
.cta {
  padding: 100px 0;
  /* Updated gradient to use new primary color */
  background: linear-gradient(135deg, rgba(242, 140, 40, 0.1) 0%, transparent 100%);
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Footer */
.footer {
  background: var(--surface);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 350px;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 16px;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Added social links styling */
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-links a {
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all 0.3s;
  flex-shrink: 0;
  padding: 0 !important;
  margin: 0 !important;
  text-decoration: none;
  box-sizing: border-box;
}

.social-links a svg {
  width: 20px !important;
  height: 20px !important;
  display: block !important;
  margin: 0 !important;
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
  transform: translateY(-4px);
}

.footer-column h4 {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
}

.footer-column a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.3s;
  font-size: 14px;
}

.footer-column a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-about-text {
  color: var(--text-secondary);
}

.footer-contact {
  margin-top: 15px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-row + .footer-contact-row {
  margin-top: 8px;
}

/* Updated footer bottom to have flex layout for better alignment */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 14px;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
  padding-top: 20px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-muted-text,
.footer-muted-link {
  color: #666;
}

.footer-muted-link {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-muted-link:hover {
  color: var(--text-secondary);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
}

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

/* Responsive */
@media (max-width: 1024px) {
  .hero-visual {
    display: none;
  }

  /* Improved footer responsiveness */
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feature-row {
    flex-direction: column;
    padding: 32px 24px;
  }

  /* Stack footer columns on mobile */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

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

  .cta-buttons {
    flex-direction: column;
  }
}

/* Scroll animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

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

/* Added authentication page styles */

/* Auth Section */
.auth-section {
  padding: 120px 0 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.auth-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.auth-content {
  max-width: 480px;
}

.auth-header {
  margin-bottom: 32px;
}

.auth-header h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
}

.auth-header p {
  color: var(--text-secondary);
  font-size: 16px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-select {
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
  transition: all 0.3s;
}

.form-group input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.1);
}

.form-select {
  cursor: pointer;
}

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary);
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.forgot-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

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

.divider {
  position: relative;
  text-align: center;
  margin: 8px 0;
}

.divider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: var(--border);
}

.divider span {
  position: relative;
  background: var(--background);
  padding: 0 16px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
}

.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-social:hover {
  background: var(--surface-light);
  border-color: var(--primary);
}

.auth-footer {
  margin-top: 24px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
}

.auth-footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.auth-visual {
  position: relative;
}

.visual-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

.visual-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
}

.visual-features {
  list-style: none;
  margin-bottom: 32px;
}

.visual-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.visual-features li:last-child {
  border-bottom: none;
}

.visual-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 24px;
  background: var(--background);
  border-radius: 12px;
}

.visual-stats .stat-item {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--background);
  border-radius: 12px;
}

.badge-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.badge-text strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.badge-text p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

/* Added language selector styling */
.btn-language-select {
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
  outline: none;
}

.btn-language:hover {
  background: var(--primary);
  color: #000;
}



/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 52px;
  }

  .section-header h2 {
    font-size: 40px;
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 120px 0 80px;
  }

  .hero-title {
    font-size: 44px;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

@media (max-width: 768px) {

  /* Hero Section */
  .hero {
    padding: 100px 0 60px;
    text-align: center;
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  /* Section Headers */
  .section-header h2 {
    font-size: 32px;
  }

  .section-header p {
    font-size: 16px;
  }

  /* Features Grid */
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .feature-card {
    padding: 24px;
  }

  .feature-card h3 {
    font-size: 20px;
  }

  /* Service Cards */
  .service-card {
    padding: 24px;
  }

  /* CTA Section */
  .cta-content h2 {
    font-size: 32px;
  }

  .cta-content p {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }

  /* Pricing Cards */
  .pricing-card {
    padding: 32px 24px;
  }

  .price-amount {
    font-size: 40px;
  }

  /* Advanced Features */
  .feature-row {
    flex-direction: column;
    padding: 32px 24px;
  }

  .feature-icon-large {
    font-size: 40px;
  }

  .feature-content h3 {
    font-size: 20px;
  }

  /* Stats Sections */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Responsive Typography */
  h1 {
    font-size: 32px !important;
  }

  h2 {
    font-size: 28px !important;
  }

  h3 {
    font-size: 20px !important;
  }

  /* Button Sizes */
  .btn-large {
    padding: 14px 24px;
    font-size: 15px;
  }

  /* Spacing Adjustments */
  section {
    padding: 60px 0 !important;
  }

  .why-choose,
  .pricing,
  .advanced-features {
    padding: 60px 0 !important;
  }
}

@media (max-width: 480px) {

  /* Extra small devices */
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 28px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .feature-card {
    padding: 20px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 14px;
  }

  .btn-large {
    padding: 12px 20px;
    font-size: 14px;
  }

  /* Nav Dropdown Items */
  .nav-dropdown-item {
    padding: 10px;
  }

  .nav-dropdown-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .nav-dropdown-title {
    font-size: 13px;
  }

  .nav-dropdown-desc {
    font-size: 11px;
  }

  /* Footer */
  .footer {
    padding: 48px 0 24px;
  }

  .footer-column h4 {
    font-size: 16px;
  }

  .footer-column ul li a {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .auth-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .auth-content {
    max-width: 100%;
  }

  .auth-visual {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .auth-section {
    padding: 100px 0 40px;
  }

  .auth-header h1 {
    font-size: 32px;
  }

  .visual-card {
    padding: 32px 24px;
  }

  .visual-stats {
    grid-template-columns: 1fr;
  }


  /* Hero Section */
  .hero-new {
    padding-top: 100px;
    min-height: auto;
    overflow-x: hidden;
  }

  .hero-title-new {
    font-size: 42px;
    /* Reduced from 48px to prevent overflow */
    word-wrap: break-word;
    padding: 0 10px;
  }

  .hero-subtitle-new {
    font-size: 16px;
    padding: 0 10px;
  }

  .cta-group {
    flex-direction: column;
    padding: 0 20px;
  }

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

  /* Fix Grid Overflow */
  .features-grid,
  .pricing-grid,
  .visual-stats {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    padding: 0 10px !important;
  }

  .feature-card,
  .pricing-card {
    max-width: 100%;
    margin: 0;
  }

  /* Footer Lists Fix */
  .footer-column ul {
    padding-left: 0;
    list-style: none;
  }

  .footer-column ul li {
    padding-left: 0;
  }

  /* Ensure container doesn't overflow */
  .container {
    width: 100%;
    overflow-x: hidden;
    padding: 0 16px;
  }

  /* Hide 3D Mockup on mobile to prevent overflow */
  .dashboard-preview-3d {
    display: none;
  }

  /* Mobile Menu Styles */
  .desktop-nav-actions {
    display: none !important;
  }

  /* Fix navbar spacing on mobile */
  .nav-links {
    margin-left: 0 !important;
    /* Remove desktop spacing */
    gap: 20px;
    /* Reduce gap for mobile */
  }

  .logo {
    font-size: 18px;
    /* Slightly smaller on mobile */
  }

  .mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

  .mobile-menu-toggle {
    display: flex !important;
    position: relative;
    /* Keep relative, but ensure parent confines it */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2000;
    margin-right: 0;
    /* Reset negative margin */
  }

  /* Fix Container Padding causing overflow */
  .container {
    padding: 0 20px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .nav-content {
    width: 100%;
    justify-content: space-between;
    /* Ensure logo and toggle are at edges */
    padding-right: 10px;
    /* Safety buffer */
  }

  .mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
  }

  /* Animate hamburger to X */
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

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

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

  .nav-links {
    display: flex;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(5, 5, 17, 0.98);
    /* Ensure solid background */
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px;
    border-top: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    opacity: 1;
    pointer-events: all;
    z-index: 1000;
    overflow-y: auto;
    /* Allow internal scrolling if menu is long */
  }

  .nav-links.active {
    transform: translateX(0);
  }

  /* Prevent scrolling on body when menu is open (requires JS, but this helps) */
  body.menu-open {
    overflow: hidden !important;
  }

  /* Show nav-actions inside the mobile menu */
  .nav-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }

  /* Style buttons inside mobile menu */
  .nav-actions .btn-primary,
  .nav-actions .btn-secondary,
  .nav-actions .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 16px;
    text-align: center;
  }

  .nav-actions .btn-language-select {
    align-self: flex-start;
  }
}

/* Hyper-Aggressive Google Translate Cleanup & Scrollbar Fix */
iframe.skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-te-gadget-icon,
.goog-te-gadget-simple span,
.skiptranslate {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body {
  top: 0 !important;
  position: static !important;
  /* Force static to prevent Google's top-shift */
}

html {
  top: 0 !important;
  overflow-y: scroll !important;
  /* Force only one scrollbar on HTML */
}

body {
  overflow-y: visible !important;
}

.goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.google-translate-hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

.call-btn {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 16px 24px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  font-size: 15px;
  animation: pulse-call 2.2s infinite;
}

.call-btn i {
  font-size: 20px;
  animation: ring 1.5s infinite;
}

.call-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
  color: white;
}

.call-btn span {
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

@keyframes pulse-call {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(255, 107, 53, 0.65), 0 0 0 8px rgba(255, 107, 53, 0.12);
  }
}

@keyframes ring {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10%,
  30% {
    transform: rotate(-15deg);
  }
  20%,
  40% {
    transform: rotate(15deg);
  }
}

/* Floating WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  background: #25D366;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.whatsapp-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  background: #20bd5a;
  color: white;
}

.whatsapp-btn img {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    padding: 10px 16px;
    font-size: 14px;
  }

  .whatsapp-btn img {
    width: 20px;
    height: 20px;
  }

  .call-btn {
    padding: 12px 18px;
    font-size: 13px;
    left: auto;
    right: 10px;
    bottom: 80px;
  }

  .call-btn i {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .call-btn {
    padding: 10px 16px;
    font-size: 12px;
    right: 10px;
    bottom: 75px;
    gap: 8px;
  }

  .call-btn i {
    font-size: 16px;
  }

  .call-btn span {
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 360px) {
  .call-btn {
    padding: 8px 14px;
    font-size: 11px;
    right: 10px;
    bottom: 70px;
  }

  .call-btn span {
    max-width: 90px;
  }
}

/* WhatsApp Text Animation & Pulse */
#whatsapp-text {
  transition: opacity 0.3s ease-in-out;
  white-space: nowrap;
}

@keyframes pulse-btn {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
}

.whatsapp-btn {
  animation: pulse-btn 3s infinite ease-in-out;
}

.messages-container {
  margin-top: 100px;
  margin-bottom: -80px;
  position: relative;
  z-index: 1000;
}

.alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1px solid transparent;
}

.alert-success {
  background: rgba(40, 167, 69, 0.1);
  border-color: #28a745;
  color: #28a745;
}

.alert-warning {
  background: rgba(255, 193, 7, 0.1);
  border-color: #ffc107;
  color: #ffc107;
}

.alert-error,
.alert-danger {
  background: rgba(220, 53, 69, 0.1);
  border-color: #dc3545;
  color: #dc3545;
}
