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

/* ==========================================
   ANNOUNCEMENT BAR
   ========================================== */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 50%, #3B82F6 100%);
  color: var(--color-white);
  padding: 8px 0;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}

.announcement-bar.active {
  transform: translateY(0);
  opacity: 1;
}

.announcement-bar.dismissed {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.announcement-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.announcement-bar-text {
  font-size: 0.86rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
}

.announcement-bar-text strong {
  font-weight: 700;
  color: #FFFFFF;
}

.announcement-bar-icon {
  font-size: 1.05rem;
  animation: announceBounce 2s infinite;
}

@keyframes announceBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

.announcement-bar-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--color-white);
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
  opacity: 0.85;
}

.announcement-bar-close:hover {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.announcement-bar-close:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
  opacity: 1;
}

/* Adjust header top padding when announcement bar is active */
.announcement-bar.active ~ .header-wrapper {
  padding-top: 4px;
}

.announcement-bar.active ~ .header-wrapper:not(.scrolled) {
  padding-top: 12px;
}

@media (max-width: 768px) {
  .announcement-bar-text {
    font-size: 0.76rem;
    gap: 6px;
    line-height: 1.3;
  }
  
  .announcement-bar-inner {
    padding-right: 36px;
    justify-content: flex-start;
  }
  
  .announcement-bar-close {
    right: 8px;
  }
}

/* ==========================================
  DESIGN TOKENS & VARIABLES
   ========================================== */
:root {
  /* Fonts */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-title: 'Outfit', var(--font-sans);

  /* Brand Colors */
  --color-primary: #2563EB;
  --color-secondary: #3B82F6;
  --color-light: #60A5FA;
  --color-white: #FFFFFF;
  --color-bg: #F8FAFC;
  --color-text: #0F172A;
  --color-text-muted: #475569;
  --color-success: #10B981;
  --color-success-bg: #E6F4EA;
  --color-success-border: #A7F3D0;
  --color-border: #E2E8F0;

  /* Glassmorphism & Cards */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06);
  --card-bg: #FFFFFF;

  /* Shadows */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
  --shadow-premium: 0 20px 50px -10px rgba(37, 99, 235, 0.08);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Animations & Transitions */
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Dark Mode Tokens (Future-proofing / toggle-ready) */
.dark-theme {
  --color-bg: #0B0F19;
  --color-text: #F8FAFC;
  --color-text-muted: #94A3B8;
  --color-border: #1E293B;
  --card-bg: #111827;
  --glass-bg: rgba(17, 24, 39, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  --shadow-premium: 0 20px 50px -10px rgba(37, 99, 235, 0.15);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ==========================================
   LAYOUT & UTILITIES
   ========================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

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

.flex { display: flex; }
.grid { display: grid; }

.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* Gradients */
.bg-gradient-blue {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.bg-gradient-light {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.5) 0%, rgba(226, 232, 240, 0.3) 100%);
}

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

/* Glassmorphism utility */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* Section Header styling */
.section-header {
  max-width: 680px;
  margin: 0 auto 60px auto;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  background: rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  gap: 8px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--color-bg);
  color: var(--color-primary);
  border-color: var(--color-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* ==========================================
   SECTION 1 — NAVIGATION (STICKY NAVBAR)
   ========================================== */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header-wrapper.scrolled {
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}

.header-wrapper:not(.scrolled) {
  padding: 20px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 12px 24px -16px rgba(37, 99, 235, 0.8);
}

.logo-icon img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  display: block;
}

/* Menu Items */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-smooth);
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  z-index: 1002;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-text);
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--color-white);
  box-shadow: var(--shadow-xl);
  padding: 100px 32px 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 1001;
  transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav .nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  padding: 8px 0;
}

.mobile-nav-cta {
  margin-top: auto;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================
   SECTION 2 — HERO (STARTUP HERO VIEW)
   ========================================== */
.hero-section {
  position: relative;
  padding-top: 160px;
  padding-bottom: 120px;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 40%);
}

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

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

/* Pune Launch Signal & Platform Status */
.hero-launch-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-launch-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  font-size: 0.82rem;
  color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.05);
}

.hero-launch-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
  animation: launchPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  flex-shrink: 0;
}

@keyframes launchPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.7; }
}

.hero-launch-text strong {
  font-weight: 700;
}

.hero-launch-divider {
  color: var(--color-border);
  font-size: 0.8rem;
}

.hero-launch-sub {
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.15);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary);
}

.hero-badge-tag {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: var(--color-text);
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust-badges {
  display: flex;
  gap: 24px;
  border-top: 1px solid var(--color-border);
  padding-top: 28px;
  flex-wrap: wrap;
}

.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.hero-trust-badge svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Device Mockups & Floating Cards */
.hero-visual {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

/* Floating Interactive Demo Cue */
.phone-interactive-cue {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #F8FAFC;
  font-size: 0.72rem;
  font-weight: 600;
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.35), 0 0 12px rgba(37, 99, 235, 0.25);
  pointer-events: none;
  animation: floatCue 3s ease-in-out infinite;
}

@keyframes floatCue {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -4px); }
}

.cue-pulse-ring {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
  animation: pulseDot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.cue-icon {
  display: flex;
  align-items: center;
  color: #60A5FA;
}

.cue-step-counter {
  padding: 2px 6px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.35);
  color: #93C5FD;
  font-size: 0.65rem;
  font-weight: 700;
  margin-left: 4px;
}

.hero-phone-mockup {
  position: relative;
  width: 290px;
  height: 560px;
  background: #0B0F19;
  border: 10px solid #1E293B;
  border-radius: 40px;
  box-shadow: var(--shadow-xl), 0 30px 60px -15px rgba(15, 23, 42, 0.3);
  overflow: hidden;
  z-index: 2;
  transform-style: preserve-3d;
  transform: translateZ(0);
  transition: transform 0.1s ease-out;
  will-change: transform;
  cursor: pointer;
}

