@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-deep: #03050d;
  --bg-base: #06091a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-border: rgba(255, 255, 255, 0.08);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  
  --blue: #2563eb;
  --blue-bright: #3b82f6;
  --blue-glow: rgba(59, 130, 246, 0.4);
  --blue-subtle: rgba(59, 130, 246, 0.08);
  
  --red: #ef4444;
  --red-bright: #f87171;
  --red-glow: rgba(239, 68, 68, 0.4);
  --red-subtle: rgba(239, 68, 68, 0.08);
  
  --green: #22c55e;
  --green-bright: #4ade80;
  --green-glow: rgba(34, 197, 94, 0.4);
  --green-subtle: rgba(34, 197, 94, 0.08);
  
  --yellow: #eab308;
  --yellow-bright: #facc15;
  --yellow-glow: rgba(234, 179, 8, 0.4);
  --yellow-subtle: rgba(234, 179, 8, 0.08);
  
  --purple: #a855f7;
  --purple-glow: rgba(168, 85, 247, 0.4);
  --purple-subtle: rgba(168, 85, 247, 0.08);
  
  --text-primary: #f8fafc;
  --text-secondary: rgba(248, 250, 252, 0.7);
  --text-muted: rgba(248, 250, 252, 0.4);
  
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0.75rem 0 1rem;
  color: var(--text-primary);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.txt-blue-bright { color: var(--blue-bright); }
.txt-red-bright { color: var(--red-bright); }
.txt-green-bright { color: var(--green-bright); }
.txt-yellow-bright { color: var(--yellow-bright); }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  margin-bottom: 0.5rem;
}
.section-badge i {
  width: 14px;
  height: 14px;
}
.section-badge.blue {
  background: var(--blue-subtle);
  color: var(--blue-bright);
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.section-badge.red {
  background: var(--red-subtle);
  color: var(--red-bright);
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.section-badge.green {
  background: var(--green-subtle);
  color: var(--green-bright);
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.section-badge.yellow {
  background: var(--yellow-subtle);
  color: var(--yellow-bright);
  border: 1px solid rgba(234, 179, 8, 0.2);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(6, 9, 26, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bg-card-border);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(3, 5, 13, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 72px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.qr-block {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qr-img {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  border: 1px solid var(--bg-card-border);
}

.qr-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.3;
  font-weight: 500;
}

.brand-divider {
  width: 1px;
  height: 32px;
  background: var(--bg-card-border);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-icon-wrap {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--blue), #1e40af);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--blue-glow);
}

.logo-icon-wrap i {
  width: 18px;
  height: 18px;
  color: white;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.brand-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue-bright);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

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

.nav-menu a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-header-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  transition: var(--transition);
}

.btn-header-outline:hover {
  border-color: var(--blue-bright);
  color: var(--blue-bright);
  background: var(--blue-subtle);
}

.btn-header-outline i, .btn-header-solid i, .nav-hamburger i {
  width: 14px;
  height: 14px;
}

.btn-header-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--blue), #1e40af);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
  transition: var(--transition);
  box-shadow: 0 4px 12px var(--blue-glow);
}

.btn-header-solid:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--blue-glow);
}

.nav-hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--bg-card-border);
  color: var(--text-primary);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.nav-hamburger:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--bg-deep);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1557597774-9d273605dfa9?q=80&w=1600') center/cover no-repeat;
  opacity: 0.04;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.22) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  z-index: 1;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.12) 0%, transparent 70%);
  bottom: -100px;
  right: 0;
  z-index: 1;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-subtle);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-bright);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green-glow);
  animation: pulse-badge 2s infinite;
}

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

.btn-download-app {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--blue), #1e40af);
  color: white;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 16px var(--blue-glow);
  transition: var(--transition);
  vertical-align: middle;
  margin-bottom: 0.75rem;
}

.btn-download-app:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--blue-glow);
}

