/* ============================================================
   SL GOME - CORPORATE LANDING PAGE STYLES
   Colors: Navy Blue #1A2B63 | Green #2EA84A | White #FFFFFF
   ============================================================ */

/* --- RESET & VARIABLES --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-green: #2EA84A;
  --primary-green-light: #3DD160;
  --primary-green-dark: #1E7A34;
  --primary-navy: #1A2B63;
  --primary-navy-light: #243882;
  --primary-navy-dark: #0F1A3D;
  --bg-dark: #0A0F1E;
  --bg-card: rgba(26, 43, 99, 0.18);
  --white: #FFFFFF;
  --text-primary: #FFFFFF;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;
  --border: rgba(46, 168, 74, 0.2);
  --border-blue: rgba(26, 43, 99, 0.4);
  --glass-bg: rgba(10, 15, 30, 0.6);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-green: 0 0 30px rgba(46, 168, 74, 0.3);
  --green-rgb: 46, 168, 74;
  --navy-rgb: 26, 43, 99;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.section {
  padding: 100px 0;
}

/* --- TYPOGRAPHY --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--green-rgb), 0.1);
  border: 1px solid var(--border);
  color: var(--primary-green-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--white);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
}

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

.section-header .section-subtitle {
  margin: 0 auto;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-green-light) 0%, #5BE87A 50%, var(--primary-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- BUTTONS --- */
.btn-primary,
.btn-outline,
.btn-white,
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 15px;
  padding: 14px 28px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green), var(--primary-green-light));
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
  color: #fff;
  box-shadow: 0 4px 20px rgba(var(--green-rgb), 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(var(--green-rgb), 0.55);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(var(--green-rgb), 0.6);
}

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

.btn-white {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-nav-cta {
  background: var(--primary-green);
  color: #fff;
  padding: 10px 22px;
  font-size: 14px;
}

.btn-nav-cta:hover {
  background: var(--primary-green-light);
  transform: translateY(-1px);
}

/* --- GLASS CARD --- */
.glass-card {
  background: linear-gradient(135deg, rgba(var(--navy-rgb), 0.4), rgba(var(--navy-rgb), 0.2));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: rgba(var(--green-rgb), 0.35);
  box-shadow: 0 12px 40px rgba(var(--green-rgb), 0.2), 0 4px 16px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 15, 30, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(var(--green-rgb), 0.5));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

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

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* --- PARTICLES --- */
.particles-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--primary-green);
  opacity: 0.5;
  animation: floatParticle 20s infinite ease-in-out;
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 15, 30, 0.92) 0%, rgba(10, 15, 30, 0.75) 50%, rgba(26, 43, 99, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 24px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--green-rgb), 0.15);
  border: 1px solid rgba(var(--green-rgb), 0.4);
  color: var(--primary-green-light);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(10, 15, 30, 0.5);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 20px;
  flex-wrap: nowrap;
}

.hero-stat {
  text-align: center;
  padding: 0 8px;
}

.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-green-light);
}

.stat-num-plus {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-green-light);
}

.stat-label {
  display: block;
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.scroll-arrow-wrap {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s ease-in-out infinite;
}

/* Visit Counter Badge */
.hero-visit-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 20px;
  letter-spacing: 0.02em;
}

.hero-visit-counter i {
  color: var(--primary-green-light);
  font-size: 14px;
}