.hero-phone-mockup:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 30px;
  overflow: hidden;
  padding: 40px 12px 24px 12px;
  cursor: pointer;
}

.pss-badge-pill {
  font-size: 0.5rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
}

.hero-phone-mockup,
.hero-phone-mockup * {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Quick Navigation Tabs beneath phone */
.phone-nav-tabs {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.phone-nav-tab {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  padding: 6px 12px;
  border-radius: 20px;
  color: var(--color-text-muted);
  font-size: 0.65rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.phone-nav-tab:hover {
  color: var(--color-text);
  border-color: rgba(37, 99, 235, 0.3);
}

.phone-nav-tab.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

.phone-reflection {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%, rgba(255,255,255,0.03) 100%);
  pointer-events: none;
  z-index: 20;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.phone-dynamic-shadow {
  position: absolute;
  width: 260px;
  height: 30px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.2) 0%, transparent 70%);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  filter: blur(10px);
  transition: all 0.3s ease;
}

.phone-home-indicator {
  width: 40%;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  margin: 0 auto;
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* Notch & App UI elements */
.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 18px;
  background: #0B0F19;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dynamic Island */
.dynamic-island {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #000;
  border-radius: 20px;
  padding: 2px 8px;
  height: 14px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 80px;
}

.dynamic-island.expanded {
  max-width: 200px;
  padding: 3px 10px;
  height: 18px;
}

.di-dot {
  width: 5px;
  height: 5px;
  background: #1a1a2e;
  border-radius: 50%;
  flex-shrink: 0;
}

.di-content {
  overflow: hidden;
  white-space: nowrap;
}

.di-text {
  font-size: 0.38rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.phone-screen {
  width: 100%;
  height: 100%;
  padding: 30px 16px 16px 16px;
  background: #F8FAFC;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}

.phone-screen::-webkit-scrollbar {
  display: none;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.phone-user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-avatar {
  width: 28px;
  height: 28px;
  background: var(--color-light);
  border-radius: var(--radius-full);
}

.phone-title {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-text);
}

.phone-card {
  background: var(--color-white);
  padding: 10px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.phone-job {
  border-left: 3px solid var(--color-primary);
}

.phone-job-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-text);
}

.phone-job-desc {
  font-size: 0.6rem;
  color: var(--color-text-muted);
}

.phone-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  margin-top: 8px;
  overflow: hidden;
}

.phone-progress-fill {
  width: 70%;
  height: 100%;
  background: var(--color-primary);
}

.phone-tech-avatar {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
}

/* Floating Cards outside Phone Mockup */
.floating-card-wrapper {
  position: absolute;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.floating-card-1 {
  top: 10%;
  right: 4%;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 15%;
  left: 2%;
  animation-delay: 2s;
}

.floating-card-3 {
  top: 30%;
  left: 4%;
  animation-delay: 4s;
}

.floating-card {
  position: relative;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 140px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  pointer-events: auto;
}

.floating-card-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-weight: 700;
}

.floating-card-icon svg {
  width: 14px;
  height: 14px;
}

.floating-card-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}

.floating-card-sub {
  font-size: 0.62rem;
  color: var(--color-text-muted);
}

.floating-card-badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  font-size: 0.52rem;
  font-weight: 700;
  margin-top: 6px;
}

.badge-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
}

.badge-warning {
  background: rgba(245, 158, 11, 0.1);
  color: #D97706;
}

/* Floating background circles */
.bg-glow-1 {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: rgba(37, 99, 235, 0.08);
  filter: blur(80px);
  z-index: 1;
  border-radius: var(--radius-full);
}

.bg-glow-2 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(96, 165, 250, 0.08);
  filter: blur(70px);
  z-index: 1;
  border-radius: var(--radius-full);
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.floating-card {
  cursor: pointer;
}

.floating-card:hover {
  transform: translateY(-6px) scale(1.04) !important;
  box-shadow: var(--shadow-xl), 0 0 20px rgba(37, 99, 235, 0.12);
  animation-play-state: paused;
  border-color: var(--color-primary);
}

.floating-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ==========================================
   PHONE SCREEN SLIDES
   ========================================== */
.phone-screen {
  position: relative;
}

.phone-screen-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  overflow-y: auto;
  scrollbar-width: none;
}

.phone-screen-slide::-webkit-scrollbar { display: none; }

.phone-screen-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.phone-screen-slide.exit-left {
  opacity: 0;
  transform: translateX(-40px);
}

/* Phone screen inner UI elements */
.pss-header {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-border);
}

.pss-btn {
  background: var(--color-primary);
  color: white;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  font-size: 0.6rem;
  font-weight: 700;
  margin-top: 4px;
  cursor: default;
}

.pss-btn-sm {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.5rem;
  font-weight: 700;
  cursor: default;
}

.pss-select-item {
  background: #F1F5F9;
  padding: 8px;
  border-radius: 8px;
  font-size: 0.5rem;
  text-align: center;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}

.pss-select-item.active {
  border-color: var(--color-primary);
  background: rgba(37, 99, 235, 0.06);
  color: var(--color-primary);
  font-weight: 600;
}

.pss-time-slot {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.5rem;
  background: #F1F5F9;
  border: 1px solid transparent;
}

.pss-time-slot.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.pss-detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.55rem;
  padding: 3px 0;
  color: var(--color-text-muted);
}

.pss-job-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--color-border);
}

.pss-job-item:last-child { border-bottom: none; }

.pss-job-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}

.pss-history-item {
  font-size: 0.6rem;
}

.pss-skill-tag {
  padding: 2px 8px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-primary);
  border-radius: 12px;
  font-size: 0.45rem;
  font-weight: 600;
}

