@charset "UTF-8";

/* ===== DIGIMENU FRONTEND STYLES - ULTRA MODERN VERSION ===== */

/* Modern CSS Custom Properties */
:root {
  /* Brand Colors */
  --brand-primary: #6366f1;
  --brand-secondary: #8b5cf6;
  --brand-accent: #f59e0b;

  /* Semantic Colors */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-info: #06b6d4;

  /* Neutral Colors */
  --color-white: #ffffff;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;

  /* Modern Gradients */
  --gradient-brand: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --gradient-warning: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-glass: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );

  /* Advanced Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.3);
  --shadow-glow-success: 0 0 30px rgba(16, 185, 129, 0.3);
  --shadow-glow-warning: 0 0 30px rgba(245, 158, 11, 0.3);

  /* Typography */
  --font-family-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  --font-family-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;

  /* Spacing & Sizing */
  --border-radius-sm: 0.375rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
  --border-radius-2xl: 1.5rem;
  --border-radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s ease-out;
  --transition-normal: 0.3s ease-out;
  --transition-slow: 0.5s ease-out;

  /* Z-index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* ===== BASE STYLES ===== */
* {
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-gray-700);
  background: var(--color-white);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-display);
  margin: 0;
  word-break: break-word;
  color: var(--color-gray-900);
  font-weight: 700;
}

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

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: all var(--transition-normal);
}

a:hover {
  color: var(--brand-secondary);
}

.main-content {
  padding-top: 0;
  position: relative;
  z-index: 1;
}

/* ===== MODERN NAVIGATION ===== */
.navbar {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.95) !important;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
}

.navbar-brand {
  font-weight: 800;
  color: var(--brand-primary) !important;
  text-decoration: none;
  font-size: 1.25rem;
}

.nav-link {
  font-weight: 500;
  color: var(--color-gray-700) !important;
  transition: all var(--transition-normal);
  position: relative;
  padding: 0.5rem 0.75rem !important;
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 50%;
  background: var(--brand-primary);
  transition: all var(--transition-normal);
  transform: translateX(-50%);
}

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

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

/* ===== HERO SECTION - ULTRA MODERN ===== */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 2rem 0;
  z-index: 1;
}

/* Hero Background Pattern */
.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  animation: pattern-float 20s ease-in-out infinite;
}

@keyframes pattern-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

/* Floating Shapes */
.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  animation: float-shape 8s ease-in-out infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 25%;
  animation-delay: 6s;
}

@keyframes float-shape {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) translateX(10px) rotate(180deg);
    opacity: 0.6;
  }
}

.hero-content {
  position: relative;
  z-index: 100;
  background: transparent;
}

/* ===== HERO ELEMENTS ===== */

/* Trust Badge */
.trust-badge {
  margin-bottom: 2rem;
}

.badge-container {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  gap: 0.75rem;
}

.trust-icon {
  font-size: 1.25rem;
}

.trust-text {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.trust-verified {
  background: #10b981;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Hero Typography */
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: white;
  margin-bottom: 2rem;
}

.hero-highlight {
  color: #fbbf24;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.brand-name {
  color: #60a5fa;
  text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 2rem;
}

.text-accent {
  color: #fbbf24;
  font-weight: 700;
}

.text-success {
  color: #34d399;
  font-weight: 600;
}

/* Hero Stats */
.hero-stats-container {
  margin-bottom: 3rem;
}

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

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.stat-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.stat-plus,
.stat-unit {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  display: inline;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-top: 0.25rem;
}

.stat-primary .stat-icon {
  color: #60a5fa;
}
.stat-success .stat-icon {
  color: #34d399;
}
.stat-warning .stat-icon {
  color: #fbbf24;
}

/* Hero Features List */
.hero-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  transition: all 0.3s ease;
}

.feature-highlight:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateX(5px);
}

