@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');
@import url('https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Rajdhani:wght@400;500;600;700&display=swap');

:root {
  --primary-dark: #0a0e27;
  --primary-slate: #1a1f3a;
  --accent-amber: #f59e0b;
  --accent-orange: #ff6b35;
  --accent-crimson: #dc2626;
  --steel-gray: #64748b;
  --silver: #cbd5e1;
  --frost: #f1f5f9;
  --pure-white: #ffffff;
  --gradient-fire: linear-gradient(135deg, #ff6b35 0%, #dc2626 100%);
  --gradient-metal: linear-gradient(135deg, #64748b 0%, #334155 100%);
  --gradient-ember: linear-gradient(135deg, #f59e0b 0%, #ff6b35 50%, #dc2626 100%);
  --shadow-sm: 0 2px 8px rgba(255, 107, 53, 0.1);
  --shadow-md: 0 4px 16px rgba(255, 107, 53, 0.15);
  --shadow-lg: 0 8px 32px rgba(255, 107, 53, 0.2);
  --shadow-glow: 0 0 20px rgba(245, 158, 11, 0.3);
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--primary-dark);
  color: var(--frost);
  line-height: 1.6;
  overflow-x: hidden;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.1);
  transition: all var(--transition-smooth);
}

.header.scrolled {
  background: rgba(10, 14, 39, 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--gradient-ember);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-ember);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.logo:hover::after {
  transform: scaleX(1);
}

.nav-link {
  position: relative;
  color: var(--silver);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem;
  transition: all var(--transition-smooth);
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-ember);
  transform: translateX(-50%);
  transition: width var(--transition-smooth);
}

.nav-link:hover {
  color: var(--accent-amber);
}

.nav-link:hover::before {
  width: 80%;
}

.nav-link.active {
  color: var(--accent-orange);
}

.nav-link.active::before {
  width: 80%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--accent-amber);
  border-radius: 2px;
  transition: all var(--transition-smooth);
  transform-origin: center;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(26, 31, 58, 0.98);
  backdrop-filter: blur(16px);
  padding: 5rem 2rem 2rem;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
  border-left: 1px solid rgba(245, 158, 11, 0.2);
  z-index: 999;
}

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

.mobile-menu .nav-link {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(245, 158, 11, 0.1);
  font-size: 1.1rem;
}

.mobile-menu .nav-link:hover {
  transform: translateX(8px);
  padding-left: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px;
  transition: all var(--transition-smooth);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-fire);
  color: var(--pure-white);
  box-shadow: var(--shadow-md);
}

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

.btn-primary:active {
  transform: translateY(0);
}

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

.btn-secondary:hover {
  background: var(--accent-orange);
  color: var(--pure-white);
  border-color: var(--accent-orange);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--silver);
  border: 2px solid var(--steel-gray);
}

.btn-outline:hover {
  background: var(--gradient-metal);
  color: var(--pure-white);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent-amber);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(245, 158, 11, 0.2);
  box-shadow: var(--shadow-sm);
  transform: scale(1.05);
}

.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-slate) 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.section {
  padding: 5rem 1rem;
  position: relative;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: var(--gradient-ember);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  text-align: center;
  color: var(--steel-gray);
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  background: rgba(26, 31, 58, 0.6);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(245, 158, 11, 0.1);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-ember);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  z-index: 0;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 158, 11, 0.3);
}

.card:hover::before {
  opacity: 0.05;
}

.card-content {
  position: relative;
  z-index: 1;
}

.card-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-fire);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-glow);
}

.card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-amber);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-description {
  color: var(--silver);
  line-height: 1.7;
  font-size: 0.95rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  color: var(--accent-amber);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: rgba(26, 31, 58, 0.6);
  border: 2px solid rgba(245, 158, 11, 0.2);
  border-radius: 8px;
  color: var(--frost);
  font-size: 1rem;
  transition: all var(--transition-smooth);
  font-family: 'Outfit', sans-serif;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--steel-gray);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent-orange);
  background: rgba(26, 31, 58, 0.8);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--accent-orange);
}

.form-checkbox label {
  color: var(--silver);
  cursor: pointer;
  font-size: 0.9rem;
}

.accordion {
  background: rgba(26, 31, 58, 0.6);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid rgba(245, 158, 11, 0.1);
  transition: all var(--transition-smooth);
}

.accordion:hover {
  border-color: rgba(245, 158, 11, 0.2);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  background: rgba(26, 31, 58, 0.4);
  transition: all var(--transition-smooth);
  user-select: none;
}

.accordion-header:hover {
  background: rgba(26, 31, 58, 0.6);
}

.accordion-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-amber);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.accordion-icon {
  color: var(--accent-orange);
  font-size: 1.5rem;
  transition: transform var(--transition-smooth);
}

.accordion.active .accordion-icon {
  transform: rotate(180deg);
}

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

.accordion.active .accordion-content {
  max-height: 500px;
}

.accordion-body {
  padding: 1.5rem;
  color: var(--silver);
  line-height: 1.7;
  border-top: 1px solid rgba(245, 158, 11, 0.1);
}

.pricing-card {
  background: rgba(26, 31, 58, 0.6);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 2.5rem;
  border: 2px solid rgba(245, 158, 11, 0.1);
  transition: all var(--transition-smooth);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-ember);
  opacity: 0.05;
  transition: left 0.6s ease;
}

.pricing-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--accent-orange);
  box-shadow: var(--shadow-glow);
}

.pricing-card:hover::before {
  left: 0;
}