/* AI Chat Screen */
.pss-chat-area {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.pss-chat-bubble {
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 0.5rem;
  line-height: 1.5;
  max-width: 85%;
}

.pss-chat-bubble.user {
  background: var(--color-primary);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.pss-chat-bubble.ai {
  background: #F1F5F9;
  color: var(--color-text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  min-height: 36px;
}

.pss-ai-cursor {
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Incoming Request Pulse */
.pss-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border: 2px solid rgba(37, 99, 235, 0.2);
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Live Tracking Map */
.pss-map {
  position: relative;
  height: 140px;
  background: linear-gradient(135deg, #EEF2FF 0%, #F0F9FF 50%, #ECFDF5 100%);
  border-radius: 10px;
  overflow: hidden;
}

.pss-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.06) 1px, transparent 1px);
  background-size: 20px 20px;
}

.pss-map-route {
  position: absolute;
  top: 30%;
  left: 15%;
  width: 70%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-success));
  border-radius: 2px;
  opacity: 0.4;
}

.pss-map-route::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: var(--color-primary);
  border-radius: 2px;
  animation: routeProgress 3s ease-in-out infinite;
}

@keyframes routeProgress {
  0% { width: 20%; }
  50% { width: 70%; }
  100% { width: 20%; }
}

.pss-map-marker {
  position: absolute;
  font-size: 1rem;
  z-index: 2;
}

.pss-marker-home {
  bottom: 25%;
  right: 15%;
}

.pss-marker-tech {
  top: 25%;
  left: 20%;
  transition: all 2s ease-in-out;
}

/* Rating Stars */
.pss-stars {
  display: flex;
  gap: 4px;
  justify-content: center;
}

.pss-star {
  font-size: 1.2rem;
  color: #E2E8F0;
  transition: color 0.3s ease, transform 0.3s ease;
}

.pss-star.filled {
  color: #F59E0B;
  transform: scale(1.15);
}

/* ==========================================
   HERO PARTICLES CANVAS
   ========================================== */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ==========================================
   HERO FLOATING ICONS
   ========================================== */
.hero-floating-icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-float-icon {
  position: absolute;
  width: 36px;
  height: 36px;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transition: transform 0.6s ease, box-shadow 0.3s ease;
  pointer-events: auto;
  cursor: default;
}

.hero-float-icon:nth-child(1) { top: 8%; left: 12%; }
.hero-float-icon:nth-child(2) { top: 18%; right: 8%; }
.hero-float-icon:nth-child(3) { bottom: 35%; left: 5%; }
.hero-float-icon:nth-child(4) { bottom: 12%; right: 12%; }
.hero-float-icon:nth-child(5) { top: 50%; left: 0%; }
.hero-float-icon:nth-child(6) { bottom: 5%; left: 35%; }

.hero-float-icon:hover {
  transform: scale(1.2);
  box-shadow: var(--shadow-lg), 0 0 16px rgba(37, 99, 235, 0.2);
  color: var(--color-secondary);
}

/* ==========================================
   HERO TOAST NOTIFICATIONS
   ========================================== */
.hero-toast-container {
  position: absolute;
  top: 0;
  right: -10px;
  z-index: 15;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.hero-toast {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(20px);
  animation: toastIn 0.4s ease forwards, toastOut 0.4s ease 3s forwards;
}

.hero-toast-icon {
  font-size: 0.85rem;
}

@keyframes toastIn {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
  to { opacity: 0; transform: translateX(20px); }
}

/* ==========================================
   SECTION 3 — THE PROBLEM (MARKET GAPS)
   ========================================== */
.problem-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  align-items: stretch !important;
  width: 100% !important;
}

@media (max-width: 991px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 640px) {
  .problem-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

.problem-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
  z-index: 1;
  cursor: pointer;
  box-sizing: border-box;
  min-height: 200px;
}

/* Red Left Accent Bar */
.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #F87171; /* Soft coral red */
  opacity: 0.85;
  transition: background-color 0.3s ease, width 0.3s ease;
}

.problem-card:hover::before,
.problem-card:focus-visible::before,
.problem-card.is-expanded::before {
  background: #EF4444; /* Vivid red on hover */
  width: 5px;
}

.problem-card:hover,
.problem-card:focus-visible,
.problem-card.is-expanded {
  z-index: 50;
  transform: translateY(-8px);
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.07), 0 6px 12px -2px rgba(239, 68, 68, 0.08);
  border-color: rgba(248, 113, 113, 0.4);
  outline: none;
}

.problem-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #FEF2F2;
  color: #EF4444;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.problem-card:hover .problem-icon-box {
  transform: scale(1.08);
  background: #FEE2E2;
}

.problem-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: #1E293B;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.problem-desc {
  font-size: 0.86rem;
  color: #64748B;
  line-height: 1.55;
  margin: 0;
  font-weight: 400;
}

.problem-card-footer {
  margin-top: auto;
  padding-top: 12px;
}

.problem-explore-cue {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: color 0.3s ease;
}

.cue-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.problem-card:hover .problem-explore-cue,
.problem-card.is-expanded .problem-explore-cue {
  color: #EF4444;
}

.problem-card:hover .cue-arrow,
.problem-card.is-expanded .cue-arrow {
  transform: translateX(4px);
}