.feature-check {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

.feature-text {
  flex: 1;
  color: white;
  font-size: 1rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-text strong {
  font-weight: 600;
}

.feature-tag {
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.feature-tag.new {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

.feature-tag.popular {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.feature-tag.free {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
}

/* Hero Actions */
.hero-actions {
  margin-bottom: 2rem;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-hero {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-primary {
  background: rgba(255, 255, 255, 0.95);
  color: #374151;
}

.btn-hero-primary:hover {
  background: white;
  transform: translateY(-3px);
  color: #374151;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  color: white;
}

.btn-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.btn-hero-secondary .btn-icon {
  background: rgba(255, 255, 255, 0.2);
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.btn-text strong {
  font-size: 1.1rem;
  font-weight: 600;
}

.btn-text small {
  font-size: 0.875rem;
  opacity: 0.7;
}

/* Trust Indicators */
.hero-trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-start;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-item i {
  color: #34d399;
  font-size: 1rem;
}

/* ===== HERO VISUAL CONTAINER ===== */
.hero-visual-container {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

/* Dashboard Mockup */
.hero-dashboard-mockup {
  position: relative;
  z-index: 55;
  width: 100%;
  max-width: 500px;
}

.mockup-screen {
  background: white;
  border-radius: var(--border-radius-2xl);
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
}

.mockup-header {
  background: var(--color-gray-50);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-gray-200);
}

.mockup-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red {
  background: #ef4444;
}
.dot.yellow {
  background: #f59e0b;
}
.dot.green {
  background: #10b981;
}

.mockup-title {
  font-weight: 600;
  color: var(--color-gray-700);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.mockup-content {
  display: flex;
  height: 400px;
}

.mockup-sidebar {
  width: 200px;
  background: var(--color-gray-50);
  padding: 1rem;
  border-right: 1px solid var(--color-gray-200);
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--border-radius-md);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-gray-600);
  transition: all var(--transition-fast);
}

.sidebar-item.active {
  background: var(--brand-primary);
  color: white;
}

.sidebar-item i {
  width: 16px;
  text-align: center;
}

.item-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 0.7rem;
  padding: 0.125rem 0.375rem;
  border-radius: var(--border-radius-full);
  margin-left: auto;
}

.sidebar-item:not(.active) .item-badge {
  background: var(--color-gray-300);
  color: var(--color-gray-600);
}

.mockup-main {
  flex: 1;
  padding: 1.5rem;
  background: white;
  display: flex;
  flex-direction: column;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.main-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gray-800);
  margin: 0;
}

.status-summary {
  display: flex;
  gap: 1rem;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
}

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

.status-item.offline {
  color: var(--color-gray-500);
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.screen-item {
  background: var(--color-gray-50);
  border-radius: var(--border-radius-lg);
  padding: 1rem;
  border: 2px solid var(--color-gray-200);
  transition: all var(--transition-fast);
}

.screen-item.online {
  border-color: var(--color-success);
  background: rgba(16, 185, 129, 0.05);
}

.screen-item.offline {
  border-color: var(--color-gray-300);
}

.screen-preview {
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: var(--border-radius-md);
  margin-bottom: 0.75rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-preview {
  width: 90%;
  height: 90%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--border-radius-sm);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
}

.menu-header {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--color-gray-800);
  margin-bottom: 0.25rem;
  text-align: center;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  flex: 1;
}

.menu-item {
  height: 0.25rem;
  background: var(--color-gray-300);
  border-radius: 1px;
}

.menu-item:nth-child(1) {
  width: 80%;
}
.menu-item:nth-child(2) {
  width: 60%;
}
.menu-item:nth-child(3) {
  width: 70%;
}

.offline-preview {
  background: var(--color-gray-400);
  flex-direction: column;
  gap: 0.25rem;
}

.offline-icon {
  color: white;
  font-size: 1rem;
  opacity: 0.7;
}

.offline-text {
  color: white;
  font-size: 0.6rem;
  opacity: 0.8;
}

.screen-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.screen-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gray-700);
}

.screen-status {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.7rem;
  font-weight: 500;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-dot.online {
  background: var(--color-success);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.status-dot.offline {
  background: var(--color-gray-400);
}

/* Floating Notification Cards */
.floating-notification {
  position: absolute;
  top: 20px;
  right: -50px;
  background: white;
  border-radius: var(--border-radius-xl);
  padding: 1rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 200px;
  z-index: 60;
  animation: float-notification 4s ease-in-out infinite;
  border: 1px solid var(--color-gray-200);
}

.floating-notification.success .notification-icon {
  color: var(--color-success);
  font-size: 1.25rem;
}

.notification-content {
  flex: 1;
}

.notification-title {
  font-weight: 600;
  color: var(--color-gray-800);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.notification-time {
  font-size: 0.75rem;
  color: var(--color-gray-500);
}

.floating-stats-card {
  position: absolute;
  bottom: 100px;
  left: -60px;
  background: var(--gradient-brand);
  color: white;
  border-radius: var(--border-radius-xl);
  padding: 1.25rem;
  box-shadow: var(--shadow-glow);
  text-align: center;
  min-width: 160px;
  z-index: 60;
  animation: float-stats 5s ease-in-out infinite;
}

.stats-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  opacity: 0.9;
}

.stats-amount {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.stats-period {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-bottom: 0.75rem;
}

.stats-trend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: var(--border-radius-sm);
}

.floating-device-status {
  position: absolute;
  bottom: 20px;
  right: -40px;
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  z-index: 60;
  animation: float-device 6s ease-in-out infinite;
  border: 1px solid var(--color-gray-200);
}

.device-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-gray-600);
}

.device-count {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gray-800);
  margin-bottom: 0.5rem;
}

.device-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-success);
  font-weight: 500;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-indicator.online {
  background: var(--color-success);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
  animation: pulse-indicator 2s ease-in-out infinite;
}

@keyframes pulse-indicator {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Floating Animations */
@keyframes float-notification {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-10px) translateX(5px);
  }
}

