/* 
   UNICON IT Solutions / SMSLite.in 
   Custom Premium SaaS Style Sheet
   Includes: Typography, Glassmorphism, Animations, Gradients, Custom Mockups
*/

@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');

:root {
  --primary: #0D6EFD;
  --primary-hover: #0b5ed7;
  --secondary: #0F172A;
  --accent: #22C55E;
  --accent-hover: #1eab50;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --border-color: #E2E8F0;
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, #0D6EFD 0%, #2563EB 100%);
  --grad-accent: linear-gradient(135deg, #22C55E 0%, #15803D 100%);
  --grad-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
  --grad-hero: linear-gradient(180deg, rgba(13, 110, 253, 0.05) 0%, rgba(248, 250, 252, 0) 100%);
  
  /* Shadows & Glassmorphism */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 16px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.08), 0 10px 20px -10px rgba(15, 23, 42, 0.06);
  --shadow-premium: 0 30px 60px -15px rgba(15, 23, 42, 0.12);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.05);

  --font-headers: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Global Reset & Base Styles */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden; /* Prevent horizontal scroll escaping on mobile */
}

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

h1, h2, h3, h4, h5, h6, .display-font {
  font-family: var(--font-headers);
  font-weight: 700;
  color: var(--secondary);
}

p {
  color: var(--text-muted);
  line-height: 1.65;
}

/* Scroll Animations Base (using intersection observer) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Helper Classes & Gradient Texts */
.text-gradient-primary {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-accent {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-navy-dark {
  background: var(--grad-dark);
  color: #FFFFFF;
}

.bg-navy-dark h1, 
.bg-navy-dark h2, 
.bg-navy-dark h3, 
.bg-navy-dark h4, 
.bg-navy-dark h5, 
.bg-navy-dark h6, 
.bg-navy-dark .display-font {
  color: #FFFFFF;
}

.bg-navy-dark p {
  color: #94A3B8;
}

/* Custom Buttons */
.btn {
  font-family: var(--font-headers);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 12px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--grad-primary);
  border: none;
}

.btn-primary:hover, .btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
  background: var(--grad-primary);
  filter: brightness(1.15);
}

.btn-accent {
  background: var(--grad-accent);
  color: white;
  border: none;
}

.btn-accent:hover, .btn-accent:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
  background: var(--grad-accent);
  color: white;
  filter: brightness(1.15);
}

.btn-outline-navy {
  color: var(--secondary);
  border: 2px solid var(--secondary);
  background: transparent;
}

