/* ========================================
   RAYS EMPRESAS — Global Styles
   Deep Navy + Electric Blue | Glassmorphism
   ======================================== */

:root {
  --navy-950: #030712;
  --navy-900: #0a0f1e;
  --navy-800: #0d1526;
  --navy-700: #0f1f3d;
  --navy-600: #152a52;
  --navy-500: #1e3a6e;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-300: #93c5fd;
  --electric: #0ea5e9;
  --electric-light: #38bdf8;
  --cyan: #06b6d4;
  --indigo: #6366f1;
  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-05: rgba(255, 255, 255, 0.05);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-bg-hover: rgba(255, 255, 255, 0.08);
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 40px;
  --shadow-blue: 0 0 40px rgba(59, 130, 246, 0.15), 0 0 80px rgba(59, 130, 246, 0.05);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --section-spacing: 100px;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  /* Force visibility if observer or JS fails to trigger quickly */
  visibility: visible;
}

/* If the element is reveal but we haven't added visible, we want to make sure it's not permanently stuck if JS fails */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ===== SECTION UTILS ===== */
.section-padding {
  padding: var(--section-spacing) 0;
}

.section-margin {
  margin: 120px 0;
}

/* Force visibility in industry landing to prevent invisible content */
.industry-landing .reveal {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
  width: 100%;
}

input,
select,
button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ===== TYPOGRAPHY ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-400);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-tag-light {
  color: var(--white-70);
  background: var(--white-10);
  border-color: var(--white-20);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.section-title-light {
  color: var(--white);
}

.section-desc {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  line-height: 1.75;
}

.section-desc-light {
  color: rgba(255, 255, 255, 0.85);
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header .section-desc {
  margin: 0 auto;
}

.text-gradient {
  background: linear-gradient(135deg, var(--blue-400), var(--electric-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.center-text {
  text-align: center;
}

/* ===== GLASS CARDS ===== */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: var(--shadow-blue), var(--shadow-card);
  transform: translateY(-4px);
}

/* ===== VALUE PROP COMPARISON ===== */
.value-prop-section {
  padding: 80px 0;
  background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
}

.comparison-table-wrap {
  overflow: hidden;
  margin-top: 32px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 22% 26% 26% 26%;
  grid-template-rows: auto repeat(8, auto) auto; /* Header + 8 Rows + Footer */
  background: transparent;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
}

.comp-col {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 10;
}

.comp-select.featured {
  position: relative;
}

.comp-select .comp-name {
  color: var(--white);
}

.comp-badge-container {
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-new {
  font-size: 9px;
  background: #f59e0b;
  color: #0d1226;
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
}

.select-special-section {
  padding: 100px 0;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.select-feature-item {
  margin-bottom: 12px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.select-feature-item strong {
  color: var(--blue-400);
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.comp-col {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 10;
}

.comp-header {
  padding: 24px 15px;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.comp-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.comp-tier {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  width: fit-content;
  display: block;
  background: rgba(148, 163, 184, 0.15); /* Unified grey background */
  color: #94a3b8;
}

.comp-enterprise .comp-tier,
.comp-lite .comp-tier {
  /* Redundant now but keeping structure */
  background: rgba(148, 163, 184, 0.15);
  color: #94a3b8;
}

.comp-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
}

.comp-cell {
  padding: 18px 30px;
  border-bottom: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  font-size: 15px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
}

.comp-col:last-child .comp-cell {
  border-right: none;
}

.comp-labels .comp-cell {
  font-weight: 700;
  color: var(--blue-400);
  background: transparent;
}

.comp-labels .comp-header {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white-50);
  text-align: left;
}

.comp-enterprise.featured {
  background: transparent;
  position: relative;
}

.comp-footer {
  padding: 24px 30px;
  background: transparent;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--glass-border);
}

.btn-comparison-cta {
  background: linear-gradient(135deg, var(--blue-600), var(--electric)) !important;
  color: #fff !important;
  border: none !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  width: 100%;
  height: 56px; /* Fixed height for uniformity */
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 15px !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3) !important;
  line-height: 1.3;
  word-spacing: 1px;
}

.btn-comparison-cta:hover {
  background: linear-gradient(135deg, var(--blue-500), var(--electric-light)) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5) !important;
}

.comp-col:last-child .comp-header,
.comp-col:last-child .comp-footer {
  border-right: none;
}

.comp-footer-placeholder {
  min-height: 0;
  height: 100%;
  background: transparent;
  border-right: 1px solid var(--glass-border);
}


@media (max-width: 992px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
    border: none;
  }

  .comp-labels {
    display: none;
  }

  .comp-col {
    display: flex;
    flex-direction: column;
    grid-row: auto;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    background: var(--glass-bg);
  }

  .comp-cell {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-height: auto;
    border-right: none;
  }

  .comp-cell::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--blue-400);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .comp-footer {
    border-right: none;
  }
}


/* ===== BUTTONS ===== */
.nav-auth-btn {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  padding: 8px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1;
}

.nav-auth-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

.nav-raysgo-btn {
  background-color: var(--blue-600);
  border-radius: 50px;
  padding: 10px 24px;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  border: 1px solid var(--blue-500);
}

.nav-raysgo-btn:hover {
  background-color: var(--electric);
  border-color: var(--electric-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--electric));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-500), var(--electric-light));
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.55);
  transform: translateY(-2px);
}

.raysgo-logo-svg {
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
  transition: transform 0.3s ease;
}

#nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.45);
}

#nav-cta-btn:hover {
  background: linear-gradient(135deg, var(--blue-600), var(--electric));
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.6);
  transform: translateY(-2px);
}

#nav-cta-btn:hover .raysgo-logo-svg {
  transform: translateX(2px) scale(1.05);
}