/* Journey Step Hint */
.journey-step-hint {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.75;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.journey-step:hover .journey-step-hint,
.journey-step.active .journey-step-hint {
  opacity: 1;
  transform: translateX(2px);
}

/* ==========================================
   SECTION 4 — THE EFIXEL SOLUTION (INTERACTIVE PROCESS)
   ========================================== */
.solution-section {
  position: relative;
  background: var(--color-bg);
}

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

.solution-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.solution-step {
  display: flex;
  gap: 24px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.solution-step.active {
  background: var(--color-white);
  border-color: var(--color-border);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-border);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.solution-step.active .step-number {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

.step-info {
  flex-grow: 1;
}

.step-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
  transition: var(--transition-smooth);
}

.solution-step.active .step-title {
  color: var(--color-primary);
}

.step-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Preview Screen wrapper */
.solution-preview {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
  filter: blur(40px);
}

.preview-display-window {
  width: 100%;
  max-width: 420px;
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  position: relative;
  z-index: 2;
  background: var(--color-white);
}

.preview-header-bar {
  background: var(--color-bg);
  padding: 16px 24px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot-indicator {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
}

.dot-1 { background: #FF5F56; }
.dot-2 { background: #FFBD2E; }
.dot-3 { background: #27C93F; }

.preview-body-content {
  padding: 32px;
  height: calc(100% - 44px);
  position: relative;
}

.preview-tab-pane {
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.preview-tab-pane.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.preview-graphic {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px dashed var(--color-border);
  flex-grow: 1;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.graphic-svg-wrapper {
  margin-bottom: 16px;
  color: var(--color-primary);
}

.graphic-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 4px;
}

.graphic-sub {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* ==========================================
   SECTION 5 — SERVICES
   ========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.service-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(96, 165, 250, 0.03) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: var(--color-light);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 28px;
  transition: var(--transition-bounce);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
}

.service-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ==========================================
   SECTION 6 — THE EFIXEL ADVANTAGE
   ========================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: visible;
  min-height: 220px;
  height: 100%;
}

.feature-card:hover,
.feature-card:focus-visible,
.feature-card.is-expanded {
  z-index: 50;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 32px -8px rgba(37, 99, 235, 0.18), var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.4);
  outline: none;
}

.feature-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-icon-wrapper {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.08);
  color: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper,
.feature-card.is-expanded .feature-icon-wrapper {
  transform: scale(1.08);
  background: rgba(16, 185, 129, 0.16);
}

.feature-title {
  font-family: var(--font-title);
  font-size: 1.12rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-text);
  line-height: 1.3;
}

.feature-card-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              margin-top 0.3s ease;
}

.feature-card:hover .feature-card-body,
.feature-card:focus-visible .feature-card-body,
.feature-card.is-expanded .feature-card-body {
  max-height: 140px;
  opacity: 1;
  margin-top: 12px;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

.feature-card-footer {
  margin-top: auto;
  padding-top: 12px;
}

.feature-explore-cue {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: color 0.3s ease;
}

.feature-card:hover .feature-explore-cue,
.feature-card.is-expanded .feature-explore-cue {
  color: var(--color-primary);
}

.feature-card:hover .cue-arrow,
.feature-card.is-expanded .cue-arrow {
  transform: translateX(4px);
}

/* ==========================================
   PUNE LAUNCH MILESTONE BANNER
   ========================================== */
.pune-launch-section {
  padding: 40px 0 60px 0;
}

.pune-launch-card {
  padding: 40px 48px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(59, 130, 246, 0.02) 100%);
  border: 1.5px solid rgba(37, 99, 235, 0.18);
  box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.08);
  position: relative;
  overflow: hidden;
}

.pune-launch-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.pune-launch-badge {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #FFFFFF;
}

.pune-launch-expansion-pill {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.pune-launch-headline {
  font-family: var(--font-title);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
  margin-bottom: 14px;
}

.pune-launch-copy {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 820px;
  margin-bottom: 28px;
}

.pune-launch-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .pune-launch-card {
    padding: 28px 20px;
  }
  .pune-launch-headline {
    font-size: 1.4rem;
  }
}

/* ==========================================
   SECTION 7 — FOR TECHNICIANS
   ========================================== */
.tech-section {
  position: relative;
  background: #0B0F19; /* Dark Section */
  color: var(--color-white);
  overflow: hidden;
}

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

.tech-tag {
  background: rgba(96, 165, 250, 0.15);
  color: var(--color-light);
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.tech-title {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.tech-desc {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.tech-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

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

.benefit-icon {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.2);
  color: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-info h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.benefit-info p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Technician Dashboard Mockup */
.tech-mockup {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
  padding: 24px;
  overflow: hidden;
  z-index: 2;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.mockup-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mockup-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.mockup-username {
  font-weight: 600;
  font-size: 0.95rem;
}

.mockup-status {
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-success);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.mockup-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.mockup-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}

.mockup-stat-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.mockup-stat-value {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
}

.mockup-stat-value.green {
  color: var(--color-success);
}

/* Earnings Line Chart Draw (Pure CSS/HTML) */
.mockup-chart-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 20px;
}

.chart-title {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-text-muted);
  display: flex;
  justify-content: space-between;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 120px;
  padding-top: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 8px;
}

.chart-bar-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% / 7);
}

.chart-bar {
  width: 16px;
  background: linear-gradient(to top, var(--color-primary), var(--color-light));
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  transition: height 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 0; /* Animated dynamically with JS */
}

.chart-label {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  margin-top: 8px;
}

.bg-tech-glow {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
  filter: blur(80px);
  z-index: 1;
}

/* ==========================================
   SECTION 8 — FUTURE ROADMAP
   ========================================== */
.roadmap-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-border);
  transform: translateX(-50%);
  border-radius: var(--radius-full);
}

.roadmap-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.roadmap-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.roadmap-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.roadmap-node {
  position: absolute;
  top: 30px;
  width: 24px;
  height: 24px;
  background: var(--color-white);
  border: 4px solid var(--color-primary);
  border-radius: var(--radius-full);
  z-index: 10;
  transition: var(--transition-bounce);
}

.roadmap-item:nth-child(odd) .roadmap-node {
  right: -12px;
}

.roadmap-item:nth-child(even) .roadmap-node {
  left: -12px;
}