.pricing-card.featured {
  border-color: var(--accent-orange);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-fire);
  color: var(--pure-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-amber);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.pricing-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gradient-ember);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.pricing-period {
  color: var(--steel-gray);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: var(--silver);
  border-bottom: 1px solid rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '\eb7a';
  font-family: 'remixicon';
  color: var(--accent-orange);
  font-size: 1.25rem;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  background: rgba(26, 31, 58, 0.4);
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.1);
  transition: all var(--transition-smooth);
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-ember);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--steel-gray);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-card {
  background: rgba(26, 31, 58, 0.6);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(245, 158, 11, 0.1);
  transition: all var(--transition-smooth);
  position: relative;
}

.testimonial-card::before {
  content: '\ee07';
  font-family: 'remixicon';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 3rem;
  color: var(--accent-orange);
  opacity: 0.2;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: var(--shadow-lg);
}

.testimonial-content {
  position: relative;
  z-index: 1;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-fire);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--pure-white);
  font-size: 1.25rem;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  color: var(--accent-amber);
  font-size: 1.1rem;
}

.testimonial-role {
  color: var(--steel-gray);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 31, 58, 0.98);
  backdrop-filter: blur(16px);
  padding: 1.5rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  color: var(--silver);
  line-height: 1.6;
  min-width: 250px;
}

.cookie-text a {
  color: var(--accent-orange);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.cookie-text a:hover {
  color: var(--accent-amber);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(245, 158, 11, 0.1);
  border-top-color: var(--accent-orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 2rem auto;
}

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

.pulse-animation {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.scale-in {
  animation: scaleIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.glow-effect {
  position: relative;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.6);
  }
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-fire);
  border-radius: 6px;
  border: 2px solid var(--primary-dark);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-ember);
}

.badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  background: var(--gradient-fire);
  color: var(--pure-white);
  box-shadow: var(--shadow-sm);
}

.badge-outline {
  background: transparent;
  border: 2px solid var(--accent-orange);
  color: var(--accent-orange);
  box-shadow: none;
}

.divider {
  height: 2px;
  background: var(--gradient-ember);
  margin: 3rem 0;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  to {
    left: 200%;
  }
}

.image-overlay {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.image-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-fire);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  z-index: 1;
}

.image-overlay:hover::before {
  opacity: 0.3;
}

.image-overlay img {
  transition: transform 0.6s ease;
  display: block;
  width: 100%;
  height: auto;
}

.image-overlay:hover img {
  transform: scale(1.1);
}

.tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent-amber);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0.25rem;
  transition: all var(--transition-smooth);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.tag:hover {
  background: rgba(245, 158, 11, 0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(26, 31, 58, 0.6);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-ember);
  border-radius: 4px;
  transition: width 0.6s ease;
  position: relative;
  overflow: hidden;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: progressShine 2s infinite;
}

@keyframes progressShine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip-text {
  visibility: hidden;
  background: rgba(26, 31, 58, 0.95);
  color: var(--frost);
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  position: absolute;
  z-index: 1000;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  white-space: nowrap;
  font-size: 0.85rem;
  border: 1px solid rgba(245, 158, 11, 0.2);
  box-shadow: var(--shadow-md);
}

.tooltip-text::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(26, 31, 58, 0.95);
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.alert {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 4px solid;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border-color: #22c55e;
  color: #86efac;
}

.alert-warning {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--accent-amber);
  color: #fcd34d;
}

.alert-error {
  background: rgba(220, 38, 38, 0.1);
  border-color: var(--accent-crimson);
  color: #fca5a5;
}

.alert-info {
  background: rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
  color: #93c5fd;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: rgba(26, 31, 58, 0.98);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 9999;
  border: 1px solid rgba(245, 158, 11, 0.2);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

.modal-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-amber);
  text-transform: uppercase;
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--steel-gray);
  font-size: 2rem;
  cursor: pointer;
  transition: all var(--transition-smooth);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.modal-close:hover {
  color: var(--accent-orange);
  background: rgba(245, 158, 11, 0.1);
  transform: rotate(90deg);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.breadcrumb-item {
  color: var(--steel-gray);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.breadcrumb-item:hover {
  color: var(--accent-amber);
}

.breadcrumb-item.active {
  color: var(--accent-orange);
}

.breadcrumb-separator {
  color: var(--steel-gray);
  margin: 0 0.5rem;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: rgba(26, 31, 58, 0.4);
  border-radius: 8px;
  border-left: 3px solid var(--accent-orange);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all var(--transition-smooth);
}

.feature-list li:hover {
  transform: translateX(8px);
  background: rgba(26, 31, 58, 0.6);
  box-shadow: var(--shadow-sm);
}

.feature-list li::before {
  content: '\eb7a';
  font-family: 'remixicon';
  color: var(--accent-orange);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 31, 58, 0.6);
  border-radius: 50%;
  color: var(--accent-amber);
  font-size: 1.25rem;
  transition: all var(--transition-smooth);
  border: 1px solid rgba(245, 158, 11, 0.1);
}

.social-link:hover {
  background: var(--gradient-fire);
  color: var(--pure-white);
  transform: translateY(-4px) rotate(5deg);
  box-shadow: var(--shadow-glow);
}

.footer {
  background: var(--primary-slate);
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  padding: 3rem 1rem 1.5rem;
  margin-top: 5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-family: 'Rajdhani', sans-serif;
  color: var(--accent-amber);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-section p,
.footer-section a {
  color: var(--silver);
  font-size: 0.9rem;
  line-height: 1.8;
  transition: color var(--transition-fast);
}

.footer-section a:hover {
  color: var(--accent-orange);
}

.footer-links {
  list-style: none;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 158, 11, 0.1);
  text-align: center;
  color: var(--steel-gray);
  font-size: 0.9rem;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-fire);
  color: var(--pure-white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .pricing-price {
    font-size: 2.5rem;
  }

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }

  .modal {
    width: 95%;
    padding: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3rem 0.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .card {
    padding: 1.5rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }
}