.hero-visit-counter strong {
  color: var(--primary-green-light);
  font-weight: 700;
  font-size: 14px;
  min-width: 40px;
  display: inline-block;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

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

/* --- TRUST BAR --- */
.trust-bar {
  background: rgba(var(--navy-rgb), 0.5);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  backdrop-filter: blur(10px);
}

.trust-label {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.trust-item:hover {
  color: var(--primary-green-light);
}

.trust-item i {
  color: var(--primary-green);
  font-size: 18px;
}

/* --- SERVICE FLIP CARDS --- */
.services-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(10, 20, 40, 0.9) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card-flip {
  perspective: 1000px;
  height: 340px;
  cursor: pointer;
}

.service-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card-flip:hover .service-card-inner {
  transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

.service-card-front {
  background: var(--bg-dark);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card-flip:hover .service-image {
  transform: scale(1.05);
}

.service-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-navy-dark) 0%, rgba(var(--navy-rgb), 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image-placeholder--security {
  background: linear-gradient(135deg, #0a1628 0%, rgba(26, 43, 99, 0.9) 100%);
}

.service-image-placeholder--express {
  background: linear-gradient(135deg, #041a0e 0%, rgba(var(--green-rgb), 0.3) 100%);
}

.service-big-icon {
  font-size: 80px;
  color: rgba(var(--green-rgb), 0.3);
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  padding-top: 80px;
  background: linear-gradient(0deg, rgba(10, 15, 30, 0.98) 0%, rgba(10, 15, 30, 0.96) 35%, rgba(10, 15, 30, 0.7) 65%, transparent 100%);
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(var(--green-rgb), 0.2);
  border: 1px solid rgba(var(--green-rgb), 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green-light);
  font-size: 20px;
  margin-bottom: 10px;
}

.service-title-front {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.service-card-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
}

.back-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin-bottom: 16px;
  background: rgba(var(--green-rgb), 0.15);
  border: 1px solid rgba(var(--green-rgb), 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green-light);
  font-size: 24px;
}

.service-title-back {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.service-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.feature-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(var(--green-rgb), 0.12);
  border: 1px solid rgba(var(--green-rgb), 0.3);
  color: var(--primary-green-light);
}

/* MAP VISUAL */
.map-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.map-mexico {
  font-size: 90px;
  color: rgba(var(--green-rgb), 0.25);
}

.route-dots {
  position: absolute;
  inset: 0;
}

.dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-green);
  box-shadow: 0 0 10px var(--primary-green);
  animation: pulseDot 2s ease-in-out infinite;
}

.dot-manzanillo {
  left: 20%;
  top: 60%;
}

.dot-guadalajara {
  left: 40%;
  top: 38%;
  animation-delay: 0.4s;
}

.dot-cdmx {
  left: 60%;
  top: 50%;
  animation-delay: 0.8s;
}

.dot-monterrey {
  left: 65%;
  top: 25%;
  animation-delay: 1.2s;
}

/* --- FLEET SECTION --- */
.fleet-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.fleet-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fleet-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 15, 30, 0.88) 0%, rgba(10, 15, 30, 0.72) 50%, rgba(26, 43, 99, 0.78) 100%);
}

.fleet-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.fleet-text {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}

.fleet-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.fleet-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}

.fleet-feature i {
  color: var(--primary-green);
  font-size: 16px;
  flex-shrink: 0;
}

.fleet-image-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.fleet-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.fleet-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.fleet-badge i {
  font-size: 24px;
  color: var(--primary-green-light);
}

.fleet-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.fleet-badge span {
  font-size: 12px;
  color: var(--text-muted);
}

.fleet-stats-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fleet-stat-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 20px;
  text-align: center;
}

.fleet-stat-mini i {
  font-size: 24px;
  color: var(--primary-green-light);
  margin-bottom: 6px;
}

.fsm-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}

.fsm-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- MONITORING SECTION --- */
.monitoring-section {
  background: linear-gradient(135deg, rgba(10, 15, 30, 0.98) 0%, rgba(var(--navy-rgb), 0.2) 100%);
}

.monitoring-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.monitoring-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

/* ---- Laptop Mockup ---- */
.monitoring-screen-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  animation: floatPhone 7s ease-in-out infinite;
}

.monitoring-laptop {
  width: 100%;
  max-width: 560px;
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.7));
}

.laptop-screen-bezel {
  background: #111827;
  border: 2px solid rgba(var(--navy-rgb), 0.9);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 50px rgba(var(--green-rgb), 0.12);
}