.roadmap-item.active .roadmap-node {
  background: var(--color-primary);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.2);
  transform: scale(1.2);
}

.roadmap-content {
  padding: 28px;
  background: var(--card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.roadmap-content:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-light);
}

.roadmap-phase {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 8px;
  display: block;
}

.roadmap-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}
/* ==========================================
   SECTION 9 — INVESTOR OPPORTUNITY
   COOKIE CONSENT MODAL
    ========================================== */
.investor-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.pitch-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pitch-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.pitch-card:hover {
  border-color: var(--color-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pitch-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pitch-info h4 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.pitch-info p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Dynamic Investor Chart Display */
.investor-visual-box {
  background: var(--card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  position: relative;
}

.chart-controls {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 16px;
}

.chart-control-btn {
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.chart-control-btn.active {
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-primary);
}

.investor-chart-wrapper {
  position: relative;
  height: 240px;
}

.investor-chart-pane {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.investor-chart-pane.active {
  opacity: 1;
  visibility: visible;
}

/* Custom Grid Bars/Columns Chart */
.visual-bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 180px;
  border-bottom: 1px solid var(--color-border);
  padding-top: 20px;
}

.bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% / 5);
}

.bar-pillar {
  width: 32px;
  background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  transition: height 1.2s ease-out;
  height: 0; /* Animated with JS */
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.15);
  position: relative;
}

.bar-pillar:hover {
  background: var(--color-light);
}

.bar-tooltip {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-text);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  opacity: 0;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.bar-pillar:hover .bar-tooltip {
  opacity: 1;
}

.bar-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-top: 10px;
}

.chart-footer-caption {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 16px;
  font-weight: 500;
}

/* ==========================================
   SECTION 10 — ABOUT EFIXEL
   ========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.about-content h3 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.about-mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mv-card {
  background: var(--card-bg);
  border: 1px solid var(--color-border);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.mv-icon {
  width: 40px;
  height: 40px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.mv-card h4 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.mv-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.values-showcase {
  background: var(--card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.values-showcase h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.value-dot {
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.value-info h4 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
}

.value-info p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ==========================================
   SECTION 11 — EARLY ACCESS FORM
   ========================================== */
.early-access-section {
  position: relative;
  overflow: hidden;
}

.early-access-card {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px -15px rgba(37, 99, 235, 0.15);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(96, 165, 250, 0.03) 100%);
}

.early-access-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  filter: blur(20px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  width: 100%;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.form-control, .form-select {
  width: 100%;
  height: 48px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text);
  transition: var(--transition-smooth);
  box-sizing: border-box;
}

.form-control:focus, .form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  outline: none;
}

.form-error {
  font-size: 0.75rem;
  color: #EF4444;
  margin-top: 2px;
  display: none;
}

/* Scoped Location Card Grouping for Early Access & Technician Forms */
.form-location-card {
  margin-top: 0;
  margin-bottom: 18px;
  padding: 18px 20px;
  background: rgba(37, 99, 235, 0.035);
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
  text-align: left;
}

.dark-theme .form-location-card {
  background: rgba(30, 41, 59, 0.4);
  border-color: rgba(59, 130, 246, 0.22);
}

.form-location-header {
  margin-bottom: 14px;
}

.form-location-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}

.location-badge-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-location-title {
  font-family: var(--font-title);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  letter-spacing: -0.01em;
}

.form-location-subtitle {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin: 0;
  padding-left: 34px;
}

.form-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
  transition: all 0.25s ease;
}

/* When "other" is active on desktop, arrange cleanly:
   dropdown (full width), city_name (full width), locality (full width) */
.form-location-grid.has-other {
  grid-template-columns: 1fr;
  gap: 14px;
}

.form-location-grid.has-other .location-select-group,
.form-location-grid.has-other .location-other-group,
.form-location-grid.has-other .location-locality-group {
  grid-column: 1;
  width: 100%;
}

/* Smooth reveal animation for other group */
.location-other-group {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-other-group.is-visible {
  display: flex !important;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .form-location-card {
    padding: 16px 14px;
  }
  .form-location-subtitle {
    padding-left: 0;
    margin-top: 4px;
  }
  .form-location-grid,
  .form-location-grid.has-other {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* Success Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

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

.success-modal {
  width: 90%;
  max-width: 440px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-xl);
  text-align: center;
  transform: scale(0.9);
  transition: var(--transition-bounce);
  border: 1px solid var(--color-border);
}

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

.modal-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--color-success-bg);
  color: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px auto;
  border: 2px solid var(--color-success-border);
}

.modal-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}

.modal-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

/* ==========================================
   SECTION 12 — FAQ (ACCORDION)
   ========================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--color-light);
}

.faq-header {
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--color-white);
}

.faq-question {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
}

.faq-toggle-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--color-primary);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
  padding: 0 32px 24px 32px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  border-top: 1px solid transparent;
}

.faq-item.active .faq-body {
  /* Evaluated dynamically in JS, but fallback to auto or set inline */
}

/* ==========================================
   SECTION 13 — CONTACT
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-card {
  padding: 32px;
  background: var(--card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-card h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-text h5 {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.contact-detail-text p {
  font-size: 0.95rem;
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* Partnership portal box */
.partnership-box {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  border: none;
}

.partnership-box h3 {
  color: var(--color-white);
}