.btn-outline-navy:hover, .btn-outline-navy:focus {
  color: #FFFFFF;
  background-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.btn-outline-light {
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
}

.btn-outline-light:hover, .btn-outline-light:focus {
  color: var(--secondary);
  border-color: #FFFFFF;
  background-color: #FFFFFF;
  transform: translateY(-2px);
}

/* Sticky Premium Navigation Bar */
.navbar-premium {
  padding: 1rem 0;
  transition: var(--transition-smooth);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.navbar-premium.scrolled {
  padding: 0.6rem 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.navbar-premium.scrolled.navbar-dark {
  background: rgba(15, 23, 42, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand-logo {
  font-family: var(--font-headers);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
}

.navbar-premium .nav-link {
  font-family: var(--font-headers);
  font-weight: 500;
  color: var(--text-main);
  margin: 0 0.5rem;
  transition: var(--transition-fast);
  position: relative;
}

.navbar-premium .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.navbar-premium .nav-link:hover::after,
.navbar-premium .nav-link.active::after {
  width: 80%;
}

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

/* Mobile Nav Menu Tweak */
@media (max-width: 991.98px) {
  .navbar-premium {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
  }
  .navbar-premium .nav-link::after {
    display: none;
  }
  .navbar-premium .nav-link {
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
  }
  .navbar-premium .nav-link:hover,
  .navbar-premium .nav-link.active {
    background-color: rgba(13, 110, 253, 0.08);
  }
}

/* Glassmorphism Cards */
.card-glass {
  background: var(--grad-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}

.card-glass:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 110, 253, 0.25);
}

/* Premium Card Design */
.card-premium {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-primary);
  opacity: 0;
  transition: var(--transition-fast);
}

.card-premium:hover::before {
  opacity: 1;
}

.card-premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 110, 253, 0.15);
}

.card-premium .icon-container {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(13, 110, 253, 0.08);
  color: var(--primary);
  transition: var(--transition-smooth);
}

.card-premium:hover .icon-container {
  background: var(--primary);
  color: #FFFFFF;
}

/* Custom Pastel Themes for Core Services */
.card-pastel-blue {
  background-color: #F0F6FF;
  border-color: #DBEAFE;
}
.card-pastel-blue .icon-container {
  background-color: rgba(13, 110, 253, 0.12);
  color: #0D6EFD;
}
.card-pastel-blue:hover {
  background-color: #E0ECFF;
  border-color: #BFDBFE;
}
.card-pastel-blue:hover .icon-container {
  background-color: #0D6EFD;
  color: #FFFFFF;
}

.card-pastel-green {
  background-color: #F0FDF4;
  border-color: #DCFCE7;
}
.card-pastel-green .icon-container {
  background-color: rgba(34, 197, 94, 0.12);
  color: #22C55E;
}
.card-pastel-green:hover {
  background-color: #DCFCE7;
  border-color: #BBF7D0;
}
.card-pastel-green:hover .icon-container {
  background-color: #22C55E;
  color: #FFFFFF;
}

.card-pastel-amber {
  background-color: #FFFDF5;
  border-color: #FEF9C3;
}
.card-pastel-amber .icon-container {
  background-color: rgba(245, 158, 11, 0.12);
  color: #D97706;
}
.card-pastel-amber:hover {
  background-color: #FEF9C3;
  border-color: #FEF08A;
}
.card-pastel-amber:hover .icon-container {
  background-color: #D97706;
  color: #FFFFFF;
}

.card-pastel-purple {
  background-color: #FAF5FF;
  border-color: #F3E8FF;
}
.card-pastel-purple .icon-container {
  background-color: rgba(168, 85, 247, 0.12);
  color: #9333EA;
}
.card-pastel-purple:hover {
  background-color: #F3E8FF;
  border-color: #E9D5FF;
}
.card-pastel-purple:hover .icon-container {
  background-color: #9333EA;
  color: #FFFFFF;
}

.card-pastel-indigo {
  background-color: #EEF2FF;
  border-color: #E0E7FF;
}
.card-pastel-indigo .icon-container {
  background-color: rgba(99, 102, 241, 0.12);
  color: #4F46E5;
}
.card-pastel-indigo:hover {
  background-color: #E0E7FF;
  border-color: #C7D2FE;
}
.card-pastel-indigo:hover .icon-container {
  background-color: #4F46E5;
  color: #FFFFFF;
}


/* Interactive ERP Modules Grid */
.module-grid-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.25rem;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  height: 100%;
}

.module-grid-item:hover {
  transform: scale(1.05);
  border-color: rgba(13, 110, 253, 0.3);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(13, 110, 253, 0.02) 100%);
}

.module-grid-item .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(13, 110, 253, 0.05);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem auto;
  transition: var(--transition-fast);
}

.module-grid-item:hover .icon-wrap {
  background: var(--grad-primary);
  color: white;
  transform: rotate(5deg);
}

.module-grid-item h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--secondary);
}

/* Custom 8-column layout and scaling for ERP modules on desktop */
@media (min-width: 992px) {
  .row-cols-lg-8 > * {
    flex: 0 0 auto;
    width: 12.5% !important;
  }
  .module-grid-item {
    padding: 1.25rem 0.5rem;
  }
  .module-grid-item h5 {
    font-size: 0.85rem;
  }
  .module-grid-item .icon-wrap {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
  }
  .module-grid-item .icon-wrap svg {
    width: 16px;
    height: 16px;
  }
}

/* Custom Pastel Color Options for ERP Showcase Modules */
.module-pastel-blue {
  background-color: #E8F0FE;
  border-color: #C6DAFC;
}
.module-pastel-blue .icon-wrap {
  background-color: rgba(13, 110, 253, 0.15);
  color: #0D6EFD;
}
.module-pastel-blue:hover {
  background: #D2E3FC !important;
  border-color: #ADC8FC !important;
}

.module-pastel-green {
  background-color: #E6F4EA;
  border-color: #C2ECD1;
}
.module-pastel-green .icon-wrap {
  background-color: rgba(34, 197, 94, 0.15);
  color: #16A34A;
}
.module-pastel-green:hover {
  background: #CEEAD6 !important;
  border-color: #A3E1B9 !important;
}