.btn-download-app i {
  width: 14px;
  height: 14px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.hero-title-main {
  color: var(--text-primary);
}

.hero-title-highlight {
  background: linear-gradient(135deg, var(--blue-bright), var(--green-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-desc strong {
  color: var(--text-primary);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--blue), #1d4ed8);
  color: white;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 6px 24px var(--blue-glow);
  transition: var(--transition);
}

.btn-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--blue-glow);
}

.btn-demo i {
  width: 18px;
  height: 18px;
}

.btn-contact-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}

.btn-contact-hero:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-contact-hero i {
  width: 16px;
  height: 16px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.hero-stat-value span {
  color: var(--blue-bright);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

/* ==========================================================================
   PHONE MOCKUP (HERO CAROUSEL)
   ========================================================================== */
.hero-phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  justify-self: center;
}

.phone-glow-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float-glow 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes float-glow {
  from { transform: translate(-50%, -50%) scale(0.95); }
  to { transform: translate(-50%, -50%) scale(1.1); }
}

.phone-device {
  width: 250px;
  height: 500px;
  background: linear-gradient(145deg, #161a2e, #090c15);
  border-radius: 40px;
  border: 4px solid #22263f;
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 2px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  animation: phone-float 5s ease-in-out infinite;
}

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

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #000;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 10;
}

.phone-screen {
  position: absolute;
  inset: 0;
  border-radius: 36px;
  overflow: hidden;
}

.phone-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.94);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  overflow: hidden;
}

.phone-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
}

/* Phone Screen: Splash */
.slide-splash {
  height: 100%;
  background: linear-gradient(160deg, #090e24, #122869, #1a3699);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.5rem;
  text-align: center;
}

.slide-splash-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.slide-splash-icon i {
  width: 32px;
  height: 32px;
  color: white;
}

.slide-splash-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.5px;
}

.slide-splash-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.slide-splash-badge {
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 0.35rem 0.85rem;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* Phone Screen: SOS Ready */
.slide-sos {
  height: 100%;
  background: linear-gradient(160deg, #070913, #111425);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.8rem 1.2rem 1.5rem;
  gap: 1rem;
}

.slide-sos-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slide-sos-user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.slide-sos-avatar {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--blue), #1e40af);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: white;
}

.slide-sos-name {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-primary);
}

.slide-sos-loc {
  font-size: 0.58rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.slide-sos-loc i {
  width: 8px;
  height: 8px;
}

.slide-sos-status {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--green);
}

.slide-sos-btn-wrap {
  position: relative;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
}

.slide-sos-ring {
  position: absolute;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.12);
}

.slide-sos-ring.r1 {
  width: 100%;
  height: 100%;
  animation: pulse-ring 3s infinite;
}

.slide-sos-ring.r2 {
  width: 80%;
  height: 80%;
  animation: pulse-ring 3s 1s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}

.slide-sos-btn {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, var(--red), #b91c1c);
  border-radius: 50%;
  border: 3px solid rgba(239, 68, 68, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px var(--red-glow);
  z-index: 2;
  gap: 0.2rem;
}

.slide-sos-btn i {
  width: 26px;
  height: 26px;
  color: white;
}

.slide-sos-btn span {
  font-size: 0.65rem;
  font-weight: 800;
  color: white;
  letter-spacing: 1px;
}

.slide-sos-tip {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 160px;
}

/* Phone Screen: Alert Sending */
.slide-alert {
  height: 100%;
  background: linear-gradient(160deg, #070913, #1f0b0b);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.2rem;
  gap: 1rem;
}

.slide-radar {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-radar i {
  width: 28px;
  height: 28px;
  color: var(--red-bright);
  z-index: 2;
  position: relative;
}

.slide-radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(239, 68, 68, 0.4);
}

.slide-radar-ring.rg1 { width: 100%; height: 100%; animation: radar-pulse 2s infinite; }
.slide-radar-ring.rg2 { width: 75%; height: 75%; animation: radar-pulse 2s 0.5s infinite; }
.slide-radar-ring.rg3 { width: 50%; height: 50%; animation: radar-pulse 2s 1s infinite; }

@keyframes radar-pulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.slide-alert-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--red-bright);
}

.slide-alert-desc {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: -0.5rem;
}

