/* KeKomo V1 - Clean Modern Design with Perfect Contrast */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --kekomo-primary: #6800ff;
  --kekomo-secondary: #00ffce;
  --kekomo-black: #000000;
  --kekomo-white: #ffffff;
  --kekomo-gray-50: #fafafa;
  --kekomo-gray-100: #f5f5f5;
  --kekomo-gray-900: #171717;
  --kekomo-text: #1a1a1a;
  --kekomo-text-light: #525252;
}

* {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  color: var(--kekomo-text);
  background: var(--kekomo-white);
  line-height: 1.6;
  font-size: 18px;
}

/* Fixed Header */
.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.navbar-fixed .navbar {
  padding: 1rem 0;
}

/* Hero Section - Clean White Background with Animated Gradient */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--kekomo-white);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(104, 0, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 206, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
  z-index: 0;
}

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

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--kekomo-black);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out;
}

.hero .highlight {
  color: var(--kekomo-primary);
  position: relative;
}

.hero .highlight::after {
  content: '';
  position: absolute;
  bottom: 0.15em;
  left: 0;
  right: 0;
  height: 0.2em;
  background: linear-gradient(90deg, var(--kekomo-secondary) 0%, var(--kekomo-primary) 100%);
  opacity: 0.4;
  z-index: -1;
  transform: skewX(-12deg);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.6;
  }
}

.hero p {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--kekomo-text-light);
  margin-bottom: 3rem;
  max-width: 600px;
  line-height: 1.7;
  font-weight: 400;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* CTA Button - High Contrast with Glow Effect */
.cta-primary {
  display: inline-block;
  padding: 20px 48px;
  background: var(--kekomo-primary);
  color: var(--kekomo-white);
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(104, 0, 255, 0.25), 0 0 0 0 rgba(104, 0, 255, 0.4);
  letter-spacing: -0.01em;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  position: relative;
}

.cta-primary:hover {
  background: #5a00e6;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(104, 0, 255, 0.4), 0 0 30px rgba(104, 0, 255, 0.3);
  color: var(--kekomo-white);
}

.cta-primary:active {
  transform: translateY(-1px) scale(1);
}

.cta-header {
  padding: 12px 28px;
  font-size: 0.9375rem;
  font-weight: 700;
}

/* Secondary CTA Button - Transparent with Border */
.cta-secondary {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: var(--kekomo-primary);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  border: 2px solid var(--kekomo-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.01em;
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-secondary:hover {
  background: rgba(104, 0, 255, 0.05);
  border-color: var(--kekomo-primary);
  color: var(--kekomo-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(104, 0, 255, 0.15);
}

.cta-secondary:active {
  transform: translateY(0);
}

/* Badge */
.badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--kekomo-gray-100);
  color: var(--kekomo-text);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid #e5e5e5;
}

.badge-modern .accent {
  color: var(--kekomo-primary);
}

/* Features Section */
.features {
  padding: 100px 0;
  background: var(--kekomo-gray-50);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 255, 206, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite;
  z-index: 0;
}

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

.features h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--kekomo-black);
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.features .subtitle {
  font-size: 1.25rem;
  color: var(--kekomo-text-light);
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  background: var(--kekomo-white);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.feature-card:hover {
  border-color: var(--kekomo-primary);
  box-shadow: 0 12px 40px rgba(104, 0, 255, 0.15), 0 0 20px rgba(104, 0, 255, 0.1);
  transform: translateY(-6px) scale(1.02);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--kekomo-black);
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 1.125rem;
  color: var(--kekomo-text-light);
  line-height: 1.7;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(104, 0, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--kekomo-primary);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--kekomo-primary);
  color: var(--kekomo-white);
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 8px 20px rgba(104, 0, 255, 0.3);
}

.feature-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) saturate(100%) invert(27%) sepia(96%) saturate(7499%) hue-rotate(260deg) brightness(102%) contrast(101%);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon img {
  filter: brightness(0) invert(1);
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: var(--kekomo-white);
  position: relative;
  overflow: hidden;
}

.pricing::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(104, 0, 255, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
  z-index: 0;
}

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