.module-pastel-amber {
  background-color: #FEF7E0;
  border-color: #FDE8A4;
}
.module-pastel-amber .icon-wrap {
  background-color: rgba(217, 119, 6, 0.15);
  color: #D97706;
}
.module-pastel-amber:hover {
  background: #FEEFC0 !important;
  border-color: #FDD975 !important;
}

.module-pastel-purple {
  background-color: #F5ECFC;
  border-color: #E8D0FA;
}
.module-pastel-purple .icon-wrap {
  background-color: rgba(168, 85, 247, 0.15);
  color: #9333EA;
}
.module-pastel-purple:hover {
  background: #ECD9FC !important;
  border-color: #DCB3FD !important;
}

.module-pastel-indigo {
  background-color: #EEF0FC;
  border-color: #D0D6FC;
}
.module-pastel-indigo .icon-wrap {
  background-color: rgba(99, 102, 241, 0.15);
  color: #4F46E5;
}
.module-pastel-indigo:hover {
  background: #DFE2FD !important;
  border-color: #B4BEFD !important;
}

.module-pastel-pink {
  background-color: #FCE8E6;
  border-color: #FAD2CF;
}
.module-pastel-pink .icon-wrap {
  background-color: rgba(225, 29, 72, 0.15);
  color: #E11D48;
}
.module-pastel-pink:hover {
  background: #FAD2CF !important;
  border-color: #FAABA4 !important;
}

.module-pastel-teal {
  background-color: #E6F6F4;
  border-color: #C2ECE5;
}
.module-pastel-teal .icon-wrap {
  background-color: rgba(13, 148, 136, 0.15);
  color: #0D9488;
}
.module-pastel-teal:hover {
  background: #CEEFEB !important;
  border-color: #A3E1D4 !important;
}

/* Statistics Section styling */
.stat-card {
  padding: 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.stat-card .text-muted {
  color: rgba(255, 255, 255, 0.75) !important;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.2px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-headers);
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

/* Light contrast variants inside dark container stats */
.bg-navy-dark .text-primary {
  color: #60A5FA !important;
}
.bg-navy-dark .text-accent {
  color: #34D399 !important;
}
.bg-navy-dark .text-warning {
  color: #FBBF24 !important;
}
.bg-navy-dark .text-info {
  color: #22D3EE !important;
}

/* Hero Dashboard CSS Graphic (SVG & HTML Combination) */
.hero-dashboard-graphic {
  position: relative;
  width: 100%;
  border-radius: 20px;
  background: #FFFFFF;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.dashboard-header {
  height: 48px;
  background: #F1F5F9;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  padding: 0 1rem;
}

.dashboard-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
}

.dashboard-header .dot-red { background-color: #EF4444; }
.dashboard-header .dot-yellow { background-color: #F59E0B; }
.dashboard-header .dot-green { background-color: #10B981; }

.dashboard-header .url-bar {
  flex-grow: 1;
  max-width: 300px;
  height: 24px;
  background-color: #FFFFFF;
  border-radius: 6px;
  margin-left: 20px;
  font-size: 10px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  padding: 0 8px;
  border: 1px solid #E2E8F0;
}

.dashboard-body {
  padding: 1.25rem;
  background-color: #F8FAFC;
}

/* Phone Mockup Styling */
.phone-mockup-wrapper {
  position: relative;
  width: 280px;
  height: 560px;
  border-radius: 40px;
  background: #0F172A;
  border: 8px solid #0F172A;
  box-shadow: var(--shadow-premium), inset 0 0 10px rgba(255,255,255,0.05);
  overflow: hidden;
  margin: 0 auto;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #F8FAFC;
  overflow-y: auto;
  position: relative;
  padding: 10px 10px 58px 10px; /* Space for fixed bottom navbar */
}

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

.phone-dynamic-island {
  width: 84px;
  height: 20px;
  background: #0F172A;
  border-radius: 20px;
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.15);
}

/* Phone Screen Glare Effect Overlay */
.phone-screen-glare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 50%);
  z-index: 25;
  pointer-events: none;
}

/* Floating Elements (Hero and Automation diagrams) */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

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

.floating-element {
  animation: float 6s ease-in-out infinite;
}

.floating-element-delayed {
  animation: float-delayed 6s ease-in-out infinite;
}