.slide-alert-progress {
  width: 85%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.slide-alert-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--red-bright));
  border-radius: 2px;
  animation: progress-bar 4s linear infinite;
}

@keyframes progress-bar {
  0% { width: 0%; }
  100% { width: 100%; }
}

.slide-alert-units {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
  padding: 0 0.5rem;
  margin-top: 0.5rem;
}

.slide-unit {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 0.35rem 0.5rem;
  font-size: 0.6rem;
  color: var(--text-secondary);
}

.slide-unit i {
  width: 10px;
  height: 10px;
  color: var(--green-bright);
}

/* Phone Screen: GPS Info */
.slide-gps {
  height: 100%;
  background: #070913;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.slide-gps-map {
  flex: 1;
  position: relative;
  background: #091322;
  background-image: 
    linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
  background-size: 15px 15px;
}

.slide-gps-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--red-bright);
  animation: pin-bounce 1.5s ease-in-out infinite;
}

.slide-gps-pin i {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 8px var(--red-glow));
}

@keyframes pin-bounce {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 6px)); }
}

.slide-gps-info {
  padding: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(15, 23, 42, 0.4);
}

.slide-gps-label {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--blue-bright);
  margin-bottom: 0.2rem;
}

.slide-gps-coords {
  font-size: 0.58rem;
  color: var(--text-secondary);
  font-family: monospace;
}

.slide-gps-accuracy {
  font-size: 0.58rem;
  color: var(--green-bright);
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0.15rem;
}

.slide-gps-accuracy i {
  width: 8px;
  height: 8px;
}

.slide-gps-eta {
  display: flex;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(15, 23, 42, 0.6);
}

.slide-gps-eta-item {
  flex: 1;
  text-align: center;
}

.slide-gps-eta-val {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
}

.slide-gps-eta-lbl {
  font-size: 0.48rem;
  color: var(--text-muted);
}

/* Phone Screen: Success */
.slide-success {
  height: 100%;
  background: linear-gradient(160deg, #06130d, #032b13);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.2rem 1.2rem;
  gap: 0.75rem;
}

.slide-success-icon i {
  width: 44px;
  height: 44px;
  color: var(--green-bright);
  filter: drop-shadow(0 0 12px var(--green-glow));
}

.slide-success-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--green-bright);
}

.slide-success-msg {
  font-size: 0.65rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.slide-success-chat {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.slide-chat-msg {
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  font-size: 0.58rem;
  max-width: 88%;
  line-height: 1.35;
}

.slide-chat-msg.from-authority {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--blue-bright);
  align-self: flex-start;
  border-bottom-left-radius: 0;
}

.slide-chat-msg.from-user {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: var(--green-bright);
  align-self: flex-end;
  border-bottom-right-radius: 0;
}

.phone-home-bar {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  z-index: 20;
}

.phone-indicators {
  display: flex;
  gap: 0.5rem;
}

.phone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: var(--transition);
  padding: 0;
  cursor: pointer;
}

.phone-dot.active {
  background: var(--blue-bright);
  box-shadow: 0 0 10px var(--blue-glow);
  width: 22px;
  border-radius: 4px;
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust-bar {
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--bg-card-border);
  border-bottom: 1px solid var(--bg-card-border);
  padding: 2.2rem 0;
  position: relative;
  z-index: 10;
}

.trust-label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.trust-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  opacity: 0.5;
}

.trust-item:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.trust-item i {
  width: 16px;
  height: 16px;
  color: var(--blue-bright);
}

/* ==========================================================================
   ABOUT / INFO SECTION
   ========================================================================== */
.about-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--bg-base), #080c1e);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-left {
  max-width: 520px;
}

.about-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.about-desc strong {
  color: var(--text-primary);
}

.btn-primary-blue {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--blue), #1d4ed8);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px var(--blue-glow);
}

.btn-primary-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--blue-glow);
}

.btn-primary-blue i {
  width: 16px;
  height: 16px;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  transition: var(--transition);
}

.info-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateX(4px);
}

.info-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon-wrap i {
  width: 22px;
  height: 22px;
  color: white;
}