/* Mac-style top bar */
.laptop-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1e2535;
  padding: 8px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.laptop-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.ldot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.ldot--red {
  background: #ff5f56;
}

.ldot--yellow {
  background: #ffbd2e;
}

.ldot--green {
  background: #27c93f;
}

.laptop-url-bar {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 10px;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.laptop-dot-menu {
  flex-shrink: 0;
}

/* Screen image area */
.laptop-screen {
  position: relative;
  overflow: hidden;
  line-height: 0;
  max-height: 340px;
}

.laptop-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 8s ease;
}

.laptop-screenshot:hover {
  transform: translateY(-15%);
}

/* Live chip overlay */
/* SLGOME logo overlay on dashboard image */
.dashboard-logo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0f1729;
  padding: 10px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 5;
  width: auto;
  min-width: 160px;
}

.dashboard-logo-img {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.dashboard-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.dlg-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.dlg-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--primary-green-light);
  letter-spacing: 0.03em;
}

.laptop-live-chip {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(220, 38, 38, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 100, 100, 0.4);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.2s ease-in-out infinite;
}

/* Laptop base / stand */
.laptop-base {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.laptop-hinge {
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #1e2535 0%, #2d3748 50%, #1e2535 100%);
  border-radius: 0 0 2px 2px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: none;
}

.laptop-stand {
  width: 38%;
  height: 10px;
  background: linear-gradient(180deg, #2d3748, #1e2535);
  clip-path: polygon(5% 0%, 95% 0%, 100% 100%, 0% 100%);
  border-radius: 0 0 4px 4px;
}

/* Glow behind laptop */
.monitoring-glow {
  position: absolute;
  width: 80%;
  height: 40%;
  bottom: 0;
  left: 10%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(var(--green-rgb), 0.18) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(20px);
}

/* Stat chips row */
.monitoring-stat-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 560px;
}

.mon-stat-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  flex: 1;
  min-width: 140px;
}

.mon-stat-chip i {
  font-size: 20px;
  color: var(--primary-green-light);
  flex-shrink: 0;
}

.mon-stat-chip strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.mon-stat-chip span {
  font-size: 11px;
  color: var(--text-muted);
}

.monitoring-text {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.monitoring-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.mon-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mon-feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(var(--green-rgb), 0.1);
  border: 1px solid rgba(var(--green-rgb), 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green-light);
  font-size: 18px;
}

.mon-feature strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.mon-feature p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* --- STATS SECTION --- */
.stats-section {
  padding: 80px 0;
  background: rgba(var(--navy-rgb), 0.15);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
}

.stat-icon {
  font-size: 36px;
  color: var(--primary-green-light);
  flex-shrink: 0;
}

.stat-big-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
}

.stat-plus {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-green-light);
}

/* 24/7 unified — same size, white, inline */
.stat-24-7 {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-big-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
  display: block;
}

/* --- ABOUT --- */
.about-section {
  background: var(--bg-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-overlay-card {
  position: absolute;
  bottom: 24px;
  right: 24px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 14px;
}

.about-overlay-icon {
  font-size: 24px;
  color: var(--primary-green-light);
}

.about-overlay-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.about-overlay-card span {
  font-size: 12px;
  color: var(--text-muted);
}

.about-para {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.75;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.about-value {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-value i {
  font-size: 20px;
  color: var(--primary-green-light);
  width: 24px;
  flex-shrink: 0;
}

.about-value strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.about-value span {
  font-size: 13px;
  color: var(--text-muted);
}

/* --- TESTIMONIALS --- */
.testimonials-section {
  background: rgba(var(--navy-rgb), 0.1);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  padding: 32px;
}

.testimonial-stars {
  color: #F59E0B;
  margin-bottom: 16px;
  font-size: 14px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-green-dark));
  border: 2px solid var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  overflow: hidden;
}

.author-avatar--photo {
  padding: 0;
  border: 2.5px solid var(--primary-green);
  box-shadow: 0 0 0 3px rgba(var(--green-rgb), 0.18);
}

.author-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  display: block;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* --- CTA SECTION --- */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-navy-dark) 0%, #0A2B14 50%, var(--primary-navy-dark) 100%);
}