/* Floating WhatsApp Button Round (Official Brand Style) */
.whatsapp-float-round {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-decoration: none !important;
  background-color: #25D366; /* Official WhatsApp Green */
  border: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: box-shadow 0.4s ease, background-color 0.4s ease;
  animation: slide-in-float 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  -webkit-tap-highlight-color: transparent;
  /* NOTE: Do NOT add static transform here — it breaks position:fixed on mobile */
}

.whatsapp-float-round:focus,
.whatsapp-float-round:active {
  outline: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-round .whatsapp-icon-wrap {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-float-round:hover .whatsapp-icon-wrap {
  color: #FFFFFF;
  transform: scale(1.1) rotate(10deg);
}

.whatsapp-badge-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  background-color: #EF4444;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: badge-pulse 1.5s infinite;
  z-index: 5;
}

/* Pulsing ring — use clip so it never overflows beyond the button's fixed box */
.whatsapp-float-round .pulsing-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid rgba(37, 211, 102, 0.5);
  animation: pulse-ring-glow 2s ease-out infinite;
  pointer-events: none;
  will-change: transform, opacity;
}

@keyframes pulse-ring-glow {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes badge-pulse {
  0%   { box-shadow: 0 0 0 0px rgba(239, 68, 68, 0.5); }
  70%  { box-shadow: 0 0 0 5px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0px rgba(239, 68, 68, 0); }
}

@keyframes slide-in-float {
  0%   { opacity: 0; bottom: -80px; }
  100% { opacity: 1; bottom: 30px; }
}

@media (max-width: 575.98px) {
  .whatsapp-float-round {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 16px;
    animation: slide-in-float-sm 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  @keyframes slide-in-float-sm {
    0%   { opacity: 0; bottom: -80px; }
    100% { opacity: 1; bottom: 20px; }
  }
  .whatsapp-badge-dot {
    top: 1px;
    right: 1px;
    width: 8px;
    height: 8px;
  }
}

/* Automation Workflow Section diagram styling */
.automation-diagram {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

@media (min-width: 992px) {
  .automation-diagram {
    flex-direction: row;
    justify-content: space-between;
    padding: 3rem;
  }
}

.diagram-node {
  background: var(--bg-light);
  border: 1.5px solid var(--border-color);
  border-radius: 16px;
  padding: 1.25rem;
  width: 100%;
  max-width: 220px;
  text-align: center;
  z-index: 2;
  transition: var(--transition-smooth);
}

.diagram-node:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.diagram-node.active-node {
  background: var(--grad-primary);
  color: #FFFFFF;
  border: none;
}

.diagram-node.active-node h5, 
.diagram-node.active-node p {
  color: #FFFFFF;
}

.diagram-node .node-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.diagram-node.active-node .node-icon {
  color: #FFFFFF;
}

.diagram-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  animation: arrow-bounce 2s infinite;
}

@media (min-width: 992px) {
  .diagram-arrow {
    transform: rotate(0deg);
  }
  @keyframes arrow-bounce {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(8px); }
  }
}

@media (max-width: 991.98px) {
  .diagram-arrow {
    transform: rotate(90deg);
  }
  @keyframes arrow-bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(8px); }
  }
}

/* Showcase & Interactive Templates Buttons */
.tab-pill-custom {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.5rem 1.25rem;
  color: var(--text-muted);
  font-family: var(--font-headers);
  font-weight: 600;
  transition: var(--transition-fast);
}

.tab-pill-custom.active {
  background-color: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

/* Pricing Section pricing cards */
.pricing-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem 2rem 2.5rem 2rem;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

@media (max-width: 991.98px) {
  .pricing-card.featured {
    transform: scale(1);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.pricing-card.featured::after {
  content: 'Most Popular';
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--grad-accent);
  color: #FFFFFF;
  font-family: var(--font-headers);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.pricing-card.featured:hover {
  transform: translateY(-8px) scale(1.03);
}

/* Pricing Card Pastel Themes */
.pricing-pastel-blue {
  background-color: #E8F0FE;
  border-color: #C6DAFC;
}
.pricing-pastel-blue:hover {
  background-color: #D2E3FC;
  border-color: #ADC8FC;
}

.pricing-pastel-green {
  background-color: #E6F4EA;
  border-color: #C2ECD1;
}
.pricing-pastel-green.featured {
  border: 2.5px solid #22C55E !important;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.12);
}
.pricing-pastel-green:hover {
  background-color: #CEEAD6;
  border-color: #A3E1B9;
}
.pricing-pastel-green.featured:hover {
  border-color: #16A34A !important;
  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.22);
}
.pricing-pastel-green h5 {
  color: #16A34A !important;
}
.pricing-pastel-green .btn-primary {
  background: var(--grad-accent) !important;
  border: none !important;
}
.pricing-pastel-green .btn-primary:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-2px);
}

