@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0A0B1E;
  --bg-secondary: #080919;
  --bg-card: rgba(255, 255, 255, 0.05);
  --border-color: rgba(255, 255, 255, 0.1);
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --indigo-400: #818cf8;
  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;
  --blue-400: #60a5fa;
  --blue-600: #2563eb;
  --purple-400: #c084fc;
  --emerald-400: #34d399;
  --emerald-300: #6ee7b7;
  --amber-400: #fbbf24;
  --radius: 0.75rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* ===== Utility Classes ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.gradient-text {
  background: linear-gradient(to right, var(--indigo-400), var(--purple-400), var(--blue-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-btn {
  background: linear-gradient(to right, var(--indigo-600), var(--blue-600));
  color: white;
  border: none;
  transition: all 0.3s ease;
}

.gradient-btn:hover {
  background: linear-gradient(to right, var(--indigo-500), #3b82f6);
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}

.section-padding {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section-padding { padding: 7rem 0; }
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(10, 11, 30, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 768px) {
  .navbar-inner { height: 80px; padding: 0 2rem; }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(to right, var(--indigo-600), var(--blue-600));
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-cta { display: flex; align-items: center; gap: 0.75rem; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(to right, var(--indigo-600), var(--blue-600));
  color: white;
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(to right, var(--indigo-500), #3b82f6);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: rgba(99, 102, 241, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  padding: 0.875rem 2rem;
}

/* Mobile menu toggle */
.mobile-toggle {
  display: block;
  background: none;
  color: white;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-toggle { display: none; }
}

.mobile-menu {
  display: none;
  background: rgba(10, 11, 30, 0.95);
  backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem;
}

.mobile-menu.open {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  margin-bottom: 0.25rem;
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 0.75rem;
}

/* ===== Main Content ===== */
main {
  padding-top: 64px;
}

@media (min-width: 768px) {
  main { padding-top: 80px; }
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg .blob-1 {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 384px;
  height: 384px;
  background: rgba(79, 70, 229, 0.2);
  border-radius: 50%;
  filter: blur(128px);
}

.hero-bg .blob-2 {
  position: absolute;
  bottom: 25%;
  right: 25%;
  width: 384px;
  height: 384px;
  background: rgba(37, 99, 235, 0.15);
  border-radius: 50%;
  filter: blur(128px);
}

.hero-bg .dot-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiMyMDIwNDAiIGZpbGwtb3BhY2l0eT0iMC4xNSI+PGNpcmNsZSBjeD0iMSIgY3k9IjEiIHI9IjEiLz48L2c+PC9nPjwvc3ZnPg==");
  opacity: 0.4;
}

.hero-content {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1rem 7rem;
}

@media (min-width: 768px) {
  .hero-content { padding: 8rem 2rem 9rem; }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--indigo-400);
}

.hero-badge span {
  font-size: 0.875rem;
  color: #a5b4fc;
  font-weight: 500;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 3.75rem; }
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 36rem;
  margin-top: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1rem;
  margin-top: 2rem;
}

.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-image {
  position: relative;
  display: none;
}

@media (min-width: 1024px) {
  .hero-image { display: block; }
}

.hero-image .glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(79, 70, 229, 0.2), rgba(37, 99, 235, 0.2));
  border-radius: 1rem;
  filter: blur(16px);
}

.hero-image img {
  position: relative;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.1);
}

/* ===== Section Styles ===== */
.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.section-badge.indigo {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
}

.section-badge.blue {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #93c5fd;
}

.section-badge.emerald {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--emerald-300);
}

.section-badge svg {
  width: 16px;
  height: 16px;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title { font-size: 2.25rem; }
}

.section-desc {
  color: var(--text-secondary);
}

/* ===== Two Column Layout ===== */
.two-col {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}

.two-col .image-wrapper {
  position: relative;
}

.two-col .image-wrapper .glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(79, 70, 229, 0.1), rgba(37, 99, 235, 0.1));
  border-radius: 1rem;
  filter: blur(16px);
}

.two-col .image-wrapper img {
  position: relative;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
}

.two-col .text-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.two-col .text-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .two-col .text-content h2 { font-size: 2.25rem; }
}

.two-col .text-content p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== Feature Cards ===== */
.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}

.feature-card {
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-4px);
}

.feature-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--indigo-600), var(--blue-600));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== Why Choose Us List ===== */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.5rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.checklist-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checklist-icon svg {
  width: 16px;
  height: 16px;
  color: var(--indigo-400);
}