@keyframes float-stats {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) translateX(-5px) rotate(1deg);
  }
}

@keyframes float-device {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-8px) translateX(-3px);
  }
}

/* Hero Decoration */
.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  animation: float-decoration 12s ease-in-out infinite;
}

.circle-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.circle-2 {
  width: 80px;
  height: 80px;
  top: 70%;
  right: 10%;
  animation-delay: 4s;
}

.circle-3 {
  width: 60px;
  height: 60px;
  bottom: 40%;
  left: 15%;
  animation-delay: 8s;
}

@keyframes float-decoration {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) translateX(10px) rotate(180deg);
    opacity: 0.6;
  }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
  .hero-visual-container {
    height: 500px;
  }

  .mockup-content {
    height: 350px;
  }

  .floating-notification,
  .floating-stats-card,
  .floating-device-status {
    transform: scale(0.9);
  }
}

/* Tablets */
@media (max-width: 768px) {
  .hero-section {
    padding: 1rem 0;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    text-align: center;
  }

  .hero-stats-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .action-buttons {
    align-items: center;
  }

  .btn-hero {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-trust-indicators {
    justify-content: center;
    gap: 1rem;
  }

  .hero-visual-container {
    height: 400px;
    margin-top: 2rem;
  }

  .floating-notification,
  .floating-stats-card,
  .floating-device-status {
    display: none;
  }
}

/* Mobile Phones */
@media (max-width: 576px) {
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }

  .hero-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .badge-container {
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }

  .trust-text {
    font-size: 0.8rem;
  }

  .hero-stats-grid {
    gap: 0.5rem;
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 0.75rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .hero-features-list {
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .feature-highlight {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }

  .feature-text {
    font-size: 0.9rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .feature-tag {
    align-self: flex-start;
  }

  .btn-hero {
    padding: 0.875rem 1.25rem;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
  }

  .btn-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .btn-text strong {
    font-size: 1rem;
  }

  .btn-text small {
    font-size: 0.8rem;
  }

  .hero-trust-indicators {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .trust-item {
    font-size: 0.8rem;
  }

  .hero-visual-container {
    height: 300px;
    margin-top: 1rem;
  }

  .mockup-screen {
    transform: scale(0.8);
  }

  .floating-notification,
  .floating-stats-card,
  .floating-device-status {
    display: none;
  }
}

/* Extra Small Devices */
@media (max-width: 375px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-stats-container {
    margin-bottom: 2rem;
  }

  .hero-features-list {
    margin-bottom: 1.5rem;
  }

  .feature-highlight {
    padding: 0.5rem 0.75rem;
  }

  .feature-text {
    font-size: 0.85rem;
  }

  .btn-hero {
    padding: 0.75rem 1rem;
  }
}

/* ===== PRICING BANNER ===== */
.pricing-banner {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-bottom: 1px solid var(--color-gray-200);
  position: relative;
  padding: 2rem 0;
}

.pricing-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.pricing-highlight {
  background: white;
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-gray-200);
  position: relative;
  z-index: 2;
}

.pricing-item {
  padding: 1rem;
  text-align: center;
}

.pricing-main {
  padding: 1.5rem;
  background: var(--gradient-brand);
  color: white;
  border-radius: var(--border-radius-xl);
  position: relative;
  overflow: hidden;
}

.pricing-main::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  50% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
  100% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
}

.price-tag {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.price-currency {
  font-size: 1.25rem;
  font-weight: 600;
  margin-right: 0.25rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.price-period {
  font-size: 0.875rem;
  font-weight: 500;
  margin-left: 0.25rem;
  opacity: 0.9;
}

.price-note {
  font-size: 0.875rem;
}

/* ===== MODERN BUTTONS ===== */
.btn {
  font-weight: 600;
  border-radius: var(--border-radius-lg);
  padding: 0.875rem 1.75rem;
  transition: all var(--transition-normal);
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary {
  background: var(--gradient-brand);
  color: white;
}

.btn-primary:hover {
  background: var(--gradient-brand);
  color: white;
  box-shadow: var(--shadow-xl);
}

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

.btn-outline-primary:hover {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
}

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

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: white;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--border-radius-md);
}

/* ===== SECTIONS ===== */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  text-align: center;
  color: var(--color-gray-900);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-brand);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  margin-bottom: 2rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.6;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(99, 102, 241, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-primary);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-lg);
}