.pricing-card {
  background: var(--kekomo-white);
  border: 2px solid #e5e5e5;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  transition: all 0.3s ease;
  height: 100%;
}

.pricing-card:hover {
  border-color: var(--kekomo-primary);
  box-shadow: 0 16px 50px rgba(104, 0, 255, 0.2), 0 0 30px rgba(104, 0, 255, 0.1);
  transform: translateY(-8px) scale(1.03);
}

.pricing-card.featured {
  border-color: var(--kekomo-primary);
  background: linear-gradient(135deg, rgba(104, 0, 255, 0.05) 0%, rgba(0, 255, 206, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(104, 0, 255, 0.1) 50%, transparent 70%);
  animation: shine 3s infinite;
  z-index: 0;
}

.pricing-card.featured > * {
  position: relative;
  z-index: 1;
}

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

.pricing-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--kekomo-black);
  margin-bottom: 1rem;
}

.price-main {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--kekomo-primary);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 1.5rem 0;
}

.price-period {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--kekomo-text-light);
  margin-left: 0.15rem;
}

.price-tax {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--kekomo-text-light);
  opacity: 0.75;
  margin-left: 0.25rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.pricing-card ul li {
  padding: 0.75rem 0;
  font-size: 1.125rem;
  color: var(--kekomo-text);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-card ul li::before {
  content: '✓';
  color: var(--kekomo-secondary);
  font-weight: 700;
  font-size: 1.25rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--kekomo-black);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--kekomo-text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Annual Payment Badge */
.annual-payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(104, 0, 255, 0.1) 0%, rgba(0, 255, 206, 0.1) 100%);
  border: 1.5px solid var(--kekomo-primary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--kekomo-primary);
  letter-spacing: -0.01em;
}

.annual-badge-icon {
  font-size: 1rem;
  line-height: 1;
}

.annual-badge-text {
  line-height: 1.2;
}

/* Testimonials - Redesigned */
.testimonial {
  background: var(--kekomo-white);
  padding: 100px 0;
}

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

.testimonial-card {
  background: var(--kekomo-gray-50);
  padding: 2.5rem;
  border-radius: 16px;
  border-left: 4px solid var(--kekomo-primary);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out both;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 12px 40px rgba(104, 0, 255, 0.15), 0 0 20px rgba(0, 255, 206, 0.1);
  border-left-color: var(--kekomo-secondary);
  border-left-width: 5px;
}

.testimonial-card blockquote {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--kekomo-text);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--kekomo-black);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.testimonial-card .role {
  color: var(--kekomo-text-light);
  font-size: 0.9375rem;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
}

.testimonial-rating svg {
  width: 16px;
  height: 16px;
  fill: var(--kekomo-secondary);
}

/* Footer */
.footer {
  background: var(--kekomo-black);
  color: var(--kekomo-white);
  padding: 4rem 0 2rem;
}

.footer a {
  color: var(--kekomo-white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 1;
  color: var(--kekomo-secondary);
}

.footer a:hover i {
  color: var(--kekomo-secondary) !important;
}

/* Hero Image with Glow Effect */
.hero-image-wrapper {
  position: relative;
  display: inline-block;
}

.hero-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(104, 0, 255, 0.2) 0%, transparent 70%);
  border-radius: 16px;
  filter: blur(40px);
  z-index: -1;
  animation: pulse-glow 3s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.hero-image {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.02);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Registration Benefits */
.registration-benefits {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--kekomo-primary);
  font-weight: 600;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.benefit-icon {
  font-size: 1rem;
  display: inline-block;
}

.benefit-text {
  color: var(--kekomo-primary);
}

/* FAQ Section - Beautiful Accordion */
.faq-section {
  background: var(--kekomo-gray-50);
  position: relative;
  overflow: hidden;
}

.faq-accordion {
  background: var(--kekomo-white);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

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

.faq-item:hover {
  background: rgba(104, 0, 255, 0.02);
}

.faq-question {
  width: 100%;
  padding: 1.75rem 2rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--kekomo-black);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.faq-question::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, var(--kekomo-primary) 0%, var(--kekomo-secondary) 100%);
  transition: width 0.3s ease;
  z-index: 0;
}

