/* ========================================
   MOBILE INDEX HERO - SentinelOne Inspired
======================================== */

/* ===== Dark Hero Section ===== */
.index-mobile-hero {
  background: #f8fafc;
}

.mobile-hero-dark {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  padding: 48px 0 40px;
  position: relative;
  overflow: hidden;
}

.mobile-hero-dark::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.mobile-hero-h1 {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 12px;
  text-align: center;
}

.mobile-hero-gradient-text {
  background: linear-gradient(135deg, #818cf8 0%, #a78bfa 50%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-hero-h2 {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 24px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.mobile-hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  margin: 0 auto;
  width: fit-content;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.mobile-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
  color: white;
}

.mobile-hero-cta i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.mobile-hero-cta:hover i {
  transform: translateX(4px);
}

/* ===== Section Titles ===== */
.mobile-section-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.mobile-section-subtitle {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.5;
}

.mobile-section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6366f1;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 16px;
}

.mobile-section-link:hover {
  color: #4f46e5;
}

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

.mobile-section-link:hover i {
  transform: translateX(4px);
}

/* ===== Value Props Section ===== */
.mobile-value-section {
  padding: 32px 0;
  background: white;
}

/* Force full width container in mobile hero sections */
.index-mobile-hero .container {
  max-width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

.mobile-value-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

a.mobile-value-card {
  text-decoration: none;
}

.mobile-value-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 20px;
  border-left: 4px solid #6366f1;
  transition: all 0.3s ease;
  display: block;
}

.mobile-value-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.mobile-value-card:nth-child(2) {
  border-left-color: #10b981;
}

.mobile-value-card:nth-child(3) {
  border-left-color: #3b82f6;
}

.mobile-value-card:nth-child(4) {
  border-left-color: #f59e0b;
}

.mobile-value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-value-card h3 i {
  font-size: 1.1rem;
  color: #6366f1;
}

.mobile-value-card:nth-child(2) h3 i {
  color: #10b981;
}

.mobile-value-card:nth-child(3) h3 i {
  color: #3b82f6;
}

.mobile-value-card:nth-child(4) h3 i {
  color: #f59e0b;
}

.mobile-value-card p {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* ===== Platform/Products Grid ===== */
.mobile-platform-section {
  padding: 32px 0;
  background: #f1f5f9;
}

.mobile-platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mobile-platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 12px;
  background: white;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.mobile-platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
}