.feature-content {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-card h4 {
  color: var(--color-gray-900);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.feature-card p {
  color: var(--color-gray-600);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  flex: 1;
}

.feature-stats {
  margin-top: auto;
}

.stat-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid currentColor;
  opacity: 0.9;
}

/* Color variations for feature icons */
.bg-warning {
  background: var(--gradient-warning);
}
.bg-success {
  background: var(--gradient-success);
}
.bg-info {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}
.bg-primary {
  background: var(--gradient-brand);
}
.bg-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}
.bg-danger {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* ===== STEP CARDS ===== */
.step-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid transparent;
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  text-align: center;
  height: 100%;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--gradient-brand);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.6);
  }
}

.step-icon {
  font-size: 3rem;
  color: var(--brand-primary);
  margin-bottom: 1.5rem;
}

.step-card h4 {
  color: var(--color-gray-900);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.step-card p {
  color: var(--color-gray-600);
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-brand);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-primary);
}

.testimonial-stars {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--color-gray-600);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
}

.testimonial-card blockquote::before {
  content: '"';
  font-size: 4rem;
  color: var(--brand-primary);
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.3;
  font-family: serif;
}

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

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand-primary);
}

.testimonial-author strong {
  color: var(--color-gray-900);
  font-weight: 600;
  display: block;
}

.testimonial-author small {
  color: var(--color-gray-500);
  font-size: 0.875rem;
}

/* ===== TARGET CARDS ===== */
.target-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--color-gray-200);
  transition: all var(--transition-normal);
  padding: 2rem;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  height: 100%;
}

.target-card:hover {
  background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);
  border-color: var(--brand-secondary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.target-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-brand);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  animation: float 4s ease-in-out infinite;
  box-shadow: var(--shadow-lg);
}

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

.target-card h5 {
  color: var(--color-gray-900);
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.target-card p {
  color: var(--color-gray-600);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="b" cx="500" cy="500" r="500"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.05"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="500" cy="500" r="500" fill="url(%23b)"/></svg>');
  animation: float 8s ease-in-out infinite reverse;
}

/* ===== UTILITY CLASSES ===== */
.text-purple {
  color: var(--brand-secondary) !important;
}
.bg-purple {
  background-color: var(--brand-secondary) !important;
}
.shadow-custom {
  box-shadow: var(--shadow-xl);
}

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

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--brand-primary);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* ===== NAVBAR RESPONSIVE ===== */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
    padding-top: 1rem;
  }

  .nav-link {
    padding: 0.75rem 1rem !important;
    font-size: 1rem;
  }

  .navbar .btn-sm {
    margin-top: 0.5rem;
    width: 120px;
  }
}

@media (min-width: 992px) {
  .navbar-nav .nav-item {
    margin: 0 0.25rem;
  }

  .navbar-nav .nav-item:last-child {
    margin-right: 0;
  }
}

/* ===== HERO SECTION FIX ===== */
.hero-section .container {
  position: relative;
  z-index: 100;
}

.hero-section .row {
  position: relative;
  z-index: 100;
}

.hero-section .col-lg-6 {
  position: relative;
  z-index: 100;
}

/* Ensure no code snippets appear */
.hero-section * {
  box-sizing: border-box;
}

.hero-section pre,
.hero-section code {
  display: none !important;
}

/* Fix any potential overflow issues */
.hero-section {
  width: 100%;
  max-width: 100vw;
}

.hero-section .container {
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 576px) {
  .hero-section .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .hero-section .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .hero-section .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .hero-section .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .hero-section .container {
    max-width: 1320px;
  }
}