#nav-demo-btn {
  background: linear-gradient(135deg, var(--blue-600), var(--electric));
  color: var(--white);
  border: none;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}

#nav-demo-btn:hover {
  background: linear-gradient(135deg, var(--blue-500), var(--electric-light));
  color: var(--white);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.6);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white-70);
  border: 1px solid var(--white-20);
}

.btn-ghost:hover {
  background: var(--white-10);
  color: var(--white);
  border-color: var(--white-40);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: var(--white-10);
  border-color: var(--white);
}

.btn-lg {
  font-size: 16px;
  padding: 16px 36px;
}

.btn-outline {
  background: transparent;
  color: var(--blue-400);
  border: 1.5px solid rgba(59, 130, 246, 0.4);
}

.btn-outline:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--blue-400);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ===== BOTÓN FLOTANTE SOS ===== */
.btn-sos-floating {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 70px;
  height: 70px;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: none;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.5);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-sos-floating span {
  font-size: 11px;
  font-weight: 800;
  margin-top: -2px;
}

.btn-sos-floating:hover {
  transform: scale(1.1) translateY(-5px);
  background: #dc2626;
  box-shadow: 0 15px 40px rgba(239, 68, 68, 0.6);
}

.sos-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ef4444;
  border-radius: 50%;
  z-index: -1;
  animation: sos-glow 2s infinite;
}

@keyframes sos-glow {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .btn-sos-floating {
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
  }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen;
}

.logo-icon {
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
}

.logo-text-light {
  color: var(--white);
}

.logo-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--blue-400);
  display: block;
}

/* ===== WORDMARK LOGO (real brand) ===== */
.logo-wordmark {
  font-family: 'Arial Black', 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-wordmark-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--blue-300);
  text-transform: uppercase;
  margin-top: 3px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--white-70);
  padding: 8px 12px;
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.02em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--blue-400);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* ===== DROPDOWN MENU ===== */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-icon {
  margin-top: 1px;
  opacity: 0.6;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
  opacity: 1;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(13, 21, 38, 0.95);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 12px;
  min-width: 200px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white-70);
  transition: var(--transition);
  text-align: left;
}

.dropdown-menu li a:hover {
  background: rgba(59, 130, 246, 0.15);
  color: var(--blue-400);
  padding-left: 20px;
}

/* Connect the hover bridge */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 80%;
  left: 0;
  width: 100%;
  height: 20px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-actions .btn {
  height: 44px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}

/* Hamburger → X animation when menu is open */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(3, 7, 18, 0.85) 0%,
      rgba(10, 15, 30, 0.75) 40%,
      rgba(10, 15, 30, 0.5) 100%);
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--blue-500);
  opacity: 0;
  animation: float-particle var(--dur) ease-in-out var(--delay) infinite;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: var(--max-opacity);
  }

  90% {
    opacity: var(--max-opacity);
  }

  100% {
    transform: translateY(-20vh) scale(1.5) rotate(360deg);
    opacity: 0;
  }
}

/* Geometric shapes */
.geo-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.geo-shape {
  position: absolute;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 4px;
  animation: geo-float 20s linear infinite;
}

.geo-1 {
  width: 200px;
  height: 200px;
  right: 15%;
  top: 15%;
  transform: rotate(45deg);
  border-color: rgba(59, 130, 246, 0.12);
  animation-duration: 25s;
}

.geo-2 {
  width: 100px;
  height: 100px;
  right: 25%;
  bottom: 30%;
  transform: rotate(20deg);
  border-color: rgba(14, 165, 233, 0.15);
  animation-duration: 18s;
  animation-direction: reverse;
}

.geo-3 {
  width: 60px;
  height: 60px;
  left: 10%;
  top: 40%;
  transform: rotate(15deg);
  border-color: rgba(99, 102, 241, 0.15);
  animation-duration: 22s;
}

.geo-4 {
  width: 300px;
  height: 300px;
  right: -50px;
  top: -50px;
  border-radius: 50%;
  border-color: rgba(59, 130, 246, 0.06);
  animation-duration: 30s;
}

@keyframes geo-float {

  0%,
  100% {
    transform: rotate(var(--r, 45deg)) translateY(0);
  }

  25% {
    transform: rotate(calc(var(--r, 45deg) + 10deg)) translateY(-20px);
  }

  75% {
    transform: rotate(calc(var(--r, 45deg) - 10deg)) translateY(15px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white-70);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--blue-400);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--blue-500);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.4);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem); /* Drastically reduced to ensure 3-line layout fits */
  font-weight: 900;
  line-height: 1.1; 
  color: var(--white);
  margin-bottom: 24px;
  max-width: 1000px; /* Increased to prevent accidental wrapping within 3 lines */
}

.hero-title-gradient {
  background: linear-gradient(135deg, var(--blue-400), var(--electric-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  color: var(--white-70);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 44px;
}

.hero-desc strong {
  color: var(--white-90);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: fit-content;
  backdrop-filter: blur(16px);
}

.hero-stat {
  padding: 24px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
}

.hero-stat-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.08);
  margin: 16px 0;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hero-stat-unit {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-400);
}

.hero-stat-text {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  text-align: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white-50);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scroll-bounce 2.5s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--blue-500), transparent);
}

@keyframes scroll-bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateX(-50%) translateY(8px);
    opacity: 0.5;
  }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 40px 0;
  background: var(--navy-900);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.trust-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 500;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white-40);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.35);
  transition: var(--transition);
  filter: grayscale(1);
}

