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

:root {
  --primary-color: #7c6fd6;
  --primary-dark: #6a5ec4;
  --primary-light: #9890e3;
  --text-dark: #1a1a1a;
  --text-gray: #666666;
  --text-light: #999999;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Bar */
.top-bar {
  background-color: var(--bg-light);
  border-bottom: 1px solid #e5e5e5;
  padding: 12px 0;
  font-size: 14px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 30px;
}

.top-bar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s;
}

.top-bar-link:hover {
  color: var(--primary-color);
}

.top-bar-link svg {
  stroke: currentColor;
}

.top-bar-right {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--text-gray);
  transition: color 0.3s;
}

.social-icon:hover {
  color: var(--primary-color);
}

/* Header */
.header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
}

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

.logo {
  text-decoration: none;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
  margin: 0 auto;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

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

.dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 10px;
  margin-left: 2px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  list-style: none;
  margin-top: 15px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s;
}

.dropdown-menu li a:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

.btn-primary {
  background-color: var(--white);
  color: var(--primary-color);
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(124, 111, 214, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  display: inline-block;
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary-color);
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  display: inline-block;
}

.btn-white:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 15px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 3px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(124, 111, 214, 0.9) 0%, rgba(106, 94, 196, 0.9) 100%),
              url('https://storage.googleapis.com/campaign-website-images/10010/pexels-photo-5453828.jpeg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(2px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 35px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--white);
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  background: var(--white);
  padding: 35px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  stroke: var(--white);
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 15px;
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-label {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-label.center {
  text-align: center;
}

.section-label.white {
  color: var(--white);
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.section-title.center {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title.white {
  color: var(--white);
}

.about-stat {
  display: flex;
  gap: 20px;
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: var(--shadow);
}

.stat-icon {
  flex-shrink: 0;
}

.stat-icon svg {
  stroke: var(--primary-color);
}

.about-stat h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}

.about-text {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 15px;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CTA Banner */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(124, 111, 214, 0.95) 0%, rgba(106, 94, 196, 0.95) 100%),
              url('https://storage.googleapis.com/campaign-website-images/10010/pexels-photo-3768131.jpeg');
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(2px);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: 600px;
}

.cta-label {
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.cta-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 35px;
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: var(--white);
}

.services-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.service-card-enhanced {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}

.service-card-enhanced:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-card-enhanced.health-card:hover {
  border-color: rgba(124, 111, 214, 0.3);
}

.service-card-enhanced.life-card:hover {
  border-color: rgba(255, 107, 53, 0.3);
}

.service-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card-enhanced:hover .service-image img {
  transform: scale(1.1);
}

.service-card-enhanced:hover .service-overlay {
  opacity: 1;
}

.service-content-enhanced {
  padding: 40px 35px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon-enhanced {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(124, 111, 214, 0.3);
  transition: all 0.3s;
}

.service-card-enhanced.life-card .service-icon-enhanced {
  background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.service-card-enhanced:hover .service-icon-enhanced {
  transform: scale(1.1) rotate(5deg);
}

.service-icon-enhanced svg {
  stroke: var(--white);
}

.service-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.service-card-enhanced.life-card .service-label {
  background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
}

.service-content-enhanced h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
  line-height: 1.3;
}

.service-content-enhanced p {
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 24px;
  font-size: 15px;
}

.service-highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.service-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
}

.service-highlights svg {
  stroke: var(--primary-color);
  flex-shrink: 0;
}

.service-card-enhanced.life-card .service-highlights svg {
  stroke: #FF6B35;
}

.service-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 20px rgba(124, 111, 214, 0.3);
  align-self: flex-start;
  margin-top: auto;
}

.service-card-enhanced.life-card .service-action {
  background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.service-action:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(124, 111, 214, 0.4);
}

.service-card-enhanced.life-card .service-action:hover {
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.service-action svg {
  transition: transform 0.3s;
}

.service-action:hover svg {
  transform: translateX(5px);
}

/* Process Section */
.process {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(124, 111, 214, 0.92) 0%, rgba(106, 94, 196, 0.92) 100%),
              url('https://storage.googleapis.com/campaign-website-images/10010/pexels-photo-3184325.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.process-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(2px);
}

.process > .container {
  position: relative;
  z-index: 1;
}

.process-subtitle {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-size: 15px;
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.process-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(124, 111, 214, 0.3);
}

.process-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.process-icon svg {
  stroke: var(--white);
}

.process-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.process-card p {
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 15px;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--white);
  padding: 35px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

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

.testimonial-text {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 15px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.testimonial-author p {
  font-size: 14px;
  color: var(--text-light);
}

/* Final CTA Section */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.final-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 35px;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 50px;
}

.footer-col h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--primary-light);
}

.contact-info li {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 15px;
}

.contact-info strong {
  display: block;
  color: var(--white);
  margin-bottom: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social .social-icon {
  color: rgba(255, 255, 255, 0.7);
}

.footer-social .social-icon:hover {
  color: var(--primary-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .services-grid-enhanced {
    grid-template-columns: 1fr;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    gap: 15px;
  }

  .top-bar-left {
    flex-direction: column;
    gap: 10px;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
    transform: translateX(0);
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    height: 500px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .section-title {
    font-size: 32px;
  }

  .cta-title {
    font-size: 32px;
  }

  .final-cta-content h2 {
    font-size: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.enhanced-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 50px;
}

.enhanced-feature-card {
  background: var(--white);
  padding: 45px 35px;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.enhanced-feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.enhanced-feature-card:hover::after {
  transform: scaleX(1);
}

.enhanced-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
  border-color: var(--primary-purple);
}

.enhanced-feature-badge {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  position: relative;
}

.enhanced-feature-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  filter: blur(15px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.enhanced-feature-card:hover .enhanced-feature-badge::before {
  opacity: 0.6;
}

.enhanced-feature-card:hover .enhanced-feature-badge {
  transform: scale(1.1) rotate(-5deg);
}

.enhanced-feature-badge svg {
  stroke: var(--white);
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1;
}

.enhanced-feature-number {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 60px;
  font-weight: 800;
  color: rgba(124, 58, 237, 0.08);
  line-height: 1;
  transition: all 0.4s ease;
}

.enhanced-feature-card:hover .enhanced-feature-number {
  color: rgba(124, 58, 237, 0.15);
  transform: scale(1.1);
}

.enhanced-feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.3;
}

.enhanced-feature-card p {
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 24px;
}

.enhanced-feature-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 20px;
  border-top: 2px solid var(--light-gray);
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .enhanced-features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .enhanced-feature-card {
    padding: 40px 30px;
  }

  .enhanced-feature-number {
    font-size: 50px;
    top: 25px;
    right: 25px;
  }
}

/* Toast Notification */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--primary-purple);
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10000;
  animation: slideIn 0.3s ease;
}

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

.toast.hide {
  animation: slideOut 0.3s ease forwards;
}

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

/* Button Loading State */
button.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

button.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