.faq-question:hover::before {
  width: 4px;
}

.faq-question:hover {
  color: var(--kekomo-primary);
  padding-left: 2.5rem;
}

.faq-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(104, 0, 255, 0.1);
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--kekomo-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.faq-question:hover .faq-icon {
  background: var(--kekomo-primary);
  color: var(--kekomo-white);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 12px rgba(104, 0, 255, 0.3);
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--kekomo-primary);
  color: var(--kekomo-white);
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(104, 0, 255, 0.3);
}

.faq-text {
  flex: 1;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  background: rgba(104, 0, 255, 0.02);
  padding: 0;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 1000px;
  padding: 0;
}

.faq-answer-content {
  padding: 1.5rem 2.5rem 2rem 2.5rem;
  animation: fadeInDown 0.3s ease-out;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.25s ease 0.05s, transform 0.25s ease 0.05s;
}

.faq-question[aria-expanded="true"] + .faq-answer .faq-answer-content {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer-content p {
  font-size: 1.0625rem;
  color: var(--kekomo-text-light);
  line-height: 1.8;
  margin: 0;
}

.faq-link {
  color: var(--kekomo-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.faq-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--kekomo-secondary);
  transition: width 0.3s ease;
}

.faq-link:hover {
  color: var(--kekomo-primary);
}

.faq-link:hover::after {
  width: 100%;
}

.faq-contact {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--kekomo-white);
  border-radius: 16px;
  border: 1px solid #e5e5e5;
}

.faq-contact p {
  font-size: 1.125rem;
  color: var(--kekomo-text);
  margin-bottom: 1rem;
}

.faq-contact-link {
  display: inline-block;
  padding: 12px 32px;
  background: var(--kekomo-primary);
  color: var(--kekomo-white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(104, 0, 255, 0.2);
}

.faq-contact-link:hover {
  background: #5a00e6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(104, 0, 255, 0.3);
  color: var(--kekomo-white);
}

/* Utilities */
.text-primary { color: var(--kekomo-primary) !important; }
.text-secondary { color: var(--kekomo-secondary) !important; }
.bg-primary { background: var(--kekomo-primary) !important; }
.bg-secondary { background: var(--kekomo-secondary) !important; }

/* Spacing */
.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .cta-primary {
    padding: 18px 36px;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  /* Mobile: benefits in column */
  .registration-benefits {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .benefit-item {
    width: 100%;
    justify-content: center;
  }
  
  /* Mobile header button - smaller size */
  .cta-header-mobile {
    padding: 8px 20px;
    font-size: 0.8125rem;
  }
}

/* 404 Error Page */
.error-404-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--kekomo-white);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.error-404-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

.error-number-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.error-number {
  font-size: clamp(8rem, 20vw, 15rem);
  font-weight: 900;
  line-height: 1;
  color: var(--kekomo-primary);
  letter-spacing: -0.05em;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  text-shadow: 0 0 40px rgba(104, 0, 255, 0.3);
}

.error-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(104, 0, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.error-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--kekomo-black);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.error-description {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--kekomo-text-light);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 3rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.error-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.error-cta {
  min-width: 200px;
}

.error-link {
  color: var(--kekomo-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.error-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--kekomo-secondary);
  transition: width 0.3s ease;
}

.error-link:hover {
  color: var(--kekomo-primary);
}

.error-link:hover::after {
  width: 100%;
}

/* Animated Background Elements */
.error-bg-element {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.error-bg-1 {
  top: 10%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(104, 0, 255, 0.08) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.error-bg-2 {
  bottom: 20%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 255, 206, 0.06) 0%, transparent 70%);
  animation: float 15s ease-in-out infinite reverse;
}

.error-bg-3 {
  top: 50%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(104, 0, 255, 0.05) 0%, transparent 70%);
  animation: float 25s ease-in-out infinite;
}

@media (max-width: 768px) {
  .error-404-section {
    padding: 120px 0 60px;
    min-height: auto;
  }
  
  .error-actions {
    width: 100%;
  }
  
  .error-cta {
    width: 100%;
  }
}