.pricing-pastel-purple {
  background-color: #F5ECFC;
  border-color: #E8D0FA;
}
.pricing-pastel-purple:hover {
  background-color: #ECD9FC;
  border-color: #DCB3FD;
}
.pricing-pastel-purple h5 {
  color: #7C3AED !important;
}
.pricing-pastel-purple .btn-outline-navy {
  color: #7C3AED;
  border-color: #7C3AED;
}
.pricing-pastel-purple .btn-outline-navy:hover {
  background-color: #7C3AED;
  border-color: #7C3AED;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.15);
}

.price-value {
  font-family: var(--font-headers);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.pricing-list li {
  padding: 0.65rem 0;
  font-size: 0.95rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
}

.pricing-list li.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
}

.pricing-list li svg {
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* FAQ Custom Accordion */
.faq-accordion .accordion-item {
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  border-radius: 14px !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.faq-accordion .accordion-item:hover {
  border-color: rgba(13, 110, 253, 0.2);
  box-shadow: var(--shadow-md);
}

.faq-accordion .accordion-button {
  font-family: var(--font-headers);
  font-weight: 600;
  color: var(--secondary);
  background: transparent;
  padding: 1.25rem 1.5rem;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  border-bottom: 1px solid var(--border-color);
}

.faq-accordion .accordion-button::after {
  background-size: 1rem;
  transition: transform 0.3s;
}

.faq-accordion .accordion-body {
  padding: 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Contact Form Input Effects */
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  color: var(--primary);
}

#contact .form-floating > label,
#contact .form-floating > label::after {
  background-color: transparent !important;
  background: transparent !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

#contact .form-floating > .form-control:focus ~ label,
#contact .form-floating > .form-select:focus ~ label,
#contact .form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: #60A5FA !important;
  background-color: transparent !important;
}

#contact .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
}

#contact .form-select option {
  background-color: #0F172A !important;
  color: #FFFFFF !important;
}


.form-control, .form-select {
  border-radius: 12px;
  border: 1.5px solid var(--border-color);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  transition: var(--transition-fast);
  color: var(--text-main);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15);
}

.form-floating > .form-control {
  height: 60px;
}

.form-floating > textarea.form-control {
  height: auto;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.contact-info-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 1.25rem;
  flex-shrink: 0;
}

/* Footer styling */
.footer-title {
  font-family: var(--font-headers);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
  color: #FFFFFF;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

.social-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  margin-right: 0.5rem;
  transition: var(--transition-fast);
  text-decoration: none !important;
}

.social-circle:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* Custom CSS/SVG ERP Dashboard Graph elements styling */
.chart-bar-wrap {
  display: flex;
  align-items: flex-end;
  height: 120px;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.chart-bar {
  flex-grow: 1;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background: var(--grad-primary);
  position: relative;
  transition: height 1s ease-in-out;
}

.chart-bar-accent {
  background: var(--grad-accent);
}

.chart-bar::after {
  content: attr(data-label);
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Testimonials custom navigation */
.carousel-indicators-custom [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--text-muted);
  opacity: 0.3;
  margin: 0 4px;
}

.carousel-indicators-custom .active {
  background-color: var(--primary);
  opacity: 1;
  width: 24px;
  border-radius: 10px;
  transition: var(--transition-fast);
}

/* Rating Stars */
.star-rating {
  color: #FBBF24;
  margin-bottom: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .display-font {
    font-size: 2.25rem !important;
  }
  .stat-number {
    font-size: 2.25rem;
  }
}

/* Official App Store & Play Store Badges */
.app-badge-btn {
  display: inline-flex;
  align-items: center;
  background-color: #000000;
  color: #FFFFFF !important;
  border: 1px solid #A6A6A6;
  border-radius: 8px;
  padding: 5px 14px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  min-width: 145px;
  height: 48px;
  box-shadow: var(--shadow-sm);
}

.app-badge-btn:hover {
  background-color: #111111;
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.app-badge-icon {
  margin-right: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.app-badge-sub {
  font-size: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #94A3B8;
  font-family: var(--font-body);
}

.app-badge-title {
  font-size: 13.5px;
  font-weight: 700;
  font-family: var(--font-body);
  color: #FFFFFF;
}

/* Workflow & Automation Redesign */
.workflow-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem 0;
}

.workflow-connector {
  position: absolute;
  left: 23px;
  top: 15px;
  bottom: 15px;
  width: 2px;
  border-left: 2px dashed var(--border-color);
  z-index: 1;
}

.workflow-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  z-index: 2;
  transition: var(--transition-smooth);
}

.workflow-step:hover {
  transform: translateX(6px);
  border-color: rgba(13, 110, 253, 0.2);
  box-shadow: var(--shadow-md);
}

.workflow-step-active {
  border-left: 4px solid var(--primary);
  background: linear-gradient(90deg, rgba(13, 110, 253, 0.01) 0%, #FFFFFF 100%);
  border-color: rgba(13, 110, 253, 0.15) rgba(13, 110, 253, 0.15) rgba(13, 110, 253, 0.15) var(--primary);
}

.workflow-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--border-color);
  border: 2px solid var(--bg-white);
  box-shadow: 0 0 0 2px var(--border-color);
  margin-top: 6px;
  flex-shrink: 0;
  z-index: 3;
}