.trust-logo-item:hover {
  color: var(--white-60);
  filter: none;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== SERVICES ===== */
.services {
  padding: var(--section-spacing) 0;
  background: var(--navy-900);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}

.service-card {
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-wide {
  grid-column: 1 / -1;
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(var(--icon-color, 59, 130, 246), 0.1);
  border: 1px solid rgba(var(--icon-color, 59, 130, 246), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--icon-color, var(--blue-500));
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: rgba(59, 130, 246, 0.15);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.service-tag-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--badge-color);
  color: var(--badge-text);
  margin-bottom: 16px;
}

.service-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.service-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.service-features li {
  font-size: 14px;
  color: var(--white-70);
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  color: var(--blue-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.service-metric {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.metric-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-400), var(--electric-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-lbl {
  font-size: 13px;
  color: var(--text-secondary);
}

.bi-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.bi-feature {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  transition: var(--transition);
}

.bi-feature:hover {
  background: rgba(59, 130, 246, 0.06);
  border-color: rgba(59, 130, 246, 0.2);
  color: var(--white-70);
}

.bi-feature svg {
  color: var(--blue-400);
}

/* ===== METRICS ===== */
.metrics-section {
  position: relative;
  padding: var(--section-spacing) 0;
  overflow: hidden;
}

.metrics-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800), var(--navy-700));
}

.metrics-globe {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  object-fit: cover;
  opacity: 0.18;
  filter: blur(1px);
}

.metrics-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy-950) 0%, transparent 60%, var(--navy-950) 100%);
}

.metrics-section .container {
  position: relative;
  z-index: 1;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.metric-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-600), var(--electric));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.metric-card:hover::after {
  transform: scaleX(1);
}

.metric-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(59, 130, 246, 0.25);
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
}

.metric-icon {
  color: var(--blue-400);
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--white), var(--blue-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.metric-text-val {
  font-size: 2.2rem;
}

.metric-label {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.metric-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  overflow: hidden;
  margin-top: auto;
}

.metric-bar-fill {
  height: 100%;
  width: var(--fill);
  background: linear-gradient(90deg, var(--blue-600), var(--electric));
  border-radius: 100px;
  animation: bar-fill 1.5s ease-out forwards;
  transform: scaleX(0);
  transform-origin: left;
}

@keyframes bar-fill {
  to {
    transform: scaleX(1);
  }
}

.metrics-cta {
  text-align: center;
}

/* ===== TECH ===== */
.tech-section {
  padding: var(--section-spacing) 0;
  background: var(--navy-900);
}

.tech-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tech-content .section-tag {
  margin-bottom: 20px;
}

.tech-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 40px 0;
}

.tech-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.tech-feature:hover {
  background: rgba(255, 255, 255, 0.03);
}

.tf-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--electric));
  flex-shrink: 0;
  margin-top: 7px;
  box-shadow: 0 0 8px var(--blue-500);
}

.tf-content h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.tf-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.tech-visual {
  position: relative;
}

.dashboard-mockup {
  background: rgba(10, 15, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(59, 130, 246, 0.1);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red {
  background: #ef4444;
}

.dot-yellow {
  background: #f59e0b;
}

.dot-green {
  background: #22c55e;
}

.mockup-title {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.mockup-body {
  position: relative;
}

.dashboard-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.mockup-overlay-cards {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  pointer-events: none;
}

.overlay-card {
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  animation: card-float 4s ease-in-out infinite;
}

.oc-right {
  animation-delay: -2s;
  align-self: flex-end;
}

@keyframes card-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.oc-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.oc-green {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.oc-blue {
  background: rgba(59, 130, 246, 0.15);
  color: var(--blue-400);
}

.oc-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.oc-lbl {
  font-size: 11px;
  color: var(--text-secondary);
}

/* ===== TEAM ===== */
.team-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.team-photo-wrap {
  position: absolute;
  inset: 0;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(10, 15, 30, 0.95) 0%,
      rgba(10, 15, 30, 0.85) 40%,
      rgba(10, 15, 30, 0.4) 100%);
}

.team-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}

.team-text {
  max-width: 520px;
}

.team-stats {
  display: flex;
  gap: 40px;
  margin: 32px 0;
}

.team-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}

.team-stat span {
  font-size: 13px;
  color: var(--white-60);
}

/* ===== ALLIANCES ===== */
.alliances-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
}

.alliances-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.alliance-card {
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.alliance-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  transition: var(--transition);
}

.alliance-card:hover .alliance-icon {
  background: rgba(59, 130, 246, 0.15);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}

.alliance-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.alliance-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.alliance-num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-400);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 8px 20px;
  border-radius: 100px;
  display: inline-block;
}

/* ===== SUPPORT ===== */
.support-section {
  padding: 140px 0;
  background: var(--navy-900);
}

.support-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.support-globe-card {
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.support-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.15);
  animation: pulse-ring 3s ease-out infinite;
}

.support-pulse-ring::before,
.support-pulse-ring::after {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.08);
  animation: pulse-ring 3s ease-out infinite 1s;
}

.support-pulse-ring::after {
  inset: -60px;
  animation-delay: 2s;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

.support-globe-icon {
  position: relative;
  z-index: 1;
  margin: 0 auto 24px;
  animation: rotate-globe 20s linear infinite;
}

@keyframes rotate-globe {
  to {
    transform: rotate(360deg);
  }
}

.support-live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white-70);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px #22c55e;
}

.support-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.support-badge {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white-70);
}

.support-content .section-title {
  margin-bottom: 20px;
}

.support-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.support-metric {
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  text-align: center;
}

.sm-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue-400);
  margin-bottom: 4px;
}