.info-icon-wrap.blue {
  background: linear-gradient(135deg, var(--blue), #1e40af);
  box-shadow: 0 4px 12px var(--blue-glow);
}

.info-icon-wrap.green {
  background: linear-gradient(135deg, var(--green), #15803d);
  box-shadow: 0 4px 12px var(--green-glow);
}

.info-icon-wrap.yellow {
  background: linear-gradient(135deg, var(--yellow), #d97706);
  box-shadow: 0 4px 12px var(--yellow-glow);
}

.info-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.info-card-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   PLATFORM SECTION
   ========================================================================== */
.platform-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #080c1e, var(--bg-deep));
}

.platform-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-xl);
  padding: 2.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.platform-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.platform-card.featured {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.04);
}

.platform-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--blue), #1e40af);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.platform-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.platform-card:hover .platform-card-icon {
  transform: scale(1.08) rotate(-3deg);
}

.platform-card-icon i {
  width: 34px;
  height: 34px;
  color: white;
}

.platform-card-icon.red {
  background: linear-gradient(135deg, var(--red), #b91c1c);
  box-shadow: 0 8px 24px var(--red-glow);
}

.platform-card-icon.blue {
  background: linear-gradient(135deg, var(--blue), #1e40af);
  box-shadow: 0 8px 24px var(--blue-glow);
}

.platform-card-icon.green {
  background: linear-gradient(135deg, var(--green), #15803d);
  box-shadow: 0 8px 24px var(--green-glow);
}

.platform-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}

.platform-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

.platform-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 1.5rem;
  padding: 0;
  transition: var(--transition);
  cursor: pointer;
}

.platform-card-link i {
  width: 14px;
  height: 14px;
}

.platform-card-link.red { color: var(--red-bright); }
.platform-card-link.blue { color: var(--blue-bright); }
.platform-card-link.green { color: var(--green-bright); }

.platform-card-link:hover {
  gap: 0.7rem;
}

/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */
.benefits-section {
  padding: 8rem 0;
  background: var(--bg-base);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.benefits-left {
  max-width: 520px;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--green);
  transition: var(--transition);
}

.benefit-item:hover {
  background: var(--bg-card-hover);
  transform: translateX(4px);
  border-left-color: var(--green-bright);
}

.benefit-icon-wrap {
  width: 42px;
  height: 42px;
  background: var(--green-subtle);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon-wrap i {
  width: 20px;
  height: 20px;
  color: var(--green-bright);
}

.benefit-body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.benefit-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-block {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-xl);
  padding: 2.8rem 1.8rem;
  text-align: center;
  overflow: hidden;
  transition: var(--transition);
}

.stat-block:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.stat-block-glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  filter: blur(35px);
  opacity: 0.4;
  pointer-events: none;
}

.stat-block.red .stat-block-glow { background: var(--red); }
.stat-block.blue .stat-block-glow { background: var(--blue); }
.stat-block.green .stat-block-glow { background: var(--green); }
.stat-block.purple .stat-block-glow { background: var(--purple); }