.workflow-step-active .workflow-dot {
  background-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary);
  animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
  0% { box-shadow: 0 0 0 0px rgba(13, 110, 253, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(13, 110, 253, 0); }
  100% { box-shadow: 0 0 0 0px rgba(13, 110, 253, 0); }
}

.workflow-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: var(--bg-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.workflow-step-active .workflow-icon-wrap {
  background-color: rgba(13, 110, 253, 0.08);
  color: var(--primary);
}

.workflow-step-content {
  flex-grow: 1;
}

/* Mobile Push Notification Mockup Styling */
.notification-container {
  background-image: linear-gradient(135deg, #E0C3FC 0%, #8EC5FC 100%);
  padding: 24px 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

.notification-banner {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 16px;
  padding: 12px 14px;
  width: 100%;
  max-width: 220px;
  box-shadow: 0 8px 24px rgba(31, 38, 135, 0.08);
  color: #1E293B;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: all 0.3s ease;
}

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

.notification-app-info {
  display: flex;
  align-items: center;
  gap: 6px;
}

.notification-app-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  object-fit: cover;
}

.notification-app-name {
  font-size: 9px;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.notification-time {
  font-size: 8px;
  color: #64748B;
}

.notification-title {
  font-size: 11px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 2px;
  text-align: left;
}

.notification-body {
  font-size: 10px;
  color: #334155;
  line-height: 1.35;
  margin-bottom: 0;
  text-align: left;
}


/* Testimonials Bento Grid */
.bento-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .bento-testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .bento-testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.testimonial-bento-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.testimonial-bento-card::before {
  content: '"';
  position: absolute;
  top: -15px;
  right: 15px;
  font-size: 8rem;
  font-family: var(--font-headers);
  font-weight: 800;
  color: rgba(13, 110, 253, 0.04);
  line-height: 1;
  pointer-events: none;
}

.testimonial-bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(13, 110, 253, 0.2);
  box-shadow: var(--shadow-md);
}

.testimonial-bento-card.highlighted-card {
  grid-column: span 1;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.02) 0%, rgba(34, 197, 94, 0.02) 100%);
  border-color: rgba(13, 110, 253, 0.15);
}

@media (min-width: 992px) {
  .testimonial-bento-card.highlighted-card {
    grid-row: span 2;
    justify-content: center;
  }
}

.testimonial-bento-card .text-content {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.avatar-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headers);
  font-weight: 700;
  font-size: 14px;
  color: #FFFFFF;
  flex-shrink: 0;
}