.sm-label {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* New Emergency Support Design */
.section-tag-emergency {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
}

.support-emergency-box {
  background: rgba(10, 15, 30, 0.4);
  padding: 32px;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  border: 1px solid rgba(239, 68, 68, 0.15);
  position: relative;
  overflow: hidden;
}

.support-emergency-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #ef4444;
}

.emergency-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white-70);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.emergency-pulse {
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  animation: emergency-pulse 2s infinite;
}

@keyframes emergency-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

.emergency-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.emergency-note {
  font-size: 14px;
  color: var(--text-secondary);
}

#support-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 60px;
  background: #ef4444;
  border-color: #ef4444;
}

#support-cta-btn:hover {
  background: #dc2626;
  border-color: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}



.support-globe-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 48px;
  z-index: 1;
}

.support-pulse-ring-red {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border: 1px solid rgba(239, 68, 68, 0.1);
  border-radius: 50%;
  animation: pulse-ring-red 4s infinite linear;
}

@keyframes pulse-ring-red {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0;
  }

  50% {
    opacity: 0.15;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

.support-es-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.flag-icon {
  font-size: 80px;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.3));
}

.es-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.support-live-indicator-red {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #ef4444;
}

.live-dot-red {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse-dot-red 1.5s infinite;
}

@keyframes pulse-dot-red {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}

.sla-showcase {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  background: var(--navy-800);
  background-image: radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
}

.sla-showcase-header {
  padding: 32px 40px 16px;
  text-align: center;
}

.sla-showcase-header h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}

.sla-content {
  padding: 0 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sla-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.sla-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
}

.sla-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.sla-text h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.sla-text p {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.6;
  margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: var(--section-spacing) 0;
  background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 40px;
  position: relative;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 16px;
  color: var(--white-80);
  line-height: 1.75;
  margin-bottom: 28px;
  position: relative;
  font-style: italic;
}

.testimonial-text::before {
  content: '"';
  font-size: 5rem;
  color: rgba(59, 130, 246, 0.15);
  font-family: Georgia, serif;
  position: absolute;
  top: -20px;
  left: -10px;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.author-role {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative;
  padding: var(--section-spacing) 0;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 50%, var(--navy-600) 100%);
}

.cta-geo-1,
.cta-geo-2,
.cta-geo-3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.cta-geo-1 {
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.15);
  top: -100px;
  right: -100px;
}

.cta-geo-2 {
  width: 300px;
  height: 300px;
  background: rgba(14, 165, 233, 0.1);
  bottom: -50px;
  left: 10%;
}

.cta-geo-3 {
  width: 200px;
  height: 200px;
  background: rgba(99, 102, 241, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.final-cta-desc {
  font-size: 18px;
  color: var(--white-70);
  margin-bottom: 48px;
  line-height: 1.7;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 15px;
  outline: none;
  transition: var(--transition);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-input:focus {
  border-color: var(--blue-500);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-select {
  appearance: none;
  cursor: pointer;
}

.form-select option {
  background: var(--navy-800);
  color: var(--white);
}

.form-disclaimer {
  font-size: 13px;
  color: var(--white-50);
  margin-bottom: 32px;
}


/* ===== FOOTER ===== */
.footer {
  background: var(--navy-950);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 0; /* Changed to 0 bottom padding because footer-bottom has background */
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo {
  margin-bottom: 20px;
}

.footer-contact-info {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-contact-info svg {
  color: var(--blue-400);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--blue-400);
}

/* Boletín Footer */
.footer-newsletter p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.newsletter-inline-form {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 320px;
}

.newsletter-inline-form .form-input {
  width: 100%;
  padding: 14px 60px 14px 24px;
  border-radius: 50px;
  background: white !important;
  border: none;
  color: var(--navy-950) !important;
  font-size: 14px;
}

.newsletter-inline-form .btn-submit {
  position: absolute;
  right: 6px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.newsletter-inline-form .btn-submit:hover {
  background: var(--blue-600);
  transform: scale(1.05);
}

/* Footer Bottom with Logos */
.footer-bottom {
  background: #000 !important;
  padding: 30px 0;
  margin-top: 60px;
  width: 100%;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-bottom-partners {
  display: flex;
  align-items: center;
  gap: 30px; /* Narrowed for a tighter grouping */
  flex-wrap: wrap;
}

.footer-bottom-partners img {
  height: 58px; /* Slightly reduced (approx 3%) from 60px */
  width: auto;
  filter: brightness(0) invert(1) opacity(0.85);
  transition: var(--transition);
}

.footer-bottom-partners img:hover {
  filter: brightness(1) invert(0) opacity(1);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ===== SMART FORM & CONDITIONAL LOGIC ===== */
.smart-form {
  margin-top: 40px;
}

.conditional-fields {
  animation: fadeIn 0.4s ease forwards;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-400);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Micro-interactions for buttons */
.btn-primary:active {
  transform: scale(0.98);
}

#form-submit-btn:hover span {
  padding-right: 5px;
}

#form-submit-btn:hover svg {
  transform: translateX(5px);
}

.form-disclaimer {
  margin-top: 24px;
  font-size: 13px;
  color: var(--white-50);
  text-align: center;
}

/* ===== FOOTER 360 STYLES ===== */
.footer {
  background: var(--navy-950);
  padding: 100px 0 40px;
  border-top: 1px solid var(--glass-border);
}

.footer-newsletter-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--white-05);
}

.newsletter-text h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.newsletter-text p {
  color: var(--white-70);
  font-size: 16px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 100px;
  padding: 14px 24px;
  color: var(--white);
  font-size: 15px;
  transition: var(--transition);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--blue-500);
  background: var(--white-10);
}

/* Redundant footer styles removed to avoid conflicts */

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .container {
    padding: 0 32px;
  }

  .nav-container {
    padding: 0 32px;
    gap: 24px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card-wide {
    grid-column: 1 / -1;
  }

  .bi-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .tech-visual {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 48px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav-container {
    padding: 0 20px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    flex-direction: column;
    border-radius: var(--radius-md);
  }

  .hero-stat-divider {
    width: auto;
    height: 1px;
    margin: 0 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .alliances-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-track {
    grid-template-columns: 1fr;
  }

  .support-layout {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .trust-logos {
    gap: 24px;
  }

  .team-stats {
    flex-direction: column;
    gap: 20px;
  }

  .support-metrics {
    grid-template-columns: 1fr;
  }
}

/* ===== SUCCESS STATE ===== */
.form-success {
  text-align: center;
  padding: 40px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-lg);
  color: var(--white);
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

/* ===== TECH SCENARIO CARDS ===== */
.tech-section {
  padding: 120px 0;
  background: var(--navy-950);
}

.tech-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.tech-scenario-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 36px;
  transition: var(--transition);
}

.tech-scenario-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  background: var(--glass-bg-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue), var(--shadow-card);
}

.tsc-icon-wrap {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--icon-color) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--icon-color) 25%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--icon-color);
  transition: var(--transition);
}

.tech-scenario-card:hover .tsc-icon-wrap {
  background: color-mix(in srgb, var(--icon-color) 20%, transparent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--icon-color) 30%, transparent);
}