.stat-block-val {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-block-val span {
  font-size: 1.5rem;
}

.stat-block.red .stat-block-val { color: var(--red-bright); }
.stat-block.blue .stat-block-val { color: var(--blue-bright); }
.stat-block.green .stat-block-val { color: var(--green-bright); }
.stat-block.purple .stat-block-val { color: #c084fc; }

.stat-block-lbl {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--bg-base), #050814);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 1rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.testimonial-card.featured-testimonial {
  border-color: rgba(59, 130, 246, 0.25);
  background: rgba(59, 130, 246, 0.02);
}

.stars-row {
  display: flex;
  gap: 0.2rem;
}

.stars-row i {
  width: 14px;
  height: 14px;
  color: var(--yellow-bright);
  fill: var(--yellow-bright);
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
}

.testimonial-avatar.blue { background: linear-gradient(135deg, var(--blue), #1d4ed8); }
.testimonial-avatar.green { background: linear-gradient(135deg, var(--green), #15803d); }
.testimonial-avatar.purple { background: linear-gradient(135deg, var(--purple), #7e22ce); }

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.testimonial-place {
  font-size: 0.75rem;
  color: var(--red-bright);
  font-weight: 600;
  margin-top: 0.1rem;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
  padding: 7rem 0;
  background: linear-gradient(135deg, #04091a, #0b1535);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--bg-card-border);
  border-bottom: 1px solid var(--bg-card-border);
}

.cta-glow-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, transparent 70%);
  top: -200px;
  left: 20%;
  filter: blur(100px);
}

.cta-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
  bottom: -200px;
  right: 20%;
  filter: blur(100px);
}

.cta-inner {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 800px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.4rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.cta-badge i {
  width: 14px;
  height: 14px;
  color: var(--yellow-bright);
}

.cta-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.cta-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-inline: auto;
}

.cta-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: #03050d;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.25);
  background: #f8fafc;
}

.btn-cta-white i {
  width: 16px;
  height: 16px;
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.btn-cta-outline i {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  padding: 8rem 0;
  background: var(--bg-base);
}

.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 4rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-info-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.contact-info-icon.blue { background: var(--blue-subtle); color: var(--blue-bright); }
.contact-info-icon.green { background: var(--green-subtle); color: var(--green-bright); }
.contact-info-icon.purple { background: var(--purple-subtle); color: #c084fc; }

.contact-info-icon i {
  width: 20px;
  height: 20px;
}

.contact-info-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.contact-info-main {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.contact-info-main.blue:hover { color: var(--blue-bright); }
.contact-info-main.green:hover { color: var(--green-bright); }

.contact-info-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.contact-info-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Contact Form Wrap */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-xl);
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  position: relative;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.form-group input, .form-group textarea {
  background: rgba(255, 255, 255, 0.02);
  border: 1.5px solid var(--bg-card-border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  color: white;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--blue-bright);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.15);
}

.form-group textarea {
  resize: vertical;
}

.btn-form-submit {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--blue), #1e40af);
  color: white;
  border: none;
  padding: 0.9rem 2.5rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 4px 16px var(--blue-glow);
  transition: var(--transition);
  width: 100%;
  margin-top: 0.5rem;
}

.btn-form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px var(--blue-glow);
}

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

.spin-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.form-success-msg {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--green-subtle);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: var(--green-bright);
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
}

.form-success-msg i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #03050a;
  border-top: 1px solid var(--bg-card-border);
  padding: 5rem 0 2rem;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.footer-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--blue), #1e40af);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--blue-glow);
}

.footer-logo-icon i {
  width: 20px;
  height: 20px;
  color: white;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-secondary);
}

.footer-social a:hover {
  background: var(--blue-subtle);
  border-color: var(--blue-bright);
  color: var(--blue-bright);
  transform: translateY(-2px);
}

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

.footer-links h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links ul a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-links ul a:hover {
  color: var(--blue-bright);
  padding-left: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--bg-card-border);
  padding-top: 2rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   DEMO MODAL
   ========================================================================== */
.demo-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 5, 13, 0.8);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.demo-modal {
  background: linear-gradient(160deg, #090c18, #05070f);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 960px;
  height: 90vh;
  max-height: 680px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-modal-overlay.active .demo-modal {
  transform: scale(1);
}

.demo-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--bg-card-border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  transition: var(--transition);
}

.demo-modal-close:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: var(--red-bright);
}

.demo-modal-close i {
  width: 18px;
  height: 18px;
}

.demo-modal-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  height: 100%;
}

/* Modal Side Title / Description */
.demo-side-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  letter-spacing: 0.5px;
}

.demo-side-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* LEFT: Interactive Phone Side */
.demo-phone-side {
  background: rgba(0, 0, 0, 0.2);
  border-right: 1px solid var(--bg-card-border);
  padding: 3rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
}

.demo-phone-device {
  width: 210px;
  height: 420px;
  background: #0d0f1a;
  border-radius: 36px;
  border: 3.5px solid #22263f;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.demo-phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 18px;
  background: #000;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

.demo-phone-screen {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  overflow: hidden;
  background: #070913;
}

.demo-phone-home {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  z-index: 20;
}

/* Demo Screen states */
.demo-screen-idle {
  height: 100%;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.demo-user-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.4rem 0.5rem;
  border-radius: 10px;
}

.demo-user-avatar {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--blue), #1e40af);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: white;
}