.avatar-blue { background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%); }
.avatar-green { background: linear-gradient(135deg, #10B981 0%, #047857 100%); }
.avatar-amber { background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%); }
.avatar-purple { background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%); }
.avatar-indigo { background: linear-gradient(135deg, #6366F1 0%, #4338CA 100%); }
.avatar-pink { background: linear-gradient(135deg, #EC4899 0%, #BE185D 100%); }

.testimonial-user-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.testimonial-user-name {
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

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

.testimonial-badge-verified {
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  color: #22C55E;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 3px;
}

/* Premium Native Phone Mockup Content Styles */
.phone-status-bar {
  height: 38px;
  background: transparent;
  z-index: 15;
  position: relative;
  padding-top: 12px !important;
}

.status-time {
  font-size: 8.5px;
  font-weight: 600;
  color: #475569;
  font-family: var(--font-headers);
  letter-spacing: -0.1px;
}

.status-icons {
  color: #475569;
}

.phone-app-header {
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.app-avatar-initials {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981 0%, #047857 100%);
  color: #FFFFFF;
  font-size: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.attendance-ring-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.attendance-svg-ring {
  transform: rotate(-90deg);
}

.attendance-svg-ring .ring-fg-success {
  stroke-dasharray: 0, 100;
  animation: fill-attendance-ring 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.3s;
}

@keyframes fill-attendance-ring {
  to { stroke-dasharray: 96.5, 100; }
}

/* Dashboard Action Tiles Grid */
.app-dashboard-tile {
  border-radius: 14px;
  padding: 12px 8px;
  text-align: center;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.25s ease;
  cursor: pointer;
  background: #FFFFFF;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.app-dashboard-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(15, 23, 42, 0.06);
  border-color: rgba(13, 110, 253, 0.2);
}

.tile-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  transition: transform 0.2s ease;
}

.app-dashboard-tile:hover .tile-icon-wrap {
  transform: scale(1.1);
}

.tile-title {
  font-size: 8.5px;
  font-weight: 600;
  color: var(--secondary);
}

.tile-blue .tile-icon-wrap { background: rgba(13, 110, 253, 0.08); color: #0D6EFD; }
.tile-blue:hover { border-color: rgba(13, 110, 253, 0.2); }

.tile-green .tile-icon-wrap { background: rgba(34, 197, 94, 0.08); color: #22C55E; }
.tile-green:hover { border-color: rgba(34, 197, 94, 0.2); }

.tile-purple .tile-icon-wrap { background: rgba(168, 85, 247, 0.08); color: #A855F7; }
.tile-purple:hover { border-color: rgba(168, 85, 247, 0.2); }

.tile-amber .tile-icon-wrap { background: rgba(245, 158, 11, 0.08); color: #D97706; }
.tile-amber:hover { border-color: rgba(245, 158, 11, 0.2); }

/* Phone Bottom Nav Bar Styling */
.app-bottom-nav {
  height: 52px;
  box-shadow: 0 -4px 15px rgba(15, 23, 42, 0.04);
  z-index: 20;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  background-color: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(10px);
}

.nav-item-mock {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #94A3B8;
  cursor: pointer;
  font-size: 7.5px;
  font-weight: 600;
  transition: all 0.2s ease;
  flex: 1;
}

.nav-item-mock svg {
  margin-bottom: 3px;
  transition: transform 0.2s ease;
}

.nav-item-mock:hover svg {
  transform: translateY(-1px);
}

.nav-item-mock.active {
  color: #0D6EFD;
}





/* ==========================================================================
   SVG Animations (Overview Section Graphics)
   ========================================================================== */
@keyframes float-desktop {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-3px); }
  100% { transform: translateY(0px); }
}
@keyframes float-ios {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0px); }
}
@keyframes float-android {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-3.5px); }
  100% { transform: translateY(0px); }
}
@keyframes float-cloud {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-2px); }
  100% { transform: translateY(0px); }
}
@keyframes march {
  to {
    stroke-dashoffset: -20;
  }
}
.node-desktop { animation: float-desktop 5s ease-in-out infinite; }
.node-ios { animation: float-ios 6s ease-in-out infinite; }
.node-android { animation: float-android 5.5s ease-in-out infinite; }
.node-cloud { animation: float-cloud 4.5s ease-in-out infinite; }
.data-flow-line {
  stroke-dasharray: 4, 3;
  animation: march 1.2s linear infinite;
}


/* ==========================================================================
   Extracted Inline Styles
   ========================================================================== */
.sms-inline-0 { font-size: 1.15rem; }
.sms-inline-1 { height: 5px; border-radius: 10px; background-color: #F1F5F9; border: none; }
.sms-inline-2 { color: var(--secondary); }
.sms-inline-3 { position: absolute; width: 80px; height: 80px; background: rgba(13, 110, 253, 0.15); filter: blur(25px); border-radius: 50%; top: -20px; right: -20px; pointer-events: none; }
.sms-inline-4 { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 8px; font-weight: 700; color: #1E293B; }
.sms-inline-5 { font-size: 8px; font-weight: 500; }
.sms-inline-6 { height: 85%; }
.sms-inline-7 { font-size: 7px; }
.sms-inline-8 { font-size: 0.9rem; }
.sms-inline-9 { background: radial-gradient(circle at 10% 20%, rgba(15, 23, 42, 1) 0%, rgba(30, 41, 59, 1) 90%); position: relative; overflow: hidden; }
.sms-inline-10 { height: 40%; }
.sms-inline-11 { background: rgba(255, 255, 255, 0.08); }
.sms-inline-12 { height: 60%; }
.sms-inline-13 { color: #60A5FA; }
.sms-inline-14 { position: relative; width: 44px; height: 44px; }
.sms-inline-15 { opacity: 0.85; }
.sms-inline-16 { font-size: 15px; margin-top: 2px; }
.sms-inline-17 { background: radial-gradient(circle at 90% 80%, rgba(15, 23, 42, 1) 0%, rgba(15, 23, 42, 0.95) 90%); }
.sms-inline-18 { font-size: 9px; }
.sms-inline-19 { font-size: 6.5px; padding: 2px 6px; }
.sms-inline-20 { color: var(--primary); }
.sms-inline-21 { width: 8px; height: 8px; }
.sms-inline-22 { position: absolute; width: 300px; height: 300px; background: rgba(34, 197, 94, 0.08); filter: blur(80px); border-radius: 50%; bottom: 50px; right: -50px; pointer-events: none; }
.sms-inline-23 { max-height: 350px; }
.sms-inline-24 { font-size: 13px; margin-top: 2px; }
.sms-inline-25 { font-size: 14px; }
.sms-inline-26 { background-color: #0B1222; }
.sms-inline-27 { font-size: 12px; font-weight: 700; color: #1E293B; }
.sms-inline-28 { font-size: 7px; padding: 2px 6px; }
.sms-inline-29 { color-scheme: dark; }
.sms-inline-30 { font-size: 7.5px; }
.sms-inline-31 { font-size: 11px; }
.sms-inline-32 { height: 380px; width: 250px; border-radius: 24px; border-width: 6px; }
.sms-inline-33 { font-size: 10px; line-height: 1.3; }
.sms-inline-34 { font-size: 8px; border-radius: 6px; box-shadow: none; }
.sms-inline-35 { height: 95%; }
.sms-inline-36 { font-size: 8px; }
.sms-inline-37 { font-size: 7px; font-weight: 600; padding: 3px 6px; }
.sms-inline-38 { background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.sms-inline-39 { font-size: 8px; font-weight: 500; margin-left: 4px; }
.sms-inline-40 { width: 95%; border-radius: 10px; }
.sms-inline-41 { position: absolute; width: 400px; height: 400px; background: rgba(13, 110, 253, 0.1); filter: blur(100px); border-radius: 50%; top: -50px; left: -50px; pointer-events: none; }
.sms-inline-42 { line-height: 1.15; font-size: calc(1.8rem + 2vw); }
.sms-inline-43 { height: 120px; }
.sms-inline-44 { color: var(--accent); }
.sms-inline-45 { max-width: 320px; }
.sms-inline-46 { font-size: 8.5px; border-radius: 8px; }
.sms-inline-47 { height: 75%; }
.sms-inline-48 { width: 16px; height: 16px; font-size: 6px; }
.sms-inline-49 { font-size: 7px; font-weight: 500; }
.sms-inline-50 { font-size: 11px; margin-top: 2px; }
.sms-inline-51 { font-size: 7px; font-weight: 500; letter-spacing: 0.5px; }
.sms-inline-52 { background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%); }

/* Custom Premium Toast Notification */
.custom-toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  pointer-events: none;
}

.custom-toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  animation: toast-slide-in 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.custom-toast.success {
  border-left: 4px solid #10b981;
}

.custom-toast.error {
  border-left: 4px solid #ef4444;
}

.toast-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.custom-toast.success .toast-icon-wrap {
  background: rgba(16, 185, 129, 0.1);
}

.custom-toast.error .toast-icon-wrap {
  background: rgba(239, 68, 68, 0.1);
}

.toast-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.toast-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
}

.toast-message {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: #94a3b8;
  margin-top: 2px;
}

.toast-close-btn {
  background: transparent;
  border: none;
  color: #64748b;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.toast-close-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

@keyframes toast-slide-in {
  from {
    transform: translateX(100%) translateY(0);
    opacity: 0;
  }
  to {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
}