.tsc-body {
  flex: 1;
}

.tsc-scenario {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--blue-400);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-style: italic;
  font-style: normal;
  opacity: 0.85;
}

.tsc-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.tsc-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.tech-bottom-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.tech-cta-note {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .tech-cards-grid {
    grid-template-columns: 1fr;
  }

  .tech-scenario-card {
    flex-direction: column;
    gap: 16px;
  }
}

/* ===== BI DASHBOARD SHOWCASE ===== */
.tech-dashboard-showcase {
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  background: var(--navy-800);
  margin-bottom: 56px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(59, 130, 246, 0.08);
  transition: var(--transition);
}

.tech-dashboard-showcase:hover {
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.25);
}

.dash-window-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--glass-border);
}

.dash-window-dots {
  display: flex;
  gap: 7px;
  flex-shrink: 0;
}

.dash-window-title {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 6px 14px;
  max-width: 380px;
}

.dash-live-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.2);
  padding: 5px 12px;
  border-radius: 100px;
  flex-shrink: 0;
}

.dash-img-wrap {
  position: relative;
  overflow: hidden;
}

.dash-preview-img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
  max-height: 580px;
}

.dash-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--navy-800), transparent);
  pointer-events: none;
}

/* BI SLIDER */
.bi-slider-container {
  position: relative;
}

.bi-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bi-slide {
  min-width: 100%;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

.bi-slide.active {
  opacity: 1;
}

.bi-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.bi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.bi-dot.active {
  background: var(--blue-400);
  width: 24px;
  border-radius: 4px;
}

/* ===== TEAM SECTION REDESIGN ===== */
.team-section {
  padding: 120px 0;
  background: var(--navy-900);
}

.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.team-member-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 400px;
}

.tm-photo-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--navy-800);
  z-index: 0;
}

.tm-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
  display: block;
}

.tm-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(10, 15, 30, 0.05) 0%,
      rgba(10, 15, 30, 0.1) 35%,
      rgba(10, 15, 30, 0.75) 65%,
      rgba(10, 15, 30, 0.97) 100%);
  pointer-events: none;
}


.team-member-card:hover .tm-photo {
  transform: scale(1.04);
}

.tm-status {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #4ade80;
  background: rgba(10, 15, 30, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74, 222, 128, 0.25);
  padding: 5px 12px;
  border-radius: 100px;
}

.tm-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tm-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.tm-role {
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-400);
  letter-spacing: 0.02em;
}

.tm-quote {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  margin-top: 4px;
  flex: 1;
}

.tm-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.tm-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--white-05);
  border: 1px solid var(--glass-border);
  padding: 4px 10px;
  border-radius: 6px;
}

/* Team bottom row */
.team-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  flex-wrap: wrap;
}

.team-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.team-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.team-stat-item strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

/* Estilos de marquee eliminados */


.team-stat-item span {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
  text-align: center;
}

.team-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

@media (max-width: 900px) {
  .team-cards-grid {
    grid-template-columns: 1fr;
  }

  .team-bottom-row {
    flex-direction: column;
    text-align: center;
  }

  .team-stats-row {
    justify-content: center;
  }

  .team-stat-item {
    padding: 0 20px;
  }
}

/* ===== TICKET MODAL STYLES ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 30, 0.9);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex !important;
  opacity: 1;
}

.modal-content {
  width: 100%;
  max-width: 540px;
  position: relative;
  padding: 40px;
  animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--navy-900);
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white-40);
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--white);
}

.modal-header {
  margin-bottom: 32px;
}

.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal-header p {
  color: var(--white-60);
  font-size: 0.95rem;
}

.ticket-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ticket-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ticket-option-card {
  cursor: pointer;
}

.ticket-option-card input {
  display: none;
}

.option-content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}

.ticket-option-card:hover .option-content {
  border-color: var(--white-20);
  background: rgba(255, 255, 255, 0.05);
}

.ticket-option-card input:checked+.option-content {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--blue-500);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.option-icon {
  font-size: 24px;
}

.option-text strong {
  display: block;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 4px;
}

.option-text span {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
  display: block;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white-80);
}

.ticket-form textarea {
  min-height: 100px;
  resize: vertical;
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-400);
  margin: 10px 0 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.demo-modal-content {
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
}

.demo-modal-content::-webkit-scrollbar {
  width: 6px;
}

.demo-modal-content::-webkit-scrollbar-thumb {
  background: var(--white-10);
  border-radius: 10px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 600px) {
  .ticket-options {
    grid-template-columns: 1fr;
  }

  .modal-content {
    padding: 30px 20px;
  }
}

.ticket-form .form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 48px;
  appearance: none;
}

.ticket-form .form-select optgroup {
  background: var(--navy-800);
  color: var(--blue-400);
  font-weight: 700;
  padding: 10px;
}

.ticket-form .form-select option {
  background: var(--navy-900);
  color: var(--white);
  padding: 8px;
}

/* ===== INDUSTRY LANDING PAGE - EXTENDED STYLES ===== */