.partnership-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* Quick Inquiry form */
.inquiry-card {
  padding: 40px;
  background: var(--card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.inquiry-card h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.inquiry-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

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

/* ==========================================
   SECTION 14 — FOOTER
   ========================================== */
.footer {
  background: #0B0F19;
  color: var(--color-white);
  padding: 80px 0 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.6fr);
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand .logo {
  color: var(--color-white);
}

.footer-brand .logo-icon {
  background: var(--color-white);
  color: var(--color-primary);
}

.footer-about-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.footer-column h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

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

.footer-link {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.legal-links {
  display: flex;
  gap: 24px;
}

.legal-link {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.legal-link:hover {
  color: var(--color-white);
}

/* ==========================================
   EXTRA FLOATING ELEMENTS & ANIMATIONS
   ========================================== */
/* Page Loading Animation */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(37, 99, 235, 0.1);
  border-top-color: var(--color-primary);
  border-radius: var(--radius-full);
  animation: spin 1s linear infinite;
}

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

/* Scroll Reveal */
.reveal-init {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Delay modifiers */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Back to Top & Float Action */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 99;
  opacity: 0;
   visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease-out;
 }
 
.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

/* Floating Action Button (Quick Contact/FAQ trigger) */
.floating-action-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 99;
  transition: var(--transition-bounce);
}

.floating-action-btn:hover {
  transform: scale(1.1) rotate(3deg);
  background: var(--color-secondary);
}

/* Custom Tooltip for FAB */
.fab-tooltip {
  position: absolute;
  left: 65px;
  background: var(--color-text);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition-smooth);
  pointer-events: none;
}

.floating-action-btn:hover .fab-tooltip {
  opacity: 1;
  transform: translateX(0);
}


/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1024px) {
  .section-title { font-size: 2.2rem; }
  .hero-title { font-size: 2.8rem; }
  .hero-grid, .solution-container, .tech-grid, .investor-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-content, .solution-steps, .tech-info-column, .about-content, .contact-info-column {
    max-width: 100%;
  }
  .hero-visual {
    height: 600px;
  }
  .roadmap-timeline::before {
    left: 24px;
  }
  .roadmap-item {
    width: 100%;
    padding: 20px 0 20px 60px;
  }
  .roadmap-item:nth-child(odd) {
    left: 0;
    text-align: left;
  }
  .roadmap-item:nth-child(odd) .roadmap-node,
  .roadmap-item:nth-child(even) .roadmap-node {
    left: 12px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu, .nav-cta-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .section-padding {
    padding: 70px 0;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .early-access-card {
    padding: 40px 24px;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .floating-card-wrapper {
    display: none !important;
  }
  .phone-nav-tabs {
    width: 95%;
    justify-content: center;
    flex-wrap: wrap;
    bottom: -20px;
    gap: 6px;
  }
  .phone-nav-tab {
    font-size: 0.55rem;
    padding: 4px 8px;
  }
}

/* ==========================================
   MULTI-PAGE ENHANCEMENTS
   ========================================== */
.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  z-index: 2000;
}

.skip-link:focus {
  top: 16px;
}

.subpage-hero {
  padding-top: 170px;
  padding-bottom: 90px;
  background: radial-gradient(circle at 85% 15%, rgba(59, 130, 246, 0.08) 0%, transparent 45%),
              radial-gradient(circle at 10% 85%, rgba(37, 99, 235, 0.05) 0%, transparent 45%);
}

.subpage-hero-content {
  max-width: 760px;
}

.subpage-title {
  margin-bottom: 18px;
}

.subpage-subtitle {
  max-width: 680px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-consent {
  margin-top: 18px;
  margin-bottom: 22px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  cursor: pointer;
  text-align: left;
  user-select: none;
}

.form-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-primary);
  cursor: pointer;
}

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

.form-actions-center {
  text-align: center;
}

.form-submit-btn {
  min-width: 240px;
}

.form-status {
  min-height: 24px;
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-status.success {
  color: var(--color-success);
}

.form-status.error {
  color: #DC2626;
}

.form-control.is-invalid {
  border-color: #EF4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-error.has-error {
  display: block;
}

.text-muted {
  color: var(--color-text-muted);
}

.legal-section {
  padding-top: 0;
}

.legal-card {
  max-width: 900px;
  background: var(--card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px;
}

.legal-card h2 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-card p {
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .subpage-hero {
    padding-top: 140px;
    padding-bottom: 70px;
  }

  .legal-card {
    padding: 28px 20px;
  }

  .form-submit-btn {
    width: 100%;
    min-width: 0;
  }
}

/* ==========================================
   EFIXEL CHATBOT WIDGET STYLES
   ========================================== */
.chatbot-unread-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #EF4444;
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--color-white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  animation: badgeBounce 2s infinite;
}

@keyframes badgeBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.efixel-chat-widget {
  position: fixed;
  bottom: 92px;
  left: 24px;
  width: 380px;
  height: 520px;
  max-height: calc(100vh - 120px);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
}

.efixel-chat-widget.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.efixel-chat-widget.minimized {
  height: 48px;
  overflow: hidden;
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

/* Chat Header */
.chat-header {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-header-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-avatar-wrapper {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.online-indicator {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--color-success);
  border: 2px solid var(--color-primary);
}

.chat-bot-name {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

.chat-bot-status {
  font-size: 0.7rem;
  opacity: 0.8;
  display: block;
}

.chat-header-actions {
   display: flex;
  gap: 6px;
}

.chat-header-btn {
  background: transparent;
  border: none;
  color: var(--color-white);
  opacity: 0.8;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.chat-header-btn:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

/* Chat Messages */
.chat-messages-container {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.chat-scroll-content {
  height: 100%;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scroll-behavior: smooth;
  text-align: left;
}
 
.chat-scroll-content::-webkit-scrollbar {
  width: 4px;
}
 
.chat-scroll-content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}
 
.chat-message-bubble-row {
  display: flex;
  width: 100%;
  margin-bottom: 2px;
}

.chat-message-bubble-row.user-row {
  justify-content: flex-end;
}

.chat-message-bubble-row.ai-row {
  justify-content: flex-start;
}

.chat-bubble {
  max-width: 80%;
  padding: 12px 16px;
}

.user-bubble {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 18px 18px 4px 18px;
}

.ai-bubble {
  background: var(--color-white);
  color: var(--color-text);
  border-radius: 18px 18px 18px 4px;
  border: 1px solid var(--color-border);
}

.chat-time {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  margin-top: 4px;
  display: block;
}

.user-row .chat-time {
  text-align: right;
}

/* Typing Indicator Animation */
.typing-bubble {
  padding: 12px 20px;
}

.typing-dots {
  display: flex;
  align-items: center;
  gap: 4px;
}

.typing-dots span {
  width: 8px;
  height: 8px;
  background: var(--color-text-muted);
  border-radius: 50%;
  display: inline-block;
  animation: bounceDot 1.4s infinite ease-in-out both;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounceDot {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1.0); }
}

/* Suggestions chips */
.chat-suggestions-container {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid var(--color-border);
  overflow: hidden;
}

.chat-suggestions-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 4px;
}

.chat-suggestions-scroll::-webkit-scrollbar {
  height: 3px;
}

.chat-suggestions-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 2px;
}

.chat-chip {
  display: inline-block;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}
 
.chat-chip:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-1px);
}

/* Chat Input Bar */
.chat-input-bar {
  padding: 12px 16px;
  display: flex;
  gap: 10px;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  align-items: center;
}

.chat-input-bar input {
  flex: 1;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-smooth);
}

