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

:root {
  --primary: #7C3AED;
  --primary-dark: #5B21B6;
  --primary-light: #A78BFA;
  --secondary: #06B6D4;
  --secondary-dark: #0891B2;
  --secondary-light: #67E8F9;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --bg-dark: #0F0A1E;
  --bg-card: #1A1033;
  --bg-surface: #241748;
  --text-primary: #F9FAFB;
  --text-secondary: #C4B5FD;
  --text-muted: #8B7EC8;
  --border-subtle: rgba(124, 58, 237, 0.25);
  --glow-purple: 0 0 30px rgba(124, 58, 237, 0.4);
  --glow-cyan: 0 0 30px rgba(6, 182, 212, 0.4);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --gradient-primary: linear-gradient(135deg, #7C3AED 0%, #06B6D4 100%);
  --gradient-dark: linear-gradient(135deg, #0F0A1E 0%, #1A1033 100%);
  --gradient-card: linear-gradient(145deg, #1A1033 0%, #241748 100%);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── CUSTOM SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--secondary-light) 100%);
}

/* ─── STICKY HEADER ─── */
#main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 10, 30, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

#main-header.scrolled {
  background: rgba(15, 10, 30, 0.99);
  box-shadow: 0 4px 32px rgba(124, 58, 237, 0.15);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo img {
  height: 36px;
  width: auto;
}

.header-logo span {
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

/* ─── NAVIGATION ─── */
.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  position: relative;
  letter-spacing: 0.01em;
}

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

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(124, 58, 237, 0.12);
}

.nav-link:hover::after {
  width: 70%;
}

.nav-link.active {
  color: var(--primary-light);
  background: rgba(124, 58, 237, 0.15);
}

.nav-link.active::after {
  width: 70%;
}

/* ─── MOBILE MENU ─── */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-primary);
  font-size: 1.25rem;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.mobile-menu-toggle:hover {
  background: rgba(124, 58, 237, 0.3);
  border-color: var(--primary);
}

.mobile-menu {
  background: rgba(15, 10, 30, 0.98);
  border-top: 1px solid var(--border-subtle);
  padding: 16px 20px;
}

.mobile-menu .nav-link {
  display: block;
  padding: 10px 14px;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 11px 24px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background var(--transition-fast);
}

.btn:hover::before {
  background: rgba(255, 255, 255, 0.08);
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.55);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(124, 58, 237, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-light);
  border: 1.5px solid var(--primary);
  box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
  background: rgba(124, 58, 237, 0.15);
  border-color: var(--primary-light);
  color: #fff;
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: #1a1a1a;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}

.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.5);
}

.btn-cyan {
  background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.35);
}

.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.5);
}

.btn-sm {
  font-size: 0.8125rem;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}

.btn-lg {
  font-size: 1.0625rem;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
}

/* ─── FORMS ─── */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9375rem;
  padding: 11px 16px;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  font-family: inherit;
}

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

.form-control:focus {
  border-color: var(--primary);
  background: rgba(26, 16, 51, 0.9);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2), 0 0 16px rgba(124, 58, 237, 0.15);
}

.form-control:hover:not(:focus) {
  border-color: rgba(124, 58, 237, 0.5);
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%238B7EC8'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-error {
  color: #F87171;
  font-size: 0.8125rem;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-success-msg {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #6EE7B7;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.9375rem;
}

/* ─── CARDS ─── */
.card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.5), rgba(6, 182, 212, 0.5), transparent);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 24px rgba(124, 58, 237, 0.2);
  border-color: rgba(124, 58, 237, 0.4);
}

.card-feature {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--transition-base);
}

.card-feature:hover {
  border-color: var(--primary);
  box-shadow: var(--glow-purple);
  transform: translateY(-6px);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 18px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  transition: all var(--transition-base);
}

.card-feature:hover .card-icon {
  background: rgba(124, 58, 237, 0.3);
  box-shadow: var(--glow-purple);
  transform: scale(1.1) rotate(-3deg);
}

.card-icon.cyan {
  background: rgba(6, 182, 212, 0.15);
  border-color: rgba(6, 182, 212, 0.3);
}

.card-feature:hover .card-icon.cyan {
  background: rgba(6, 182, 212, 0.3);
  box-shadow: var(--glow-cyan);
}

/* ─── PRICING CARDS ─── */
.pricing-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
  cursor: default;
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--glow-purple);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-price {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 12px 0 4px;
}

.pricing-period {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 6px 0;
}

.pricing-feature-item i {
  color: var(--secondary);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ─── HERO ─── */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.hero-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}

/* ─── GRID LAYOUTS ─── */
.grid-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.grid-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: start;
}

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

/* ─── SECTION STYLES ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  background: rgba(6, 182, 212, 0.1);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

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

/* ─── DIVIDERS / SEPARATORS ─── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
  margin: 0;
}

.glow-line {
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  width: 60px;
  margin: 12px auto;
}

/* ─── ACCORDION ─── */
.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.accordion-item.open {
  border-color: rgba(124, 58, 237, 0.5);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
  user-select: none;
  transition: background var(--transition-fast);
  gap: 12px;
}

.accordion-header:hover {
  background: rgba(124, 58, 237, 0.08);
}

.accordion-header .accordion-icon {
  color: var(--primary-light);
  font-size: 1.125rem;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.accordion-item.open .accordion-header .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border-subtle);
}

.accordion-content p {
  padding-top: 14px;
}