.industry-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
  background: var(--navy-900);
}

.industry-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.industry-hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  width: 100%;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(3, 7, 18, 0.95) 0%,
      rgba(10, 15, 30, 0.8) 50%,
      rgba(10, 15, 30, 0.4) 100%);
}

/* Concept Section & Counters */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.concept-item {
  padding: 32px;
  text-align: center;
  height: 100%;
}

.concept-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

.concept-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--white);
}

.dynamic-counters {
  display: flex;
  justify-content: space-around;
  margin-top: 80px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid var(--white-05);
}

.counter-box {
  text-align: center;
}

.counter-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--blue-400);
  display: block;
}

.counter-label {
  font-size: 14px;
  color: var(--white-70);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Industry Tabs */
.tabs-container {
  margin-top: 40px;
}

.tabs-header {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--white-10);
  color: var(--white-70);
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background: var(--white-10);
  color: var(--white);
}

.tab-btn.active {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-400);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-pane.active {
  display: block;
}

.tab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tab-info h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 24px;
}

.tab-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tab-list li {
  position: relative;
  padding-left: 28px;
  color: var(--white-70);
  font-size: 16px;
}

.tab-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue-400);
}

.tab-quote {
  margin-top: 32px;
  padding-left: 20px;
  border-left: 3px solid var(--blue-400);
  font-style: italic;
  color: var(--white-90);
}

.tab-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* CFO / Finance Section */
.finance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.finance-features {
  margin-top: 32px;
  display: grid;
  gap: 12px;
}

.fin-f {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white-90);
}

.fin-f span {
  color: #10b981;
  font-weight: 800;
}

.finance-dashboard {
  padding: 40px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
  border-radius: 20px;
  border: 1px solid var(--white-10);
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  color: var(--white);
  font-weight: 600;
}

.dash-badge {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* ================================================
   HERO SLIDESHOW SYSTEM
   ================================================ */
.hero-slideshow {
  overflow: hidden;
}

.hs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
    transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}

.hs-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
  z-index: 1;
}

.hs-slide.exiting {
  opacity: 0;
  transform: scale(0.96);
  z-index: 0;
}

.hs-content {
  position: relative;
  z-index: 2;
}

/* Gradient variants */
.hs-gradient-purple {
  background: linear-gradient(135deg, #a78bfa, #818cf8, #6366f1) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.hs-gradient-green {
  background: linear-gradient(135deg, #34d399, #10b981, #059669) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.hs-overlay-indigo {
  background: linear-gradient(135deg,
      rgba(3, 7, 18, 0.94) 0%,
      rgba(15, 10, 40, 0.82) 50%,
      rgba(30, 20, 80, 0.55) 100%) !important;
}

.hs-bg-indigo {
  filter: hue-rotate(210deg) saturate(1.3);
}

/* CTA button variants */
.hs-btn-purple {
  background: linear-gradient(135deg, #7c3aed, #6366f1) !important;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4) !important;
}

.hs-btn-purple:hover {
  background: linear-gradient(135deg, #9333ea, #818cf8) !important;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.55) !important;
}

.hs-btn-green {
  background: linear-gradient(135deg, #059669, #10b981) !important;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4) !important;
}

.hs-btn-green:hover {
  background: linear-gradient(135deg, #10b981, #34d399) !important;
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.55) !important;
}

/* Industry Pills (Slide 2) */
.hs-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hs-pills span {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white-90);
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}

.hs-pills span:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--blue-400);
}

/* BI Stats row (Slide 3) */
.hs-bi-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
}

.hs-bi-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hs-bi-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hs-bi-lbl {
  font-size: 12px;
  color: var(--white-50);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Navigation Dots */
.hs-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
}

.hs-dot.active {
  background: var(--white);
  transform: scale(1.4);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.hs-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

/* Progress bar */
.hs-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 10;
}

.hs-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-600), var(--electric));
  width: 0%;
  transition: width linear;
}


.dash-bars {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 200px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--white-10);
}

.bar {
  width: 50px;
  background: var(--blue-600);
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: height 1s ease;
}

.bar::after {
  content: attr(data-label);
  position: absolute;
  top: 105%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: var(--white-60);
  white-space: nowrap;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(rgba(10, 15, 30, 0.75), rgba(10, 15, 30, 0.75)), url('img/hero-industry.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* Digital Experience Grid */
.digital-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.digital-card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--white-05);
  border-radius: 20px;
  transition: var(--transition);
}

.digital-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--blue-400);
}

.digital-card h3 {
  color: var(--white);
  margin-bottom: 16px;
}