.checklist-item span {
  color: #cbd5e1;
  font-size: 1.125rem;
}

/* ===== Pricing Cards ===== */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
  position: relative;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.highlight {
  background: linear-gradient(to bottom, rgba(79, 70, 229, 0.2), rgba(37, 99, 235, 0.1));
  border: 2px solid rgba(99, 102, 241, 0.4);
  box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.1);
}

@media (min-width: 1024px) {
  .pricing-card.highlight { transform: scale(1.05); }
  .pricing-card.highlight:hover { transform: scale(1.05) translateY(-4px); }
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--indigo-600), var(--blue-600));
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.pricing-name.lg {
  font-size: 1.5rem;
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-price {
  margin: 1.5rem 0;
}

.pricing-price .amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.pricing-price.lg .amount {
  font-size: 3rem;
}

.pricing-price .period {
  color: var(--text-muted);
  font-size: 1rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-features.lg {
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-feature svg {
  width: 16px;
  height: 16px;
  color: var(--indigo-400);
  flex-shrink: 0;
}

.pricing-feature.lg svg {
  width: 20px;
  height: 20px;
}

.pricing-feature span {
  color: #cbd5e1;
  font-size: 0.875rem;
}

/* ===== CTA Section ===== */
.cta-wrapper {
  position: relative;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(79, 70, 229, 0.1), rgba(37, 99, 235, 0.1));
  border-radius: 1.5rem;
  filter: blur(16px);
}

.cta-card {
  position: relative;
  padding: 3rem;
  border-radius: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-card { padding: 4rem; }
}

.cta-card h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .cta-card h2 { font-size: 2.25rem; }
}

.cta-card p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
}

/* ===== Footer ===== */
.footer {
  background: #070816;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .footer-inner { padding: 4rem 2rem; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.footer-heading {
  color: white;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--indigo-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

.footer-bottom p {
  color: #475569;
  font-size: 0.875rem;
}

.footer-bottom .disclaimer {
  font-size: 0.75rem;
}

/* ===== Contact Form ===== */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 2fr; }
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  padding: 1.5rem;
  border-radius: var(--radius);
}

.contact-info-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(to right, var(--indigo-600), var(--blue-600));
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.contact-info-card h3 {
  color: white;
  font-weight: 600;
}

.contact-info-card a {
  color: var(--indigo-400);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.contact-info-card a:hover {
  color: #a5b4fc;
}

.contact-info-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.contact-form-card {
  padding: 2rem;
  border-radius: 1rem;
}

.contact-form-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  color: white;
  font-family: inherit;
  font-size: 0.875rem;
  transition: border-color 0.2s ease;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #475569;
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(99, 102, 241, 0.5);
}

.form-textarea {
  resize: none;
  min-height: 120px;
}

/* ===== Legal Pages ===== */
.legal-content {
  max-width: 48rem;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.legal-card {
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.legal-card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.legal-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.legal-card ul li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.legal-card a {
  color: var(--indigo-400);
  transition: color 0.2s ease;
}

.legal-card a:hover {
  color: #a5b4fc;
}

/* ===== About Page ===== */
.values-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

.value-card {
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--indigo-600), var(--blue-600));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Vision card */
.vision-card {
  padding: 2.5rem;
  border-radius: 1rem;
}

.vision-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.vision-header svg {
  width: 32px;
  height: 32px;
  color: var(--indigo-400);
}

.vision-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.vision-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.125rem;
}

/* ===== Disclaimer Box ===== */
.disclaimer-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  max-width: 42rem;
  margin: 3rem auto 0;
}

.disclaimer-box svg {
  width: 20px;
  height: 20px;
  color: var(--amber-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.disclaimer-box p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
}

.disclaimer-box strong {
  color: var(--amber-400);
}

/* ===== Toast Notification ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(to right, var(--indigo-600), var(--blue-600));
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 100;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ===== 404 Page ===== */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.not-found h1 {
  font-size: 6rem;
  font-weight: 700;
}

.not-found h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-top: 1.5rem;
}

.not-found p {
  color: var(--text-secondary);
  max-width: 28rem;
  margin: 1.5rem auto;
}

/* ===== Background Sections ===== */
.bg-secondary {
  background-color: var(--bg-secondary);
}

/* ===== SVG Icons inline ===== */
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 24px; height: 24px; }