.cta-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}

.text-gradient-white {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), var(--primary-green-light), rgba(255, 255, 255, 0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-cta-large {
  padding: 18px 40px;
  font-size: 17px;
}

.cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-note i {
  color: var(--primary-green-light);
}

/* --- CONTACT --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.contact-info-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 28px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(var(--green-rgb), 0.1);
  border: 1px solid rgba(var(--green-rgb), 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green-light);
  font-size: 16px;
}

.contact-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-item span,
.contact-link {
  font-size: 14px;
  color: var(--text-secondary);
}

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

.contact-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(var(--navy-rgb), 0.5);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: var(--transition);
}

.social-btn:hover {
  background: rgba(var(--green-rgb), 0.15);
  border-color: rgba(var(--green-rgb), 0.4);
  color: var(--primary-green-light);
  transform: translateY(-2px);
}

.contact-form-wrap {
  position: relative;
}

.contact-form {
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(var(--navy-rgb), 0.3);
  border: 1px solid var(--border-blue);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(var(--green-rgb), 0.6);
  box-shadow: 0 0 0 3px rgba(var(--green-rgb), 0.12);
  background: rgba(var(--navy-rgb), 0.5);
}

.form-group select option {
  background: #0e1a2e;
  color: var(--white);
}

.btn-form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
  margin-bottom: 12px;
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.form-note i {
  color: var(--primary-green);
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 36px;
  border-radius: var(--radius);
  background: rgba(var(--green-rgb), 0.08);
  border: 1px solid rgba(var(--green-rgb), 0.3);
}

.form-success.show {
  display: block;
}

.success-icon {
  font-size: 56px;
  color: var(--primary-green-light);
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* --- FOOTER --- */
.footer {
  background: rgba(var(--navy-rgb), 0.3);
  border-top: 1px solid var(--border);
}

.footer-top {
  padding: 64px 0;
}

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

.footer-logo {
  height: 58px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-green-light);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-col-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}

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

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-muted);
}

.footer-contact-list i {
  color: var(--primary-green);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list a:hover {
  color: var(--primary-green-light);
}

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

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* Hecho en México badge */
.footer-hecho-mx {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hecho-mx-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  background: var(--bg-dark);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: transform 0.25s ease;
}

.hecho-mx-logo:hover {
  transform: scale(1.08);
}

.footer-hecho-mx span {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* --- FLOATING WHATSAPP BTN --- */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1001;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  text-decoration: none;
  animation: whatsappPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: #1ebe5a;
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.7);
}

.whatsapp-float .wa-tooltip {
  position: absolute;
  right: 68px;
  background: rgba(10, 15, 30, 0.95);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  font-family: 'Inter', sans-serif;
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, 0.8), 0 0 0 8px rgba(37, 211, 102, 0.15);
  }
}

/* --- BACK TO TOP --- */
.back-to-top {
  position: fixed;
  bottom: 104px;
  right: 35px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  cursor: pointer;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(10px);
  color: var(--primary-green-light);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(var(--green-rgb), 0.2);
  border-color: var(--primary-green);
  transform: translateY(-3px);
}

/* --- MOBILE OVERLAY --- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 15, 30, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 12px 32px;
  border-radius: 12px;
  transition: var(--transition);
  display: block;
  text-align: center;
}

.mobile-nav-link:hover {
  color: var(--primary-green-light);
  background: rgba(var(--green-rgb), 0.1);
}

.mobile-cta {
  margin-top: 16px;
}

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* --- ANIMATIONS --- */
.animate-fade-up {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

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

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes floatParticle {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.4;
  }

  25% {
    transform: translate(80px, -80px);
    opacity: 0.8;
  }

  50% {
    transform: translate(-40px, -160px);
    opacity: 0.5;
  }

  75% {
    transform: translate(-80px, -60px);
    opacity: 0.7;
  }
}