@media (max-width: 992px) {

  .concept-grid,
  .tab-grid,
  .finance-grid {
    grid-template-columns: 1fr;
  }

  .digital-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================
   RESPONSIVE GLOBAL — Mobile (Android) & Large screens (Mac)
   ================================================ */

/* ---- Large screens ≥ 1400px (Mac, wide monitors) ---- */
@media (min-width: 1400px) {

  .container,
  .nav-container {
    max-width: 1400px;
  }

  .hero-title {
    font-size: 6rem;
  }

  .ind-hero-title {
    font-size: 5.5rem;
  }
}

/* ---- Tablet & small desktop ≤ 1100px ---- */
@media (max-width: 1100px) {

  /* Hero slideshow */
  .ind-hero-kpis,
  .ind-kpi {
    flex-wrap: wrap;
  }

  /* Industry page */
  .ind-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .ind-counters {
    grid-template-columns: repeat(2, 1fr);
  }

  .ind-counter-box:nth-child(2) {
    border-right: none;
  }

  .ind-tab-layout,
  .ind-finance-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ind-digital-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ind-dash-kpis {
    grid-template-columns: 1fr;
  }
}

/* ---- Mobile ≤ 768px (Android phones, iPhone) ---- */
@media (max-width: 768px) {

  /* === Global === */
  .container,
  .nav-container {
    padding: 0 16px;
  }

  .section-padding {
    padding: 72px 0;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .section-desc {
    font-size: 15px;
  }

  /* === Navbar mobile === */
  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100svh; /* Modern mobile viewport height */
    background: #030712; /* Solid dark background for total opacity */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 10000; /* Ensure it stays above everything else */
    padding: 24px;
  }

  .nav-links.open .nav-link {
    font-size: 28px; /* Slightly larger for premium mobile feel */
    font-weight: 700;
    color: var(--white);
  }

  /* Dropdown mobile adjustments */
  .nav-links.open .nav-dropdown {
    width: 100%;
    text-align: center;
  }

  .nav-links.open .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-top: 10px;
    gap: 8px;
    min-width: auto;
  }

  .nav-links.open .dropdown-menu li a {
    font-size: 16px;
    font-weight: 500;
    color: var(--white-50);
    padding: 6px 0;
    text-align: center;
  }

  .nav-links.open .dropdown-icon {
    display: none;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 10001; /* Must be higher than .nav-links.open (10000) */
  }

  /* === Hero Slideshow mobile === */
  .hero {
    min-height: 100svh;
  }

  .hs-slide {
    display: flex;
    align-items: center;
  }

  .hero-content,
  .hs-content {
    padding-top: 100px;
    padding-bottom: 120px;
  }

  .hero-title {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    margin-bottom: 16px;
  }

  .hero-desc {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 28px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 14px;
    margin-bottom: 20px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 14px 24px;
  }

  /* Hero KPIs */
  .ind-hero-kpis {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    margin-top: 28px;
  }

  .ind-kpi-sep {
    display: none;
  }

  .ind-kpi {
    padding: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .ind-kpi:nth-child(4),
  .ind-kpi:nth-child(2) {
    border-right: none;
  }

  .ind-kpi:nth-child(3),
  .ind-kpi:nth-child(4) {
    border-bottom: none;
  }

  .ind-kpi-num {
    font-size: 1.6rem;
  }

  /* Pills */
  .hs-pills {
    gap: 8px;
    margin-top: 20px;
  }

  .hs-pills span {
    font-size: 12px;
    padding: 6px 12px;
  }

  /* BI stats */
  .hs-bi-stats {
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 24px;
  }

  .hs-bi-num {
    font-size: 1.8rem;
  }

  /* Slideshow dots reposition */
  .hs-dots {
    bottom: 52px;
  }

  /* Scroll indicator hide */
  .hero-scroll-indicator {
    display: none;
  }

  /* === Hero (index) stats strip === */
  .hero-stats {
    width: 100%;
    flex-direction: column;
    border-radius: var(--radius-md);
  }

  .hero-stat-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .hero-stat {
    padding: 16px 20px;
  }

  /* === Services === */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card-wide {
    grid-column: 1;
  }

  .bi-features-grid {
    grid-template-columns: 1fr;
  }

  /* === Metrics === */
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .metric-card {
    padding: 28px 20px;
  }

  /* === Tech section === */
  .tech-cards-grid {
    grid-template-columns: 1fr;
  }

  .tech-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* === Alliances === */
  .alliances-grid {
    grid-template-columns: 1fr;
  }

  /* === Testimonials === */
  .testimonials-track {
    grid-template-columns: 1fr;
  }

  /* === Support === */
  .support-layout {
    grid-template-columns: 1fr;
  }

  .support-metrics {
    grid-template-columns: 1fr;
  }

  /* === Contact form === */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  /* === Footer === */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-certs-v2 {
    justify-content: center;
    margin-top: 24px;
    gap: 16px;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* === Team === */
  .team-stats {
    flex-direction: column;
    gap: 16px;
  }

  /* === Trust bar === */
  .trust-logos {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* === Comparison table === */
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .comp-labels {
    display: none;
  }

  /* === Industry page (especializados) === */
  .ind-hero-title {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  .ind-hero-sub {
    font-size: 15px;
  }

  .ind-pillars {
    grid-template-columns: 1fr;
  }

  .ind-counters {
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
  }

  .ind-counter-box {
    padding: 28px 16px;
    border-right: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
  }

  .ind-counter-box:nth-child(even) {
    border-right: none;
  }

  .ind-counter-box:nth-child(3),
  .ind-counter-box:nth-child(4) {
    border-bottom: none;
  }

  .ind-counter-num {
    font-size: 36px;
  }

  .ind-tabs-nav {
    flex-direction: column;
    gap: 8px;
  }

  .ind-tab-btn {
    border-radius: 12px;
    text-align: center;
    font-size: 14px;
    padding: 12px 20px;
  }

  .ind-tab-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ind-tab-info h3 {
    font-size: 22px;
  }

  .ind-impact-num {
    font-size: 2.2rem;
  }

  .ind-finance-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ind-dashboard {
    padding: 24px 20px;
  }

  .ind-dash-kpis {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .ind-dash-chart {
    height: 120px;
  }

  .ind-digital-grid {
    grid-template-columns: 1fr;
  }

  .ind-digi-card {
    padding: 24px 20px;
  }

  .ind-final-title {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  .ind-final-cta {
    padding: 80px 0;
  }

  /* === Org / Value prop section === */
  .value-prop-section {
    padding: 60px 0;
  }
}

/* ---- Extra small phones ≤ 400px ---- */
@media (max-width: 400px) {
  .hero-title {
    font-size: 1.4rem;
  }

  .ind-hero-title {
    font-size: 1.5rem;
  }

  .btn-lg {
    font-size: 14px;
    padding: 12px 20px;
  }

  .ind-kpi-num {
    font-size: 1.3rem;
  }

  .ind-counter-num {
    font-size: 28px;
  }

  .ind-hero-kpis {
    grid-template-columns: 1fr 1fr;
  }

  .hs-bi-stats {
    gap: 16px;
  }

  .hs-bi-num {
    font-size: 1.5rem;
  }

  .nav-logo-img {
    height: 40px;
  }

  .section-padding {
    padding: 56px 0;
  }
}

/* ================================================
   ZOHO CRM INTEGRATED FORM STYLES
   ================================================ */
.zoho-integrated-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.zoho-integrated-form label {
    display: block !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--blue-400) !important;
    margin-bottom: 8px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    text-align: left !important;
    float: none !important;
    width: auto !important;
}

/* Zoho Success Splash Message */
.wf_customMessageBox {
    font-family: var(--font-body);
    color: var(--white);
    background: rgba(16, 185, 129, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-md);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 11000;
    max-width: 90%;
    width: max-content;
}

.wf_customCircle {
    position: relative;
    background-color: #ffffff;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    flex: none;
    margin-right: 10px;
}

.wf_customCheckMark {
    position: absolute;
    transform: rotate(45deg);
    left: 7px;
    top: 3px;
    height: 10px;
    width: 5px;
    border-bottom: 2px solid #10b981;
    border-right: 2px solid #10b981;
}

/* Zoho Calendar Customization */
.tempCalDiv {
    display: none;
    position: absolute;
    z-index: 1001;
    background: var(--navy-800) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-card) !important;
    margin-top: 5px;
    padding: 10px !important;
    top: 100% !important;
}

#calenDiv {
    width: 220px !important;
    background: transparent !important;
    color: var(--white) !important;
}

#calenDiv table.calDay {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 2px !important;
    color: var(--white) !important;
    margin: 0 !important;
}

#calenDiv table.calDay td {
    padding: 5px !important;
    font-size: 12px !important;
    cursor: pointer !important;
    border-radius: 4px !important;
    color: var(--white) !important;
}

#calenDiv table.calDay td:hover {
    background: var(--blue-600) !important;
}