.demo-user-name {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-primary);
}

.demo-user-loc {
  font-size: 0.5rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.demo-user-loc i { width: 7px; height: 7px; }

.demo-sos-btn-hotspot {
  position: absolute;
  bottom: calc(19.62% - 24px);
  left: calc(15.38% - 24px);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.2);
  border: 2px solid var(--red-bright);
  box-shadow: 0 0 15px var(--red-glow);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.demo-sos-btn-hotspot:hover {
  background: rgba(239, 68, 68, 0.35);
  box-shadow: 0 0 25px var(--red-bright);
  transform: scale(1.05);
}

.demo-sos-btn-hotspot::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(239, 68, 68, 0.6);
  animation: hotspot-pulse 2s infinite;
}

@keyframes hotspot-pulse {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* Demo Active state */
.demo-screen-active {
  height: 100%;
  background: linear-gradient(160deg, #070913, #1c0a0a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.8rem 1rem;
  gap: 1rem;
}

.demo-sending-icon {
  position: relative;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-sending-icon i {
  width: 22px;
  height: 22px;
  color: var(--red-bright);
  z-index: 2;
  position: relative;
}

.demo-radar-r {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(239, 68, 68, 0.4);
}
.demo-radar-r.dr1 { width: 100%; height: 100%; animation: radar-pulse 2s infinite; }
.demo-radar-r.dr2 { width: 70%; height: 70%; animation: radar-pulse 2s 0.6s infinite; }
.demo-radar-r.dr3 { width: 40%; height: 40%; animation: radar-pulse 2s 1.2s infinite; }

.demo-sending-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--red-bright);
  margin-top: -0.5rem;
}

.demo-sending-units {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
}

.demo-unit-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 0.3rem 0.5rem;
  font-size: 0.58rem;
  color: var(--text-secondary);
}
.demo-unit-row i {
  width: 9px;
  height: 9px;
  color: var(--green-bright);
}

.demo-reset-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  color: var(--text-secondary);
  font-size: 0.6rem;
  font-weight: 600;
  transition: var(--transition);
  margin-top: 0.5rem;
}

.demo-reset-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.demo-reset-btn i {
  width: 10px;
  height: 10px;
}

/* RIGHT: Command Center Side */
.demo-dashboard-side {
  padding: 3rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.demo-dashboard {
  background: #03050a;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}

.demo-dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.demo-dash-stat {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--bg-card-border);
  border-radius: 10px;
  padding: 0.85rem;
  text-align: center;
}

.demo-dash-val {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  display: block;
}

.demo-dash-val.green { color: var(--green-bright); }
.demo-dash-val.blue { color: var(--blue-bright); }

.demo-dash-lbl {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-top: 0.15rem;
  display: block;
}

/* Map area inside demo dashboard */
.demo-map-area {
  height: 180px;
  background: #060b18;
  border: 1px solid var(--bg-card-border);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.demo-map-area.pulse-red {
  animation: map-red-flash 1s infinite alternate;
}

@keyframes map-red-flash {
  from { border-color: var(--bg-card-border); }
  to { border-color: rgba(239, 68, 68, 0.6); box-shadow: inset 0 0 20px rgba(239, 68, 68, 0.15); }
}

.demo-map-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 1;
}

.demo-map-label {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  z-index: 5;
}

.demo-map-unit {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 5;
  font-size: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.demo-map-unit.pnp { background: var(--blue); }
.demo-map-unit.serenazgo { background: var(--green); }
.demo-map-unit i { width: 10px; height: 10px; }

/* Alert pin on Monitoreo Map */
.demo-alert-pin {
  position: absolute;
  color: var(--red);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
}

.demo-alert-pin i {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 6px var(--red-glow));
}

.demo-pin-pulse {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(239, 68, 68, 0.3);
  border-radius: 50%;
  animation: pin-pulse 1.5s infinite;
}

@keyframes pin-pulse {
  0% { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Feed in Live */
.demo-alert-feed {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  overflow: hidden;
}

.demo-feed-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.demo-feed-header i {
  width: 12px;
  height: 12px;
  color: var(--blue-bright);
}

.demo-live-dot {
  width: 6px;
  height: 6px;
  background: var(--green-bright);
  border-radius: 50%;
  margin-left: auto;
  box-shadow: 0 0 6px var(--green-glow);
  animation: pulse-badge 1.5s infinite;
}

.demo-feed-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  overflow-y: auto;
  flex: 1;
  padding-right: 0.25rem;
}

.demo-feed-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--bg-card-border);
  border-radius: 6px;
  padding: 0.5rem 0.6rem;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-secondary);
}