.mobile-platform-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.mobile-platform-icon.microsoft {
  background: linear-gradient(135deg, #00a4ef 0%, #0078d4 100%);
}

.mobile-platform-icon.acronis {
  background: linear-gradient(135deg, #00a9e0 0%, #0088cc 100%);
}

.mobile-platform-icon.fortinet {
  background: linear-gradient(135deg, #da291c 0%, #a01a12 100%);
}

.mobile-platform-icon.bitdefender {
  background: linear-gradient(135deg, #ed1c24 0%, #b91c1c 100%);
}

.mobile-platform-info {
  text-align: center;
}

.mobile-platform-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2px;
}

.mobile-platform-desc {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
}

/* ===== Threat Intelligence Section ===== */
.mobile-threat-section {
  padding: 32px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.mobile-threat-section .mobile-section-title,
.mobile-threat-section .mobile-section-subtitle {
  color: white;
}

.mobile-threat-section .mobile-section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.mobile-threat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mobile-threat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.mobile-threat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.mobile-threat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.25rem;
}

.mobile-threat-icon.malware {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
}

.mobile-threat-icon.phishing {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

.mobile-threat-icon.ransomware {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
}

.mobile-threat-icon.intrusion {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
  color: white;
}

.mobile-threat-counter {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.mobile-threat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-threat-disclaimer {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-top: 16px;
  margin-bottom: 0;
}

/* ===== Free Resources Section ===== */
.mobile-resources-section {
  padding: 32px 0;
  background: #f8fafc;
}

.mobile-resources-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-resource-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: white;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.mobile-resource-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(99, 102, 241, 0.3);
}

.mobile-resource-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
}

.mobile-resource-icon.checklist {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.mobile-resource-icon.guide {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.mobile-resource-icon.assessment {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.mobile-resource-info {
  flex: 1;
  min-width: 0;
}

.mobile-resource-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2px;
}

.mobile-resource-desc {
  display: block;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.3;
}

.mobile-resource-action {
  color: #94a3b8;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.mobile-resource-card:hover .mobile-resource-action {
  color: #6366f1;
  transform: translateX(2px);
}

/* ===== Stats Section ===== */
.mobile-stats-section {
  padding: 32px 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

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

.mobile-stat {
  text-align: center;
}

.mobile-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #818cf8;
  line-height: 1;
  margin-bottom: 6px;
}

.mobile-stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}

/* ===== Floating CTA ===== */
.mobile-floating-cta {
  position: fixed;
  bottom: 56px; /* Above mobile-bottom-nav-v2 */
  left: 0;
  right: 0;
  display: flex;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 99; /* Below mobile-bottom-nav-v2 (9999) */
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-cta-primary {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35);
}

.mobile-cta-primary:hover {
  color: white;
}

.mobile-cta-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #25D366;
  color: white;
  border-radius: 12px;
  font-size: 1.3rem;
  text-decoration: none;
}

.mobile-cta-whatsapp:hover {
  color: white;
}

.mobile-cta-call {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #1e293b;
  color: white;
  border-radius: 12px;
  font-size: 1.2rem;
  text-decoration: none;
}

.mobile-cta-call:hover {
  color: white;
}


/* ========================================
   LEGACY MOBILE STYLES (kept for tabs/other)
======================================== */

@media (max-width: 767.98px) {
  /* Ensure partners section is visible at top in mobile */
  .desktop-home-version .desktop-partners-top {
    margin-top: 0 !important;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  
  /* Desktop hero content - proper spacing for mobile */
  .desktop-hero-content {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    margin-bottom: 20px;
  }
  
  /* Hide tabs section on mobile - hero has all needed content */
  .modern-tabs-section {
    display: none !important;
  }
}

.mobile-home-version {
  background: #f8f9fa;
}

/* ========================================
   MODERN HERO - Inspired by Stripe/Vercel
======================================== */
.mobile-hero-compact {
  background: linear-gradient(135deg, #0f0c29 0%, #1a1a2e 50%, #24243e 100%);
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}

#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.6;
}

.mobile-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Logo Section */
.hero-logo-wrapper {
  display: inline-block;
}

.hero-logo-img {
  height: 44px;
  width: auto;
}

/* Animated Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* Main Headline */
.mobile-hero-headline {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0;
}

.gradient-text {
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-hero-description {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.5;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

/* About tab: keep 'Our Story' card height aligned with accordion (mobile too) */
.about-story-card {
  display: flex;
  flex-direction: column;
}

.about-story-content {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.about-story-card #show-more.more {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
}

.about-story-card.is-expanded .about-story-content {
  overflow: auto;
}

.about-story-card.is-expanded #show-more {
  max-height: 2000px;
  visibility: visible;
}

/* Search Trigger - Floating style */
.hero-search-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-search-trigger:hover,
.hero-search-trigger:focus {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}

.hero-search-trigger i {
  font-size: 1rem;
  opacity: 0.7;
}

.hero-search-trigger span {
  flex: 1;
  text-align: left;
}

.search-shortcut {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.7rem;
  font-family: system-ui;
}

/* CTA Buttons - Modern pill style */
.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
  color: white;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
  color: white;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.15);
  color: white;
}

/* Hero Glow Effect */
.hero-glow {
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ========================================
   TRUST BAR - Social Proof
======================================== */
.mobile-trust-bar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 12px 0;
}

.trust-bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.trust-item {
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
}

.trust-item span {
  font-size: 0.7rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-divider {
  width: 1px;
  height: 30px;
  background: #e5e7eb;
}

/* ========================================
   NEW V2 STYLES - Light Mode Design
======================================== */

/* Trust Pill - Light Design */
.trust-pill {
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  padding: 14px 24px;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.trust-pill-item {
  text-align: center;
  padding: 0 12px;
}

.trust-pill-item strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1d4ed8;
}

.trust-pill-item span {
  font-size: 0.65rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.trust-pill-divider {
  width: 1px;
  height: 32px;
  background: #e2e8f0;
}

/* Partners V2 */
.partners-label-v2 {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #64748b;
  text-align: center;
  margin-bottom: 12px;
  font-weight: 600;
}

.mobile-partners-track-v2 {
  display: flex;
  gap: 40px;
  padding: 12px 0;
  animation: scroll-partners 30s linear infinite;
  width: max-content;
}

.mobile-partners-track-v2 img {
  height: 26px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}

.mobile-partners-track-v2 img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Section Title V2 */
.mobile-section-title-v2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
}

.mobile-section-title-v2 i {
  color: #3b82f6;
}

.see-all-link-v2 {
  font-size: 0.8rem;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Service Cards V2 - Light Mode */
.service-card-v2 {
  display: flex;
  flex-direction: column;
  padding: 18px 14px;
  background: white;
  border-radius: 16px;
  text-decoration: none;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  min-height: 130px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-card-v2:hover,
.service-card-v2:active {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  color: #1e293b;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon-v2 {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.service-icon-v2 i {
  font-size: 1.2rem;
  color: white;
}

.bg-gradient-red {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.bg-gradient-cyan {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.bg-gradient-teal {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.bg-gradient-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.service-card-v2 h6 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1e293b;
}

.service-card-v2 small {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.3;
}

/* Why Section V2 - Stats Grid (Light Mode) */
.mobile-why-section-v2 {
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
}

.mobile-why-section-v2 .mobile-section-title-v2 {
  color: #1e293b !important;
}

.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.why-main-card {
  grid-column: 1;
  grid-row: 1 / 3;
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
  border-radius: 20px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3);
}

.why-main-icon {
  font-size: 1.5rem;
  color: #10b981;
  margin-bottom: 12px;
}

.why-main-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.why-main-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  margin-top: 8px;
  line-height: 1.4;
}

.why-side-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-stat-item {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.why-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-stat-icon i {
  font-size: 1.1rem;
  color: white;
}

.why-stat-icon.bg-cyan { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); }
.why-stat-icon.bg-green { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.why-stat-icon.bg-yellow { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.why-stat-icon.bg-red { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }

.why-stat-content strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
}

.why-stat-content span {
  font-size: 0.7rem;
  color: #64748b;
}

.why-bottom-stats {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
}

.why-stat-item-small {
  flex: 1;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.why-stat-icon-small {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-stat-icon-small i {
  font-size: 1rem;
  color: white;
}

/* Products Section V2 */
.mobile-products-section {
  background: #0f172a;
}

.mobile-products-section .mobile-section-title-v2 {
  color: white;
}

.products-scroll-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -12px;
  padding: 0 12px;
}

.products-scroll-container::-webkit-scrollbar {
  display: none;
}

.products-scroll-track {
  display: flex;
  gap: 14px;
  padding: 4px 0 16px;
}

.product-card-v2 {
  min-width: 160px;
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-card-v2:hover,
.product-card-v2:active {
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-2px);
}

.product-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.product-card-header img {
  height: 28px;
  width: auto;
}

.product-badge {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.product-card-v2 h6 {
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.product-card-v2 small {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.3;
  display: block;
}

/* ========================================
   PRODUCTS SECTION - TAILWIND STYLE (LIGHT MODE)
======================================== */
.mobile-products-section-tw {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding-bottom: 24px;
}

.mobile-products-section-tw .mobile-section-title-v2 {
  color: #1e293b;
}

.mobile-products-section-tw .mobile-section-title-v2 i {
  color: #3b82f6;
}

.mobile-products-section-tw .see-all-link-v2 {
  color: #3b82f6;
}

.products-scroll-tw {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0 8px;
  margin: 0 -4px;
}

.products-scroll-tw::-webkit-scrollbar {
  display: none;
}

/* Light Glass Card Style */
.product-card-tw {
  flex-shrink: 0;
  width: 220px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.product-card-tw:hover,
.product-card-tw:active {
  background: white;
  border-color: #cbd5e1;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-card-tw-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.product-card-tw-header img {
  height: 32px;
  width: auto;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.product-card-tw:hover .product-card-tw-header img {
  opacity: 1;
  transform: scale(1.05);
}

/* Product Tags with Colors - Light Mode */
.product-tag {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.tag-popular {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.tag-backup {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.tag-xdr {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.tag-firewall {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
}

.tag-cloud {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.tag-mfa {
  background: #ecfeff;
  color: #0e7490;
  border: 1px solid #a5f3fc;
}

.product-card-tw h6 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 6px;
}

.product-card-tw p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
}

/* Bottom Navigation V2 */
.mobile-bottom-nav-v2 {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 8px;
  padding-bottom: env(safe-area-inset-bottom, 0);
  z-index: 1000;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.bottom-nav-item-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: #64748b;
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.bottom-nav-item-v2 i {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.bottom-nav-item-v2.active {
  color: #1d4ed8;
}

.bottom-nav-item-v2:hover {
  color: #1e293b;
}

.bottom-nav-search-btn {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  margin-top: -20px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bottom-nav-search-btn i {
  font-size: 1.3rem;
  color: white;
}

.bottom-nav-search-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

/* WhatsApp Button */
.btn-hero-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: white;
  border-radius: 14px;
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-hero-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: white;
}

/* Hero description left alignment */
.mobile-hero-content.text-start .mobile-hero-description {
  margin-left: 0;
  margin-right: 0;
}

.mobile-hero-content.text-start .hero-cta-group {
  justify-content: flex-start;
}

/* Partners Section */
.partners-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9ca3af;
  text-align: center;
  margin-bottom: 8px;
}

.mobile-hero-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.mobile-hero-subtitle {
  font-size: 0.875rem;
  opacity: 0.9;
  line-height: 1.4;
}

/* Quick Actions Grid */
.quick-action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  background: white;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.quick-action-card:active {
  transform: scale(0.95);
}

.quick-action-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.quick-action-icon i {
  font-size: 1.25rem;
  color: white;
}

.quick-action-card span {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
}

/* Section Titles */
.mobile-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1f0757;
}

.see-all-link {
  font-size: 0.8rem;
  color: #0d6efd;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.see-all-link .see-all-icon {
  transition: transform 0.3s ease;
}

.see-all-link[aria-expanded="true"] .see-all-icon {
  transform: rotate(180deg);
}

.see-all-link[aria-expanded="true"] .see-all-text::after {
  content: "Ocultar";
}

.see-all-link[aria-expanded="true"] .see-all-text {
  font-size: 0;
}

.see-all-link[aria-expanded="true"] .see-all-text::after {
  font-size: 0.8rem;
}

/* ========================================
   SERVICE GRID - Modern Cards
======================================== */
.service-grid-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 12px;
  background: white;
  border-radius: 16px;
  text-decoration: none;
  color: #1f2937;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-grid-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0d6efd, #0a58ca);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-grid-card:hover::before,
.service-grid-card:active::before {
  transform: scaleX(1);
}

.service-grid-card:hover,
.service-grid-card:active {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-color: transparent;
  color: #1f2937;
}

.service-icon-round {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.service-grid-card:hover .service-icon-round {
  transform: scale(1.1);
}

.service-icon-round i {
  font-size: 1.25rem;
}

.service-grid-card h6 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1f2937;
}

.service-grid-card small {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.3;
}

/* Horizontal Scroll Container */
.mobile-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -12px;
  padding: 0 12px;
}

.mobile-scroll-container::-webkit-scrollbar {
  display: none;
}

.mobile-scroll-track {
  display: flex;
  gap: 12px;
  padding: 4px 0;
}

/* Product Cards (Horizontal) */
.mobile-product-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 240px;
  padding: 12px;
  background: white;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}

.mobile-product-card:active {
  transform: scale(0.98);
}

.mobile-product-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-product-icon img {
  max-width: 40px;
  max-height: 40px;
  object-fit: contain;
}

.mobile-product-info {
  flex: 1;
  min-width: 0;
}

.mobile-product-info h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  color: #1f0757;
}

.mobile-product-info p {
  font-size: 0.75rem;
  color: #666;
  margin: 2px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-product-card > i {
  color: #ccc;
  font-size: 1rem;
}

/* Services Grid */
.mobile-services-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: white;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.mobile-service-item:active {
  background: #f0f0f0;
}

.service-icon-small {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon-small i {
  font-size: 1.1rem;
  color: white;
}

.service-text {
  display: flex;
  flex-direction: column;
}

.service-text strong {
  font-size: 0.875rem;
  color: #1f0757;
}

.service-text span {
  font-size: 0.75rem;
  color: #666;
}

/* Partners Carousel */
.mobile-partners-section {
  background: #f8f9fa;
  overflow: hidden;
}

.mobile-partners-scroll {
  overflow: hidden;
}

.mobile-partners-track {
  display: flex;
  gap: 30px;
  padding: 8px 0;
  animation: scroll-partners 25s linear infinite;
  width: max-content;
}

.mobile-partners-track img {
  height: 28px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(30%);
  transition: opacity 0.3s, filter 0.3s;
}

@keyframes scroll-partners {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Brand Collapse Toggle */
.brand-collapse-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 16px;
  background: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: #1f0757;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: background 0.2s;
}

.brand-collapse-toggle:active {
  background: #f0f0f0;
}

.brand-collapse-toggle .toggle-icon {
  transition: transform 0.3s;
}

.brand-collapse-toggle[aria-expanded="true"] .toggle-icon {
  transform: rotate(180deg);
}

/* Service Icon Round for Horizontal Scroll */
.service-icon-round {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-round i {
  font-size: 1.2rem;
}

/* ========================================
   WHY TUTARI - Modern Carousel
======================================== */
.mobile-why-section {
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

.why-carousel-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -12px;
  padding: 0 12px;
  scroll-snap-type: x mandatory;
}

.why-carousel-container::-webkit-scrollbar {
  display: none;
}

.why-carousel-track {
  display: flex;
  gap: 12px;
  padding: 4px 0;
}

.why-card {
  min-width: 130px;
  padding: 20px 14px;
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  text-align: center;
  scroll-snap-align: start;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}

.why-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.why-icon {
  font-size: 1.75rem;
  margin-bottom: 10px;
  opacity: 0.95;
}

.why-number {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.why-text {
  font-size: 0.72rem;
  opacity: 0.9;
  line-height: 1.3;
  margin-top: 4px;
}

.why-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.why-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background 0.3s;
}

.why-dot.active {
  background: white;
  width: 18px;
  border-radius: 3px;
}

/* Stats Section */
.stat-item {
  padding: 8px;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.7rem;
  opacity: 0.85;
  line-height: 1.2;
}

/* Brand Cards */
.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 12px;
  background: white;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-left: 4px solid #ddd;
  transition: transform 0.2s;
}

.brand-card:active {
  transform: scale(0.97);
}

.brand-card img {
  height: 28px;
  width: auto;
  object-fit: contain;
  margin-bottom: 8px;
}

.brand-card span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1f0757;
}

.brand-card small {
  font-size: 0.7rem;
  color: #888;
}

.brand-bitdefender { border-left-color: #ed1c24; }
.brand-microsoft { border-left-color: #00a4ef; }
.brand-acronis { border-left-color: #00a4e4; }
.brand-fortinet { border-left-color: #da291c; }

/* Brand Showcase - Stylized Grid */
.brands-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.brand-showcase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.brand-showcase-item:active {
  transform: scale(0.95);
}

.brand-logo-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 3px solid var(--brand-color, #ddd);
  margin-bottom: 8px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.brand-logo-circle img {
  max-width: 36px;
  max-height: 36px;
  object-fit: contain;
}

.brand-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1f0757;
  text-align: center;
}

/* CTA Section */
.mobile-cta-section {
  background: linear-gradient(135deg, #1f0757 0%, #2d1b69 100%);
}

/* ========================================
   BOTTOM NAVIGATION (Tab Bar)
======================================== */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 8px;
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -1px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #8e8e93;
  font-size: 0.65rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 12px;
  transition: all 0.2s ease;
  min-width: 64px;
  background: none;
  border: none;
  cursor: pointer;
}

.bottom-nav-item i {
  font-size: 1.35rem;
  margin-bottom: 2px;
  transition: transform 0.2s ease;
}

.bottom-nav-item span {
  transition: color 0.2s ease;
}

.bottom-nav-item:active {
  transform: scale(0.92);
}

.bottom-nav-item.active {
  color: #1f0757;
}

.bottom-nav-item.active i {
  transform: scale(1.1);
}

.bottom-nav-spacer {
  height: calc(64px + env(safe-area-inset-bottom, 0) + 16px);
}

/* ========================================
   MOBILE SEARCH MODAL
======================================== */
.mobile-search-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  display: none;
  flex-direction: column;
  padding: 12px 16px;
  padding-top: calc(12px + env(safe-area-inset-top, 0));
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-search-modal.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.search-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.mobile-search-box {
  flex: 1;
  display: flex;
  align-items: center;
  background: #f2f2f7;
  border-radius: 12px;
  padding: 12px 16px;
  gap: 10px;
}

.mobile-search-box i {
  color: #8e8e93;
  font-size: 1rem;
}

.mobile-search-box input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1rem;
  color: #1c1c1e;
  outline: none;
}

.mobile-search-box input::placeholder {
  color: #8e8e93;
}

.search-clear-btn {
  background: #c7c7cc;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
}

.search-clear-btn.visible {
  opacity: 1;
}

.search-clear-btn i {
  font-size: 0.65rem;
  color: white;
}

.search-cancel-btn {
  background: none;
  border: none;
  color: #007aff;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px;
  cursor: pointer;
}

.search-results-container {
  flex: 1;
  overflow-y: auto;
}

.search-section-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #8e8e93;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  padding: 0 4px;
}

.mobile-search-results {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-search-result {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 12px;
  background: #f8f8fa;
  border-radius: 12px;
  text-decoration: none;
  color: #1c1c1e;
  transition: background 0.15s ease;
}

.mobile-search-result:active {
  background: #e5e5ea;
}

.mobile-search-result i {
  font-size: 2.25rem;
  width: 56px;
  text-align: center;
}

.mobile-search-brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.mobile-search-result span {
  font-size: 0.95rem;
  font-weight: 500;
}

.mobile-search-result small {
  font-size: 0.75rem;
  color: #8e8e93;
  display: block;
  margin-top: 2px;
}

/* No Results State */
.no-results-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}

.no-results-container h5 {
  color: #1c1c1e;
  font-weight: 600;
}

.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.search-suggestion-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: #f2f2f7;
  border-radius: 20px;
  font-size: 0.875rem;
  color: #007aff;
  text-decoration: none;
  transition: background 0.15s ease;
  cursor: pointer;
  border: none;
}

.search-suggestion-chip:active {
  background: #e5e5ea;
}

/* Search Result Category Badge */
.search-result-category {
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 4px;
  background: #e5e5ea;
  color: #636366;
  margin-left: auto;
  flex-shrink: 0;
}

.search-result-category.producto { background: #e3f2fd; color: #1565c0; }
.search-result-category.servicio { background: #e8f5e9; color: #2e7d32; }
.search-result-category.marca { background: #fff3e0; color: #ef6c00; }

/* ========================================
   HERO SEARCH BAR
======================================== */
.mobile-search-container {
  margin-top: 16px;
}

.hero-search-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-search-trigger:active {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(0.98);
}

.hero-search-trigger i {
  font-size: 1.1rem;
  opacity: 0.8;
}

/* ========================================
   IMPROVED TOUCH TARGETS
======================================== */
.mobile-home-version .btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quick-action-card {
  min-height: 88px;
  min-width: 76px;
}

.mobile-service-item {
  min-height: 64px;
}

/* ========================================
   HAPTIC FEEDBACK VISUAL
======================================== */
.haptic-feedback {
  position: relative;
  overflow: hidden;
}

.haptic-feedback::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0,0,0,0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.haptic-feedback:active::after {
  transform: translate(-50%, -50%) scale(2);
  opacity: 1;
}

/* Ensure smooth scrolling on iOS */
.mobile-home-version * {
  -webkit-tap-highlight-color: transparent;
}

/* Body padding for bottom nav */
@media (max-width: 767.98px) {
  body.has-bottom-nav {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0));
  }
}

/* ========================================
   NAVIGATION MODALS (Products & Services)
======================================== */
.mobile-nav-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1500;
  display: none;
  flex-direction: column;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav-modal.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.nav-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  padding-top: calc(16px + env(safe-area-inset-top, 0));
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
}

.nav-modal-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1c1c1e;
  margin: 0;
}

.nav-modal-close {
  background: #f2f2f7;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #636366;
  cursor: pointer;
  transition: background 0.15s ease;
}

.nav-modal-close:active {
  background: #e5e5ea;
}

.nav-modal-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  padding-bottom: calc(20px + env(safe-area-inset-bottom, 0));
}

.nav-modal-footer {
  padding: 16px 0;
  text-align: center;
  border-top: 1px solid #f0f0f0;
  margin-top: 16px;
}

.nav-modal-link {
  color: #007aff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Featured Solutions in Products Modal */
.featured-solutions {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #e9ecef;
}

.featured-solutions-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1c1c1e;
  margin-bottom: 14px;
}

.featured-solutions-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.featured-solution-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: all 0.15s ease;
}

.featured-solution-item:active {
  transform: scale(0.98);
  background: #f8f9fa;
}

.featured-solution-item img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.featured-solution-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1c1c1e;
}

/* Brands Section Title */
.brands-section-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1c1c1e;
}

/* Brand Grid */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.brand-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 8px;
  background: #f8f9fa;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.brand-grid-item:active {
  transform: scale(0.95);
  background: #e9ecef;
}

.brand-grid-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 2px solid var(--brand-color, #ddd);
  margin-bottom: 8px;
}

.brand-grid-icon img {
  max-width: 32px;
  max-height: 32px;
  object-fit: contain;
}

.brand-grid-item span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1c1c1e;
  text-align: center;
}

/* Brand Back Button */
.brand-back-btn {
  display: flex;
  align-items: center;
  padding: 12px 0;
  margin-bottom: 16px;
  background: none;
  border: none;
  color: #007aff;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
}

/* Services List */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}

.service-list-item:active {
  background: #e9ecef;
}

.service-list-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-list-icon i {
  font-size: 1.25rem;
}

.service-list-info {
  flex: 1;
}

.service-list-info strong {
  display: block;
  font-size: 0.95rem;
  color: #1c1c1e;
  margin-bottom: 2px;
}

.service-list-info small {
  font-size: 0.8rem;
  color: #8e8e93;
}

/* Contact Options List */
.contact-options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-option-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease;
}

.contact-option-item:active {
  background: #e9ecef;
}

.contact-option-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-option-icon i {
  font-size: 1.25rem;
}

.contact-option-info {
  flex: 1;
}

.contact-option-info strong {
  display: block;
  font-size: 0.95rem;
  color: #1c1c1e;
  margin-bottom: 2px;
}

.contact-option-info small {
  font-size: 0.8rem;
  color: #8e8e93;
}

/* Brand Products Results */
.brand-products-results {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-product-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: #f8f9fa;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}

.brand-product-item:active {
  background: #e9ecef;
}

.brand-product-item i {
  font-size: 1.2rem;
  width: 28px;
  text-align: center;
}

.brand-product-item span {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1c1c1e;
}

/* Minimal Footer */
.mobile-minimal-footer {
  border-top: 1px solid #e9ecef;
}
        .partners-carousel-wrapper {
          position: relative;
          overflow: hidden;
        }
        
        .partners-carousel-container {
          position: relative;
          display: flex;
          align-items: center;
          gap: 15px;
          padding: 0 10px;
        }
        
        .partners-carousel {
          flex: 1;
          overflow: hidden;
          padding: 20px 0;
          min-width: 0; /* Prevent flex item from overflowing */
        }
        
        .partners-track {
          display: flex;
          gap: 20px;
          transition: transform 0.5s ease;
          will-change: transform;
        }
        
        .partner-slide {
          flex: 0 0 calc((100% - 60px) / 4); /* 4 items with 3 gaps of 20px */
          max-width: calc((100% - 60px) / 4);
        }
        
        .partner-card {
          display: flex;
          align-items: center;
          justify-content: center;
          background: rgba(255, 255, 255, 0.95);
          border-radius: 15px;
          padding: 25px 15px;
          height: 110px;
          transition: all 0.3s ease;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          text-decoration: none;
          width: 100%;
        }
        
        .partner-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
          background: #fff;
        }
        
        .partner-card img {
          max-width: 85%;
          max-height: 55px;
          object-fit: contain;
          filter: grayscale(100%);
          transition: filter 0.3s ease;
        }
        
        .partner-card:hover img {
          filter: grayscale(0%);
        }
        
        .carousel-nav {
          background: rgba(255, 255, 255, 0.9);
          border: none;
          width: 42px;
          height: 42px;
          min-width: 42px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          transition: all 0.3s ease;
          font-size: 18px;
          color: #1f0757;
          flex-shrink: 0;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .carousel-nav:hover {
          background: #fff;
          transform: scale(1.1);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }
        
        .carousel-nav:active {
          transform: scale(0.95);
        }
        
        .carousel-indicators-partners {
          display: flex;
          justify-content: center;
          gap: 10px;
          margin-top: 20px;
        }
        
        .carousel-indicator-dot {
          width: 10px;
          height: 10px;
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.4);
          border: none;
          cursor: pointer;
          transition: all 0.3s ease;
          padding: 0;
        }
        
        .carousel-indicator-dot.active {
          background: #fff;
          width: 30px;
          border-radius: 5px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 1200px) {
          .partner-slide {
            flex: 0 0 calc((100% - 40px) / 3); /* 3 items with 2 gaps of 20px */
            max-width: calc((100% - 40px) / 3);
          }
        }
        
        @media (max-width: 768px) {
          .partners-track {
            gap: 15px;
          }
          
          .partner-slide {
            flex: 0 0 calc((100% - 15px) / 2); /* 2 items with 1 gap of 15px */
            max-width: calc((100% - 15px) / 2);
          }
          
          .carousel-nav {
            width: 36px;
            height: 36px;
            min-width: 36px;
            font-size: 16px;
          }
          
          .partner-card {
            height: 100px;
            padding: 20px 15px;
          }
          
          .partner-card img {
            max-height: 50px;
          }
        }
        
        @media (max-width: 576px) {
          .partners-carousel-container {
            gap: 8px;
            padding: 0 5px;
          }
          
          .partners-track {
            gap: 10px;
          }
          
          .partner-slide {
            flex: 0 0 100%;
            max-width: 100%;
          }
          
          .carousel-nav {
            width: 32px;
            height: 32px;
            min-width: 32px;
            font-size: 14px;
            position: relative;
            z-index: 10;
          }
          
          .partner-card {
            height: 90px;
            padding: 15px 10px;
            width: 100%;
          }
          
          .partner-card img {
            max-height: 45px;
            max-width: 80%;
          }
        }