#calenDiv table.calDay td.sel {
    background: var(--electric) !important;
    color: white !important;
}

#calenDiv .sCalMon {
    font-weight: 700 !important;
    font-size: 14px !important;
    color: var(--blue-300) !important;
    width: auto !important;
}

.calNav {
    cursor: pointer !important;
    padding: 0 5px !important;
    color: var(--white-70) !important;
    display: inline-block !important;
}

.calNav:hover {
    color: var(--white) !important;
}

#weekDays th {
    color: var(--white-50) !important;
    font-weight: 400 !important;
}

.arrow {
    border: solid var(--white-70) !important;
    border-width: 0 2px 2px 0 !important;
    display: inline-block !important;
    padding: 3px !important;
}

.arrow.right { transform: rotate(-45deg) !important; }
.arrow.left { transform: rotate(135deg) !important; }

/* Zoho Success Message Overlay */
.wf_customMessageBox {
    font-family: var(--font-body);
    color: #132C14;
    background: #F5FAF5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    max-width: 90%;
    width: max-content;
    word-break: break-word;
    z-index: 11000;
    border-radius: 8px;
    border: 1px solid #A9D3AB;
    min-width: 200px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translate(-50%, 0);
}
.wf_customCircle {
    position: relative;
    background-color: #12AA67;
    border-radius: 100%;
    width: 22px;
    height: 22px;
    flex: none;
    margin-right: 10px;
}
.wf_customCheckMark {
    box-sizing: unset !important;
    position: absolute;
    transform: rotate(45deg) translate(-50%, -50%);
    left: 6px;
    top: 10px;
    height: 9px;
    width: 4px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
}

@media (max-width: 600px) {
  .wf_customMessageBox {
    width: 80%;
    top: 20px;
  }
}

/* ===== CLIENTS SECTION ===== */
.clients-section {
  padding: 100px 0;
  background: var(--navy-900);
  border-top: 1px solid var(--glass-border);
  overflow: hidden;
}

.clients-section .section-header {
  margin-bottom: 50px;
}

.logos-carousel {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
}

.logos-track {
  display: flex;
  width: max-content;
  animation: scroll-logos 40s linear infinite;
  gap: 80px;
  align-items: center;
}

.logo-slide {
  width: 200px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  transition: var(--transition);
}

.logo-slide:hover img {
  filter: grayscale(0) brightness(1) opacity(1);
  transform: scale(1.1);
}

@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 40px)); } /* Adjust based on gap */
}

/* Adding a subtle gradient fade to the sides */
.logos-carousel::before,
.logos-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logos-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--navy-900), transparent);
}

.logos-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--navy-900), transparent);
}

@media (max-width: 768px) {
  .logo-slide {
    width: 150px;
    height: 60px;
  }
  .logos-track {
    gap: 40px;
  }
}