/* ─── STATS / COUNTERS ─── */
.stat-card {
  text-align: center;
  padding: 24px 20px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ─── BADGES & TAGS ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

.badge-purple {
  background: rgba(124, 58, 237, 0.15);
  color: var(--primary-light);
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.badge-cyan {
  background: rgba(6, 182, 212, 0.15);
  color: var(--secondary-light);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.badge-amber {
  background: rgba(245, 158, 11, 0.15);
  color: #FCD34D;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-green {
  background: rgba(16, 185, 129, 0.15);
  color: #6EE7B7;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* ─── TESTIMONIALS ─── */
.testimonial-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(124, 58, 237, 0.2);
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 20px;
  font-style: italic;
}

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

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

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

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

/* ─── BLOG CARDS ─── */
.blog-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card), 0 0 20px rgba(124, 58, 237, 0.18);
  border-color: rgba(124, 58, 237, 0.4);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(124, 58, 237, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary-light);
}

.blog-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 10px;
  transition: color var(--transition-fast);
}

.blog-card:hover .blog-card-title {
  color: var(--primary-light);
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ─── LOADING SPINNER ─── */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(124, 58, 237, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.spinner-sm {
  width: 20px;
  height: 20px;
  border-width: 2px;
}

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

/* ─── GLOWING DOT ANIMATIONS ─── */
.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7);
  animation: pulse-glow 2s infinite;
  display: inline-block;
}

@keyframes pulse-glow {
  0%   { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(6, 182, 212, 0); }
  100% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0); }
}

/* ─── GRID OVERLAY DECORATION ─── */
.grid-decoration {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* ─── TECH TAG CLOUD ─── */
.tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.tech-tag:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
  background: rgba(124, 58, 237, 0.1);
}

/* ─── PROGRESS BARS ─── */
.progress-bar {
  height: 6px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 50px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 50px;
  transition: width 1s ease;
}

/* ─── ALERT / NOTICE BOXES ─── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.alert-info {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  color: var(--secondary-light);
}

.alert-warning {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #FCD34D;
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #6EE7B7;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #FCA5A5;
}

/* ─── COOKIE BANNER ─── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 6, 26, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-subtle);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.5);
  padding: 20px 24px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

#cookie-banner.hidden-banner {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

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

#cookie-banner .cookie-text {
  flex: 1;
  min-width: 260px;
}

#cookie-banner .cookie-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#cookie-banner .cookie-desc {
  font-size: 0.8125rem;
  color: #c4b5fd;
  line-height: 1.5;
}

#cookie-banner .cookie-desc a {
  color: #7dd3fc;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#cookie-banner .cookie-desc a:hover {
  color: #bae6fd;
}

#cookie-banner .cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

#cookie-banner .btn-cookie-accept {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

#cookie-banner .btn-cookie-accept:hover {
  box-shadow: var(--glow-purple);
  transform: translateY(-1px);
}

#cookie-banner .btn-cookie-decline {
  background: transparent;
  color: #8b7ec8;
  border: 1px solid rgba(139, 126, 200, 0.4);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

#cookie-banner .btn-cookie-decline:hover {
  color: #c4b5fd;
  border-color: rgba(196, 181, 253, 0.5);
}

/* ─── FOOTER ─── */
#main-footer {
  background: rgba(10, 6, 26, 0.98);
  border-top: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.footer-logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  padding: 4px 0;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

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

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 10px;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 16px 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: rgba(124, 58, 237, 0.25);
  border-color: var(--primary);
  color: var(--primary-light);
  transform: translateY(-2px);
}

/* ─── PAGE HEADER / INNER HERO ─── */
.page-hero {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.1) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 60px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.025em;
}

.page-hero-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── FEATURE LIST ─── */
.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.feature-list-item:last-child {
  border-bottom: none;
}

.feature-list-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-list-content h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.feature-list-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── TABLE ─── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.data-table th {
  background: var(--bg-surface);
  color: var(--text-primary);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
  vertical-align: top;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td {
  background: rgba(124, 58, 237, 0.05);
}

/* ─── UTILITY ANIMATIONS ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease both;
}

.animate-fade-in {
  animation: fadeIn 0.5s ease both;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.shimmer-text {
  background: linear-gradient(90deg, var(--primary-light) 0%, var(--secondary-light) 40%, var(--primary-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--primary-light);
}

.breadcrumb-sep {
  color: rgba(124, 58, 237, 0.5);
  font-size: 0.75rem;
}

.breadcrumb-current {
  color: var(--text-secondary);
}

/* ─── CONTACT PAGE ─── */
.contact-info-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color var(--transition-fast);
}

.contact-info-card:hover {
  border-color: rgba(124, 58, 237, 0.4);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-info-value a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-info-value a:hover {
  color: var(--secondary-light);
}

/* ─── POLICY PAGES ─── */
.policy-section h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}

.policy-section h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--primary-light);
  margin: 22px 0 10px;
}

.policy-section p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.policy-section ul, .policy-section ol {
  margin: 10px 0 18px 20px;
}

.policy-section li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 6px;
}

.policy-section a {
  color: var(--secondary-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-section a:hover {
  color: var(--primary-light);
}

/* ─── SUPPORT / FAQ ─── */
.support-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.support-category:hover {
  border-color: var(--primary);
  background: rgba(124, 58, 237, 0.1);
}

.support-category-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--primary-light);
  flex-shrink: 0;
}

.support-category-title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.support-category-count {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .grid-features {
    grid-template-columns: 1fr;
  }

  .grid-pricing {
    grid-template-columns: 1fr;
  }

  .grid-blog {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 28px 22px;
  }

  .card {
    padding: 20px;
  }

  #cookie-banner .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  #cookie-banner .cookie-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .btn-lg {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .data-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

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

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

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

/* ─── FOCUS ACCESSIBILITY ─── */
:focus-visible {
  outline: 2px solid var(--primary-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── SELECTION ─── */
::selection {
  background: rgba(124, 58, 237, 0.3);
  color: var(--text-primary);
}