@keyframes bounce {

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

  50% {
    transform: translateY(8px);
  }
}

@keyframes pulse {

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

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

@keyframes pulseDot {

  0%,
  100% {
    box-shadow: 0 0 6px var(--primary-green);
  }

  50% {
    box-shadow: 0 0 16px var(--primary-green), 0 0 28px rgba(var(--green-rgb), 0.5);
  }
}

@keyframes floatPhone {

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

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

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(var(--green-rgb), 0.4);
  }

  50% {
    box-shadow: 0 8px 40px rgba(var(--green-rgb), 0.7), 0 0 60px rgba(var(--green-rgb), 0.3);
  }
}

/* --- INSIGHTS / BLOG --- */
.insights-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(10, 20, 40, 0.95) 100%);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.insight-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius);
  transition: var(--transition);
}

.insight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--green-rgb), 0.4);
  box-shadow: 0 20px 60px rgba(var(--green-rgb), 0.15);
}

.insight-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.insight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  border-radius: var(--radius) var(--radius) 0 0;
}

.insight-card:hover .insight-img {
  transform: scale(1.05);
}

.insight-img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(135deg, rgba(var(--navy-rgb), 0.9) 0%, rgba(10, 20, 40, 0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  color: rgba(var(--green-rgb), 0.3);
}

.insight-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Tag repositioned to bottom-right to avoid overlapping article title */
.insight-tag--br {
  top: auto;
  left: auto;
  bottom: 14px;
  right: 14px;
}

.insight-tag--strategy {
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
}

.insight-tag--tech {
  background: rgba(56, 189, 248, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #38bdf8;
}

.insight-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insight-date {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.insight-date i {
  color: var(--primary-green);
}

.insight-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--white);
}

.insight-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.insight-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-green-light);
  transition: var(--transition);
}

.insight-cta i {
  transition: transform 0.3s ease;
}

.insight-cta:hover {
  color: var(--white);
}

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

/* Insight CTA Card — photo background style */
.insight-card--cta {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border-radius: var(--radius);
  border: 1px solid rgba(var(--green-rgb), 0.35);
}

.insight-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.insight-cta-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.insight-card--cta:hover .insight-cta-photo {
  transform: scale(1.05);
}

.insight-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 15, 30, 0.55) 0%, rgba(10, 15, 30, 0.85) 60%, rgba(var(--navy-rgb), 0.95) 100%);
}

.insight-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 28px;
  height: 100%;
  min-height: 380px;
}

.insight-cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  margin: 0 auto 20px;
  background: rgba(var(--green-rgb), 0.2);
  border: 1px solid rgba(var(--green-rgb), 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary-green-light);
  backdrop-filter: blur(10px);
}

.insight-cta-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--white);
  line-height: 1.3;
}

.insight-cta-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  max-width: 260px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1023px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 767px) {
  .section {
    padding: 64px 0;
  }

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

  .hero-stats {
    gap: 16px;
    padding: 18px 16px;
  }

  .stat-divider {
    display: none;
  }

  .nav-links,
  .btn-nav-cta {
    display: none;
  }

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

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

  .service-card-flip {
    height: 280px;
  }

  .fleet-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .monitoring-laptop {
    max-width: 100%;
  }

  .laptop-screen {
    max-height: 220px;
  }

  .monitoring-stat-row {
    flex-wrap: wrap;
  }

  .mon-stat-chip {
    min-width: 120px;
  }


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

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

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

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

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

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

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

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

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .back-to-top {
    bottom: 86px;
    right: 23px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 479px) {
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .hero-stat {
    flex: 0 0 45%;
    min-width: 120px;
  }

  .stat-divider {
    display: none;
  }

  .trust-items {
    gap: 16px;
  }
}