.chat-input-bar input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.chat-input-bar button {
  background: var(--color-primary);
  border: none;
  color: var(--color-white);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.chat-input-bar button:hover {
  background: var(--color-secondary);
  transform: scale(1.05);
}

/* Contact Escalation Form Overlay */
.chat-escalation-overlay {
  position: absolute;
  top: 48px;
  left: 0;
  width: 100%;
  height: calc(100% - 48px);
  background: rgba(255, 255, 255, 0.95);
  z-index: 10;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.escalation-header h5 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--color-text);
}

.escalation-header p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.chat-escalation-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.escalation-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.escalation-field label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.escalation-field input, .escalation-field textarea {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.85rem;
  outline: none;
  background: var(--color-white);
  transition: var(--transition-smooth);
}

.escalation-field textarea {
  resize: none;
  height: 80px;
}

.escalation-field input:focus, .escalation-field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.escalation-error {
  font-size: 0.7rem;
  color: #EF4444;
  margin-top: 2px;
  display: none;
}

.escalation-error.has-error {
  display: block;
}

.escalation-status {
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
}

.escalation-status.success { color: var(--color-success); }
.escalation-status.error { color: #EF4444; }

.escalation-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.escalation-actions button {
  flex: 1;
}

/* ==========================================
   REPAIR JOURNEY TIMELINE
   ========================================== */
.repair-journey-section {
  padding-top: 40px;
  padding-bottom: 60px;
}

.journey-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.journey-step {
  flex: 1 1 0;
  min-width: 170px;
  max-width: 210px;
  width: 100%;
  text-align: center;
  padding: 24px 14px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-sizing: border-box;
}

.journey-step-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.journey-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 24px rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.2);
}

.journey-step:hover .journey-step-glow {
  opacity: 1;
}

.journey-step.active {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(37, 99, 235, 0.12);
  transform: translateY(-4px);
}

.journey-step.active .journey-step-glow {
  opacity: 1;
}

.journey-step.active .journey-step-number {
  background: var(--color-primary);
  color: white;
}

.journey-step.active .journey-step-icon {
  color: var(--color-primary);
  transform: scale(1.1);
}

.journey-step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  font-family: var(--font-title);
  margin: 0 auto 12px;
  transition: all 0.4s ease;
}

.journey-step-icon {
  color: var(--color-text-muted);
  margin-bottom: 12px;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-step-title {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
  word-wrap: break-word;
  white-space: normal;
}

.journey-step-desc {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin: 0;
  word-wrap: break-word;
  white-space: normal;
}

.journey-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  min-width: 20px;
  flex-shrink: 1;
  padding-top: 48px;
  position: relative;
}

.connector-line {
  width: 100%;
  height: 2px;
  background: var(--color-border);
  position: relative;
  overflow: hidden;
}

.connector-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--color-primary);
  transition: width 0.6s ease, height 0.6s ease;
}

.journey-connector.active .connector-line::after {
  width: 100%;
}

.connector-arrow {
  position: absolute;
  right: -2px;
  color: var(--color-border);
  transition: color 0.4s ease, transform 0.4s ease;
}

.journey-connector.active .connector-arrow {
  color: var(--color-primary);
}

/* ==========================================
   MOBILE & DESKTOP SITE RESPONSIVE OVERRIDES
   ========================================== */