.demo-feed-item.active-alert {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.03);
  color: var(--text-primary);
  animation: feed-alert-entry 0.4s ease-out;
}

@keyframes feed-alert-entry {
  from { transform: translateY(-10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.demo-feed-item.active-alert i {
  color: var(--red-bright);
}

.demo-feed-item.resolved i {
  color: var(--green-bright);
}

.demo-feed-item i {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* ==========================================================================
   TOAST NOTIFICATION SYSTEM
   ========================================================================== */
#toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 340px;
  width: calc(100% - 4rem);
}

.toast {
  background: rgba(13, 17, 33, 0.95);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  backdrop-filter: blur(10px);
  transform: translateY(20px);
  opacity: 0;
  animation: toast-in 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transition: opacity 0.3s, transform 0.3s;
}

@keyframes toast-in {
  to { transform: translateY(0); opacity: 1; }
}

.toast.removing {
  transform: scale(0.9) translateY(-10px);
  opacity: 0;
}

.toast-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.toast.success { border-left: 3px solid var(--green); }
.toast.success .toast-icon { color: var(--green-bright); }

.toast.danger { border-left: 3px solid var(--red); }
.toast.danger .toast-icon { color: var(--red-bright); }

.toast.info { border-left: 3px solid var(--blue); }
.toast.info .toast-icon { color: var(--blue-bright); }

.toast-body {
  flex: 1;
}

.toast-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.toast-message {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title { font-size: 3rem; }
  .about-grid, .benefits-grid { gap: 3rem; }
  .platform-cards, .testimonials-grid, .contact-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .section-title { font-size: 2.2rem; }
  .section-header { margin-bottom: 3rem; }
  
  /* Mobile Menu drawer */
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #06091a;
    border-bottom: 1px solid var(--bg-card-border);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 150;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  }
  
  .nav-menu.active {
    transform: translateY(0);
  }
  
  .nav-hamburger {
    display: flex;
  }
  
  .header-actions .btn-header-outline,
  .header-actions .btn-header-solid {
    display: none; /* Hide on small screen header to save space, or show smaller icons */
  }
  
  /* Show them inside the menu instead */
  .nav-menu::after {
    content: none;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding-top: 20px;
  }
  
  .hero-desc { margin-inline: auto; }
  
  .hero-ctas, .hero-stats {
    justify-content: center;
  }
  
  .about-grid, .benefits-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-left, .benefits-left {
    max-width: 100%;
    text-align: center;
  }
  
  .benefit-list {
    align-items: center;
  }
  .benefit-item {
    text-align: left;
    max-width: 480px;
    width: 100%;
  }
  
  .platform-cards, .testimonials-grid, .contact-cards-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 1;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .demo-modal-inner {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
  
  .demo-phone-side {
    border-right: none;
    border-bottom: 1px solid var(--bg-card-border);
  }
  
  .demo-modal {
    height: 95vh;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .hero-stats {
    flex-direction: column;
    gap: 1.25rem;
  }
  .hero-stat-divider {
    display: none;
  }
  .contact-form-wrap {
    padding: 2rem 1.5rem;
  }
  .cta-title { font-size: 2rem; }
  .cta-btns {
    flex-direction: column;
    width: 100%;
  }
  .cta-btns a {
    width: 100%;
    justify-content: center;
  }
}