/* Standard Mobile View (Phones & Tablets <= 768px): STACK VERTICALLY */
@media (max-width: 768px) {
  .journey-timeline {
    flex-direction: column !important;
    align-items: center !important;
    max-width: 420px !important;
    margin: 0 auto !important;
    gap: 0 !important;
    overflow-x: visible !important;
  }

  .journey-step {
    flex: none !important;
    width: 100% !important;
    max-width: 380px !important;
    min-width: 0 !important;
    padding: 20px 18px !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .journey-connector {
    width: 2px !important;
    min-width: 2px !important;
    height: 32px !important;
    padding-top: 0 !important;
    margin: 6px 0 !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }

  .connector-line {
    width: 2px !important;
    height: 100% !important;
    margin: 0 auto !important;
  }

  .connector-line::after {
    width: 100% !important;
    height: 0 !important;
  }

  .journey-connector.active .connector-line::after {
    height: 100% !important;
    width: 100% !important;
  }

  .connector-arrow {
    right: auto !important;
    bottom: -6px !important;
    top: auto !important;
    transform: rotate(90deg) !important;
  }
}

/* Desktop Site Mode on Mobile / Narrow Desktop Windows (769px to 1120px): SMOOTH HORIZONTAL SCROLL */
@media (min-width: 769px) and (max-width: 1120px) {
  .journey-timeline {
    overflow-x: auto !important;
    justify-content: flex-start !important;
    padding: 12px 8px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none;
    flex-wrap: nowrap !important;
  }

  .journey-timeline::-webkit-scrollbar {
    display: none;
  }

  .journey-step {
    flex: 0 0 185px !important;
    min-width: 185px !important;
    max-width: 185px !important;
  }

  .journey-connector {
    flex: 0 0 32px !important;
    min-width: 32px !important;
  }
}

/* ==========================================
   TESTIMONIALS BLOCK STYLES
   ========================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

.testimonial-quote {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

.user-avatar-initials {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.user-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}

.user-loc {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* ==========================================
   COMING SOON FUTURE SERVICES
   ========================================== */
.coming-soon-section {
  background: var(--color-bg);
}

.future-badge {
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

/* ==========================================
   APP RECOMMENDATION MODAL STYLES
   ========================================== */
.app-modal-overlay {
  z-index: 1050; /* Sits between chatbot and standard success modal */
}

.app-modal-content {
  max-width: 400px;
  padding: 36px 30px;
  text-align: center;
}

/* ==========================================
   DARK THEME COMPATIBILITY OVERRIDES
   ========================================== */
.dark-theme .efixel-chat-widget {
  background: rgba(17, 24, 39, 0.9);
  border-color: rgba(255, 255, 255, 0.08);
}

.dark-theme .ai-bubble {
  background: rgba(31, 41, 55, 0.9);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.08);
}

.dark-theme .chat-suggestions-container {
  background: rgba(17, 24, 39, 0.6);
}

.dark-theme .chat-chip {
  background: rgba(31, 41, 55, 0.9);
  color: var(--color-primary);
  border-color: rgba(255, 255, 255, 0.08);
}

.dark-theme .chat-chip:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.dark-theme .chat-input-bar {
  background: rgba(17, 24, 39, 0.95);
  border-top-color: rgba(255, 255, 255, 0.08);
}

.dark-theme .chat-input-bar input {
  background: rgba(31, 41, 55, 0.9);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.08);
}

.dark-theme .chat-escalation-overlay {
  background: rgba(17, 24, 39, 0.95);
}

.dark-theme .escalation-field input, .dark-theme .escalation-field textarea {
  background: rgba(31, 41, 55, 0.9);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.08);
}

/* ==========================================
   MOBILE RESPONSIVENESS FOR CHATBOT
   ========================================== */
@media (max-width: 576px) {
  .efixel-chat-widget {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    z-index: 2000;
  }
  
  .chat-header {
    padding: 16px;
  }
  
  .chat-escalation-overlay {
    top: 56px;
    height: calc(100% - 56px);
  }
}

/* New Guided Chatbot Styles */
.chat-options-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-bottom: 10px; /* Ensure space at the bottom */
}

.chat-option-btn {
  width: 100%;
  padding: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
  background: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}

.chat-option-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.chat-option-btn.back-btn {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.chat-option-btn.back-btn:hover {
  background: var(--color-bg);
  color: var(--color-primary);
  border-color: var(--color-light);
}

/* Ensure the main message display area can scroll if content overflows */
.chat-scroll-content {
    justify-content: flex-start; /* Align content to the top */
}

/* ==========================================
   COOKIE CONSENT MODAL
   ========================================== */
.cookie-consent-modal-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: rgba(0, 0, 0, 0.6); /* Slightly darker to stand out at bottom */
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: flex-end; /* Align to the bottom */
  justify-content: center;
  padding: 20px; /* Some spacing from the bottom edge */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease-out;
}

.cookie-consent-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-consent-modal {
  background-color: var(--card-bg);
  padding: 20px 25px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
  transform: translateY(100%); /* Start off-screen at the bottom */
  transition: transform 0.3s ease-out;
}

.cookie-consent-modal-overlay.active .cookie-consent-modal {
  transform: translateY(0);
}

.cookie-consent-modal .modal-title {
  font-size: 1.3rem;
  margin-bottom: 0;
}

.cookie-consent-modal .modal-text {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.cookie-consent-modal .modal-text a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookie-consent-modal .btn {
  align-self: flex-end; /* Align button to the right */
  margin-top: 10px;
}

/* ==========================================
   SOCIAL LINKS & INSTAGRAM CARDS
   ========================================== */
.contact-link {
  color: var(--color-primary);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.contact-link:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

.contact-ig-icon {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  padding: 6px;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.contact-threads-icon {
  background: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  padding: 6px;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-detail-item:last-child {
  margin-bottom: 0;
}

.contact-detail-text h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 3px;
}

.contact-email-icon {
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  padding: 6px;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  font-size: 1.1rem;
}

/* Contact Response Time & Trust Widget */
.contact-trust-widget {
  margin-top: 24px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, rgba(59, 130, 246, 0.08) 100%);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
}

.trust-widget-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.trust-widget-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.trust-widget-header h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
}

.trust-widget-body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.trust-widget-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.threads-card-icon {
  background: #000000 !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25) !important;
}

.contact-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.external-icon {
  font-size: 0.85em;
  opacity: 0.8;
  transition: transform 0.2s ease;
}

.contact-ig-link:hover .external-icon {
  transform: translate(2px, -2px);
  opacity: 1;
}

.about-social-container {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-social-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.about-social-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.3);
}

.social-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.social-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(220, 39, 67, 0.25);
}

.social-card-content {
  flex: 1;
}

.social-card-content h4 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.social-card-content p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.social-card-btn {
  white-space: nowrap;
}

@media (max-width: 992px) {
  .about-social-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .about-social-card {
    padding: 24px 20px;
  }
  .social-card-header {
    flex-wrap: wrap;
  }
}