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

body {
  font-family: "Inter", sans-serif;
  background: #0a0e27;
  color: #ffffff;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at top, rgba(88, 112, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(0, 191, 255, 0.1) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}

#starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Navigation Bar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(15, 20, 45, 0.95) 0%, rgba(25, 30, 60, 0.95) 100%);
  backdrop-filter: blur(30px) saturate(180%);
  border-bottom: 1px solid rgba(88, 112, 255, 0.3);
  z-index: 1000;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), 0 0 40px rgba(88, 112, 255, 0.1);
  padding: 1rem 0;
  opacity: 1 !important;
  visibility: visible !important;
  transition: all 0.3s ease;
}

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

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-shadow: 0 0 30px rgba(88, 112, 255, 0.6);
  transition: all 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
  text-shadow: 0 0 40px rgba(88, 112, 255, 0.8);
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(88, 112, 255, 0.5));
  transition: all 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 20px rgba(88, 112, 255, 0.8));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #ffffff;
  text-shadow: 0 0 15px rgba(88, 112, 255, 0.8);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #5870ff, #8b2be2);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 15px rgba(88, 112, 255, 0.6);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-login {
  background: rgba(88, 112, 255, 0.15);
  border: 1px solid rgba(88, 112, 255, 0.4);
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.nav-login:hover {
  background: rgba(88, 112, 255, 0.25);
  border-color: rgba(88, 112, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(88, 112, 255, 0.3);
}

.nav-signup {
  background: linear-gradient(135deg, #5870ff 0%, #8b2be2 100%);
  border: none;
  color: #ffffff;
  padding: 0.6rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(88, 112, 255, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-signup::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.nav-signup:hover::before {
  width: 300px;
  height: 300px;
}

.nav-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(88, 112, 255, 0.6);
}


/* Hero Section Styles */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-content {
  z-index: 3;
  position: relative;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.badge-text {
  background: rgba(88, 112, 255, 0.1);
  border: 1px solid rgba(88, 112, 255, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(88, 112, 255, 0.2);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 0 30px rgba(88, 112, 255, 0.3);
}

.gradient-text {
  background: linear-gradient(135deg, #5870ff 0%, #8b2be2 50%, #00bfff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  animation: gradient-shift 3s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-primary {
  background: linear-gradient(135deg, #5870ff 0%, #8b2be2 100%);
  border: none;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(88, 112, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(88, 112, 255, 0.6);
}

.cta-secondary {
  background: rgba(88, 112, 255, 0.1);
  border: 1px solid rgba(88, 112, 255, 0.3);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cta-secondary:hover {
  background: rgba(88, 112, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(88, 112, 255, 0.3);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  text-shadow: 0 0 20px rgba(88, 112, 255, 0.5);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

/* Agent Creator Modal */
/* Workflow Container */
.workflow-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  perspective: 1000px;
  animation: fadeInScale 1s ease-out;
}

.workflow-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(88, 112, 255, 0.3) 0%, rgba(139, 43, 226, 0.2) 50%, transparent 70%);
  filter: blur(60px);
  animation: pulse-glow 4s ease-in-out infinite;
  z-index: 0;
}

.workflow-image-wrapper {
  position: relative;
  width: 100%;
  padding: 3.5rem;
  background: rgba(15, 20, 45, 0.6);
  border: 1px solid rgba(88, 112, 255, 0.3);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(88, 112, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
  transition: all 0.4s ease;
}

.workflow-image-wrapper:hover {
  transform: translateY(-10px) rotateX(2deg);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(88, 112, 255, 0.4);
  border-color: rgba(88, 112, 255, 0.5);
}

.workflow-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: all 0.4s ease;
  filter: brightness(1.05) contrast(1.1);
}

.workflow-image-wrapper:hover .workflow-img {
  transform: scale(1.02);
  filter: brightness(1.1) contrast(1.15);
}

/* Interactive Pulse Points */
.pulse-point {
  position: absolute;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #5870ff 0%, #8b2be2 100%);
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  animation: pulse-point 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(88, 112, 255, 0.6);
}

.pulse-point::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: 50%;
  animation: ripple 2s ease-out infinite;
}

.pulse-point::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background: rgba(15, 20, 45, 0.95);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid rgba(88, 112, 255, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.pulse-point:hover::after {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

/* Positioning pulse points */
.point-1 { top: 20%; left: 15%; animation-delay: 0s; }
.point-2 { top: 25%; right: 20%; animation-delay: 0.5s; }
.point-3 { bottom: 30%; left: 20%; animation-delay: 1s; }
.point-4 { bottom: 25%; right: 15%; animation-delay: 1.5s; }

/* Floating Info Cards */
.workflow-info-cards {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.info-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(15, 20, 45, 0.9);
  border: 1px solid rgba(88, 112, 255, 0.4);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  animation: fadeInFloat 1s ease-out backwards;
  transition: all 0.3s ease;
  pointer-events: auto;
  cursor: default;
}

.info-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 40px rgba(88, 112, 255, 0.4);
  border-color: rgba(88, 112, 255, 0.6);
}

.card-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(88, 112, 255, 0.6));
}

.card-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.card-text strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.card-text span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

/* Position info cards */
.card-top-left {
  top: -10%;
  left: -5%;
  animation-delay: 0.2s;
}

.card-top-right {
  top: 10%;
  right: -8%;
  animation-delay: 0.4s;
}

.card-bottom-left {
  bottom: 5%;
  left: -8%;
  animation-delay: 0.6s;
}

.card-bottom-right {
  bottom: -5%;
  right: -5%;
  animation-delay: 0.8s;
}

/* Animations */
@keyframes pulse-point {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(88, 112, 255, 0.6);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(88, 112, 255, 0.8);
  }
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}

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

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-card {
  position: absolute;
  background: rgba(88, 112, 255, 0.1);
  border: 1px solid rgba(88, 112, 255, 0.3);
  border-radius: 12px;
  padding: 1rem;
  font-size: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(88, 112, 255, 0.3);
  animation: float 6s ease-in-out infinite;
}

.card-1 {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.card-2 {
  top: 60%;
  right: 5%;
  animation-delay: 1.5s;
}

.card-3 {
  top: 30%;
  left: 5%;
  animation-delay: 3s;
}

.card-4 {
  top: 70%;
  left: 10%;
  animation-delay: 4.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Section Styles */
.section {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 6rem 0 4rem;
  background: transparent;
}

.section:first-of-type {
  padding-top: 0;
}

.container {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 3rem;
  text-align: center;
  text-shadow: 0 0 30px rgba(88, 112, 255, 0.3);
}

/* Agent Canvas Section */
.agent-canvas-section {
  position: relative;
  overflow: hidden;
}

.canvas-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.canvas-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(88, 112, 255, 0.15);
  border: 1px solid rgba(88, 112, 255, 0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(88, 112, 255, 0.2);
}

.badge-icon {
  font-size: 1.2rem;
  animation: pulse 2s ease-in-out infinite;
}

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

.canvas-subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1.5rem;
}

/* Flow Container */
.canvas-flow-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 5rem;
  padding: 2rem 0;
}

.flow-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(88, 112, 255, 0.5) 10%, 
    rgba(88, 112, 255, 0.5) 90%, 
    transparent 100%
  );
  transform: translateX(-50%);
  z-index: 0;
}

.flow-step {
  position: relative;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.flow-step:nth-child(2) { animation-delay: 0.1s; }
.flow-step:nth-child(3) { animation-delay: 0.2s; }
.flow-step:nth-child(4) { animation-delay: 0.3s; }
.flow-step:nth-child(5) { animation-delay: 0.4s; }
.flow-step:nth-child(6) { animation-delay: 0.5s; }

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

.flow-step-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.flow-step-content.reverse {
  grid-template-columns: 1fr auto;
}

.flow-step-content.reverse .flow-text {
  order: -1;
  text-align: right;
}

.flow-icon-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.flow-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(88, 112, 255, 0.1);
  border: 2px solid rgba(88, 112, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5870ff;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(88, 112, 255, 0.2);
}

.flow-step:hover .flow-icon {
  background: rgba(88, 112, 255, 0.2);
  border-color: rgba(88, 112, 255, 0.6);
  box-shadow: 0 12px 48px rgba(88, 112, 255, 0.4);
  transform: scale(1.05) rotate(5deg);
}

.flow-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #5870ff;
  text-shadow: 0 0 20px rgba(88, 112, 255, 0.5);
}

.flow-text {
  background: rgba(15, 20, 45, 0.6);
  border: 1px solid rgba(88, 112, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
}

.flow-step:hover .flow-text {
  background: rgba(15, 20, 45, 0.8);
  border-color: rgba(88, 112, 255, 0.4);
  box-shadow: 0 12px 48px rgba(88, 112, 255, 0.2);
  transform: translateX(-5px);
}

.flow-step-content.reverse .flow-step:hover .flow-text {
  transform: translateX(5px);
}

.flow-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.flow-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.flow-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.flow-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5870ff 0%, #8b2be2 100%);
  box-shadow: 0 0 10px rgba(88, 112, 255, 0.5);
  flex-shrink: 0;
}

/* Canvas Features Grid */
.canvas-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.canvas-feature-card {
  background: linear-gradient(135deg, rgba(15, 20, 45, 0.9) 0%, rgba(25, 30, 60, 0.9) 100%);
  border: 1px solid rgba(88, 112, 255, 0.3);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.canvas-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(88, 112, 255, 0.1) 0%, rgba(139, 43, 226, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.canvas-feature-card:hover::before {
  opacity: 1;
}

.canvas-feature-card:hover {
  border-color: rgba(88, 112, 255, 0.6);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(88, 112, 255, 0.3),
              0 0 40px rgba(139, 43, 226, 0.2);
}

.feature-card-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(88, 112, 255, 0.2) 0%, rgba(139, 43, 226, 0.2) 100%);
  border-radius: 50%;
  border: 2px solid rgba(88, 112, 255, 0.3);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.feature-card-icon-wrapper svg {
  width: 40px;
  height: 40px;
  stroke: #5870ff;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 10px rgba(88, 112, 255, 0.5));
}

.canvas-feature-card:hover .feature-card-icon-wrapper {
  transform: rotateY(360deg) scale(1.1);
  background: linear-gradient(135deg, rgba(88, 112, 255, 0.3) 0%, rgba(139, 43, 226, 0.3) 100%);
  border-color: rgba(88, 112, 255, 0.6);
  box-shadow: 0 0 30px rgba(88, 112, 255, 0.4);
}

.canvas-feature-card:hover .feature-card-icon-wrapper svg {
  stroke: #8b2be2;
  filter: drop-shadow(0 0 20px rgba(139, 43, 226, 0.8));
}

.canvas-feature-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.canvas-feature-card:hover h4 {
  background: linear-gradient(135deg, #5870ff 0%, #8b2be2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.canvas-feature-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Canvas CTA */
.canvas-cta {
  text-align: center;
  margin-top: 4rem;
}

.canvas-cta-button {
  background: linear-gradient(135deg, #5870ff 0%, #8b2be2 100%);
  border: none;
  color: #ffffff;
  padding: 1.25rem 3rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(88, 112, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.canvas-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.canvas-cta-button:hover::before {
  left: 100%;
}

.canvas-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(88, 112, 255, 0.6);
}

.canvas-cta-text {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Flow Step Hover Effects */
.flow-step:hover .flow-features li {
  animation: slideInLeft 0.3s ease forwards;
}

.flow-step:hover .flow-features li:nth-child(1) {
  animation-delay: 0.05s;
}

.flow-step:hover .flow-features li:nth-child(2) {
  animation-delay: 0.1s;
}

.flow-step:hover .flow-features li:nth-child(3) {
  animation-delay: 0.15s;
}

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

/* Use Cases Section */
.use-cases-section {
  position: relative;
  overflow: hidden;
}

.use-cases-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.use-cases-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(88, 112, 255, 0.15);
  border: 1px solid rgba(88, 112, 255, 0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(88, 112, 255, 0.2);
}

.use-cases-subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1.5rem;
}

/* Interactive Use Cases Grid */
.use-cases-interactive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.use-case-card {
  position: relative;
  background: rgba(15, 20, 45, 0.6);
  border: 1px solid rgba(88, 112, 255, 0.3);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: fadeInScale 0.8s ease forwards;
}

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

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

.use-case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(88, 112, 255, 0.4);
  border-color: rgba(88, 112, 255, 0.6);
  background: rgba(15, 20, 45, 0.8);
}

.use-case-icon-wrapper {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(88, 112, 255, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
  overflow: hidden;
}

.use-case-icon {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  background: rgba(88, 112, 255, 0.2);
  border: 2px solid rgba(88, 112, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5870ff;
  transition: all 0.5s ease;
  backdrop-filter: blur(10px);
  z-index: 2;
  position: relative;
}

.use-case-card:hover .use-case-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(88, 112, 255, 0.3);
  border-color: rgba(88, 112, 255, 0.6);
  box-shadow: 0 0 40px rgba(88, 112, 255, 0.6);
}

.use-case-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(88, 112, 255, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.use-case-card:hover .use-case-overlay {
  opacity: 1;
}

.use-case-content {
  padding: 2rem;
}

.use-case-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.use-case-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.use-case-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(88, 112, 255, 0.2);
  border-bottom: 1px solid rgba(88, 112, 255, 0.2);
}

.stat-item-small {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #5870ff;
  text-shadow: 0 0 20px rgba(88, 112, 255, 0.5);
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.use-case-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.use-case-features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.use-case-card:hover .use-case-features-list li {
  transform: translateX(5px);
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5870ff 0%, #8b2be2 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(88, 112, 255, 0.5);
}

/* Industries Served */
.industries-served {
  text-align: center;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(88, 112, 255, 0.2);
}

.industries-title {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.industry-tags {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.industry-tag {
  padding: 0.75rem 1.5rem;
  background: rgba(88, 112, 255, 0.1);
  border: 1px solid rgba(88, 112, 255, 0.3);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.industry-tag:hover {
  background: rgba(88, 112, 255, 0.2);
  border-color: rgba(88, 112, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(88, 112, 255, 0.3);
  color: #ffffff;
}

/* Features Section */
.features-section {
  background: transparent;
  position: relative;
}

.features-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.features-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(88, 112, 255, 0.15);
  border: 1px solid rgba(88, 112, 255, 0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(88, 112, 255, 0.2);
}

.features-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1.5rem;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Feature Hero Cards */
.feature-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.feature-hero-card {
  position: relative;
  background: rgba(15, 20, 45, 0.6);
  border: 1px solid rgba(88, 112, 255, 0.3);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.feature-hero-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(88, 112, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.feature-hero-card:hover::before {
  opacity: 1;
}

.feature-hero-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(88, 112, 255, 0.4);
  border-color: rgba(88, 112, 255, 0.6);
}

.hero-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #5870ff 0%, #8b2be2 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-hero-card:hover .hero-card-glow {
  opacity: 1;
}

.hero-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(88, 112, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5870ff;
  margin-bottom: 1.5rem;
  transition: all 0.5s ease;
}

.feature-hero-card:hover .hero-card-icon {
  background: rgba(88, 112, 255, 0.25);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 0 30px rgba(88, 112, 255, 0.5);
}

.hero-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero-card-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.hero-card-metrics {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(88, 112, 255, 0.2);
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.metric-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #5870ff;
  text-shadow: 0 0 20px rgba(88, 112, 255, 0.5);
}

.metric-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Advanced Features Section */
.advanced-features-section {
  margin-top: 5rem;
}

.advanced-features-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 3rem;
  text-shadow: 0 0 20px rgba(88, 112, 255, 0.3);
}

.advanced-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.advanced-feature-card {
  background: rgba(15, 20, 45, 0.4);
  border: 1px solid rgba(88, 112, 255, 0.25);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
}

.advanced-feature-card:hover {
  background: rgba(15, 20, 45, 0.6);
  border-color: rgba(88, 112, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(88, 112, 255, 0.25);
}

.advanced-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(88, 112, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5870ff;
  margin-bottom: 1.25rem;
  transition: all 0.4s ease;
}

.advanced-feature-card:hover .advanced-icon {
  background: rgba(88, 112, 255, 0.2);
  transform: rotate(5deg) scale(1.05);
}

.advanced-feature-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.advanced-feature-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-list li {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #5870ff;
  font-weight: bold;
}

/* Compliance Section */
.compliance-section {
  text-align: center;
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(88, 112, 255, 0.2);
}

.compliance-title {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.compliance-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.compliance-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  background: rgba(88, 112, 255, 0.08);
  border: 1px solid rgba(88, 112, 255, 0.25);
  border-radius: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  min-width: 140px;
}

.compliance-badge:hover {
  background: rgba(88, 112, 255, 0.15);
  border-color: rgba(88, 112, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(88, 112, 255, 0.25);
}

.badge-icon-cert {
  font-size: 2rem;
}

.compliance-badge span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.accordion-item {
  background: rgba(15, 20, 45, 0.6);
  border: 1px solid rgba(88, 112, 255, 0.3);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.accordion-item:hover {
  border-color: rgba(88, 112, 255, 0.5);
  box-shadow: 0 12px 40px rgba(88, 112, 255, 0.2);
  background: rgba(15, 20, 45, 0.8);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.accordion-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(88, 112, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.accordion-header:hover::before {
  left: 100%;
}

.accordion-header:hover {
  background: rgba(88, 112, 255, 0.1);
  transform: translateX(3px);
}

.accordion-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  font-size: 2rem;
  width: 50px;
  text-align: center;
}

.accordion-title h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.accordion-arrow {
  font-size: 1.2rem;
  color: #ffffff;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(88, 112, 255, 0.05);
  opacity: 0;
  transform: translateY(-15px);
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}

.accordion-content ul {
  list-style: none;
  padding: 2rem;
  margin: 0;
}

.accordion-content li {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.accordion-content li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #5870ff;
  font-weight: bold;
}

.accordion-content li:last-child {
  margin-bottom: 0;
}

.accordion-content strong {
  color: #ffffff;
}

/* About Section */
.about-header {
  max-width: 600px;
  text-align: left;
  margin-bottom: 4rem;
}

/* About Section Styles */
.about-section {
  padding: 8rem 0;
  position: relative;
}

.about-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 5rem;
}

.about-badge {
  display: inline-block;
  background: rgba(88, 112, 255, 0.1);
  border: 1px solid rgba(88, 112, 255, 0.3);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: pulse-glow 2s ease-in-out infinite;
}

.about-badge span {
  color: #5870ff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 30px rgba(88, 112, 255, 0.3);
}

.about-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.team-member {
  position: relative;
  animation: fadeInScale 0.8s ease-out forwards;
  opacity: 0;
  animation-delay: 0.2s;
}

.team-member:nth-child(2) {
  animation-delay: 0.4s;
}

.team-card-wrapper {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 20, 45, 0.9) 0%, rgba(25, 30, 60, 0.9) 100%);
  border: 1px solid rgba(88, 112, 255, 0.3);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
}

.team-card-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(88, 112, 255, 0.1) 0%, rgba(139, 43, 226, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.team-card-wrapper:hover::before {
  opacity: 1;
}

.team-card-wrapper:hover {
  transform: translateY(-10px);
  border-color: rgba(88, 112, 255, 0.6);
  box-shadow: 0 20px 60px rgba(88, 112, 255, 0.3),
              0 0 40px rgba(139, 43, 226, 0.2);
}

.team-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(88, 112, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.team-card-wrapper:hover .team-card-glow {
  opacity: 1;
}

.team-photo-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  z-index: 1;
}

.team-photo-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(15, 20, 45, 1) 0%, transparent 100%);
  z-index: 1;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
  filter: grayscale(0.3) brightness(0.9);
}

.team-card-wrapper:hover .team-img {
  transform: scale(1.1);
  filter: grayscale(0) brightness(1);
}

.team-content {
  position: relative;
  padding: 2rem;
  text-align: center;
  z-index: 1;
}

.team-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.team-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #5870ff;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(88, 112, 255, 0.1);
  color: #5870ff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(88, 112, 255, 0.3);
}

.team-social-link:hover {
  background: linear-gradient(135deg, #5870ff 0%, #8b2be2 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(88, 112, 255, 0.4);
  border-color: transparent;
}

/* Pricing Section */
.pricing-section {
  background: transparent;
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.toggle-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(88, 112, 255, 0.2);
  border: 1px solid rgba(88, 112, 255, 0.3);
  transition: 0.4s;
  border-radius: 30px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background: linear-gradient(135deg, #5870ff 0%, #8b2be2 100%);
  border-color: #5870ff;
}

input:checked + .toggle-slider:before {
  transform: translateX(30px);
}

.discount-badge {
  background: linear-gradient(135deg, #5870ff 0%, #8b2be2 100%);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: 0.5rem;
  box-shadow: 0 0 10px rgba(88, 112, 255, 0.5);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.pricing-card {
  background: rgba(15, 20, 45, 0.6);
  border: 1px solid rgba(88, 112, 255, 0.3);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(88, 112, 255, 0.3);
  border-color: rgba(88, 112, 255, 0.6);
  background: rgba(15, 20, 45, 0.8);
}

.pricing-card.featured {
  border: 2px solid #5870ff;
  background: rgba(88, 112, 255, 0.1);
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(88, 112, 255, 0.3);
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #5870ff 0%, #8b2be2 100%);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(88, 112, 255, 0.4);
}

.card-header {
  margin-bottom: 2rem;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 600;
}

.amount {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(88, 112, 255, 0.5);
}

.yearly-price {
  display: none;
}

.toggle-switch input:checked ~ * .monthly-price {
  display: none;
}

.toggle-switch input:checked ~ * .yearly-price {
  display: inline;
}

.period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.plan-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.7);
}

.checkmark {
  color: #5870ff;
  font-weight: bold;
}

.plan-cta {
  width: 100%;
  padding: 1rem 2rem;
  border: 1px solid rgba(88, 112, 255, 0.3);
  background: rgba(88, 112, 255, 0.1);
  color: #ffffff;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan-cta:hover {
  background: rgba(88, 112, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(88, 112, 255, 0.3);
}

.plan-cta.primary {
  background: linear-gradient(135deg, #5870ff 0%, #8b2be2 100%);
  border-color: #5870ff;
  color: #fff;
  box-shadow: 0 4px 15px rgba(88, 112, 255, 0.4);
}

.plan-cta.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(88, 112, 255, 0.6);
}

.pricing-footer {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.enterprise-link {
  color: #5870ff;
  text-decoration: none;
  font-weight: 500;
  margin-top: 1rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.enterprise-link:hover {
  text-decoration: underline;
  color: #8b2be2;
  text-shadow: 0 0 10px rgba(88, 112, 255, 0.5);
}

/* Comparison Section */
.comparison-section {
  padding: 8rem 0;
  position: relative;
  background: transparent;
}

.comparison-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.comparison-badge {
  display: inline-block;
  background: rgba(88, 112, 255, 0.1);
  border: 1px solid rgba(88, 112, 255, 0.3);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: pulse-glow 2s ease-in-out infinite;
}

.comparison-badge span {
  color: #5870ff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
}

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: 4rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(15, 20, 45, 0.6) 0%, rgba(25, 30, 60, 0.6) 100%);
  border: 1px solid rgba(88, 112, 255, 0.3);
  backdrop-filter: blur(20px);
  padding: 2rem;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 800px;
}

.comparison-table thead {
  background: linear-gradient(135deg, rgba(88, 112, 255, 0.2) 0%, rgba(139, 43, 226, 0.2) 100%);
}

.comparison-table th {
  padding: 1.5rem 1rem;
  text-align: center;
  font-weight: 700;
  color: #ffffff;
  border-bottom: 2px solid rgba(88, 112, 255, 0.3);
}

.comparison-table th:first-child {
  text-align: left;
  border-top-left-radius: 12px;
}

.comparison-table th:last-child {
  border-top-right-radius: 12px;
}

.feature-column {
  width: 30%;
  text-align: left !important;
}

.platform-column {
  width: 17.5%;
  position: relative;
}

.datadoodle-column {
  background: linear-gradient(135deg, rgba(88, 112, 255, 0.15) 0%, rgba(139, 43, 226, 0.15) 100%);
  border-left: 2px solid rgba(88, 112, 255, 0.4);
  border-right: 2px solid rgba(88, 112, 255, 0.4);
}

.platform-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.platform-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #5870ff 0%, #8b2be2 100%);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(88, 112, 255, 0.4);
}

.platform-icon svg {
  stroke: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.platform-icon-alt {
  font-size: 2rem;
  opacity: 0.7;
}

.platform-logo {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.platform-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.platform-logo svg,
.platform-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.datadoodle-logo {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.datadoodle-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(88, 112, 255, 0.4) !important;
}

.recommended-badge {
  background: linear-gradient(135deg, #5870ff 0%, #8b2be2 100%);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 10px rgba(88, 112, 255, 0.4);
}

.comparison-table tbody tr {
  border-bottom: 1px solid rgba(88, 112, 255, 0.1);
  transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
  background: rgba(88, 112, 255, 0.05);
}

.comparison-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}

.comparison-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}

.comparison-table td {
  padding: 1.5rem 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.feature-name {
  text-align: left !important;
  padding-right: 2rem !important;
}

.feature-name strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.feature-desc {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: normal;
}

.datadoodle-cell {
  background: linear-gradient(135deg, rgba(88, 112, 255, 0.1) 0%, rgba(139, 43, 226, 0.1) 100%);
  border-left: 2px solid rgba(88, 112, 255, 0.3);
  border-right: 2px solid rgba(88, 112, 255, 0.3);
}

.check-cell {
  color: #4ade80;
}

.check-icon {
  font-size: 1.5rem;
  font-weight: bold;
  display: inline-block;
  animation: scaleIn 0.3s ease;
}

.cross-cell {
  color: #f87171;
}

.cross-icon {
  font-size: 1.5rem;
  font-weight: bold;
  opacity: 0.5;
}

.partial-cell {
  color: #fbbf24;
}

.partial-icon {
  font-size: 1.5rem;
  font-weight: bold;
}

.metric-cell {
  color: rgba(255, 255, 255, 0.6);
}

.metric-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.datadoodle-cell .metric-value {
  color: #5870ff;
  font-weight: 700;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Comparison CTA */
.comparison-cta {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(88, 112, 255, 0.1) 0%, rgba(139, 43, 226, 0.1) 100%);
  border: 1px solid rgba(88, 112, 255, 0.3);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.comparison-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(88, 112, 255, 0.1) 0%, transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
}

.comparison-cta-title {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  z-index: 1;
}

.comparison-cta-description {
  position: relative;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  z-index: 1;
}

.comparison-cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #5870ff 0%, #8b2be2 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(88, 112, 255, 0.4);
  overflow: hidden;
  z-index: 1;
}

.comparison-cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.comparison-cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.comparison-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(88, 112, 255, 0.6),
              0 0 30px rgba(139, 43, 226, 0.4);
}

.comparison-cta-button span {
  position: relative;
  z-index: 1;
}

.comparison-cta-button svg {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.comparison-cta-button:hover svg {
  transform: translateX(5px);
}

/* Contact Section */
.contact-header {
  max-width: 600px;
  text-align: left;
  margin-bottom: 4rem;
}

/* Contact Section Styles */
.contact-section {
  padding: 8rem 0;
  position: relative;
}

.contact-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 5rem;
}

.contact-badge {
  display: inline-block;
  background: rgba(88, 112, 255, 0.1);
  border: 1px solid rgba(88, 112, 255, 0.3);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: pulse-glow 2s ease-in-out infinite;
}

.contact-badge span {
  color: #5870ff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 30px rgba(88, 112, 255, 0.3);
}

.contact-subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

/* Contact Info Grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info-card {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 20, 45, 0.9) 0%, rgba(25, 30, 60, 0.9) 100%);
  border: 1px solid rgba(88, 112, 255, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(88, 112, 255, 0.1) 0%, rgba(139, 43, 226, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.contact-info-card:hover::before {
  opacity: 1;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(88, 112, 255, 0.6);
  box-shadow: 0 20px 60px rgba(88, 112, 255, 0.3),
              0 0 40px rgba(139, 43, 226, 0.2);
}

.contact-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(88, 112, 255, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.contact-info-card:hover .contact-card-glow {
  opacity: 1;
}

.contact-icon-wrapper {
  position: relative;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(88, 112, 255, 0.2) 0%, rgba(139, 43, 226, 0.2) 100%);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(88, 112, 255, 0.3);
  transition: all 0.4s ease;
  z-index: 1;
}

.contact-icon-wrapper svg {
  stroke: #5870ff;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 10px rgba(88, 112, 255, 0.5));
}

.contact-info-card:hover .contact-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(88, 112, 255, 0.3) 0%, rgba(139, 43, 226, 0.3) 100%);
  border-color: rgba(88, 112, 255, 0.6);
  box-shadow: 0 0 30px rgba(88, 112, 255, 0.4);
}

.contact-info-card:hover .contact-icon-wrapper svg {
  stroke: #8b2be2;
  filter: drop-shadow(0 0 20px rgba(139, 43, 226, 0.8));
}

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

.contact-info-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.contact-info-text {
  font-size: 1.05rem;
  color: #5870ff;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-info-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.email-link {
  color: #5870ff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
}

.email-link:hover {
  color: #8b2be2;
}

.email-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #5870ff, #8b2be2);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(88, 112, 255, 0.5);
}

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

/* Contact CTA */
.contact-cta {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(88, 112, 255, 0.1) 0%, rgba(139, 43, 226, 0.1) 100%);
  border: 1px solid rgba(88, 112, 255, 0.3);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(88, 112, 255, 0.1) 0%, transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
}

.contact-cta-title {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  z-index: 1;
}

.contact-cta-description {
  position: relative;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  z-index: 1;
}

.contact-cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #5870ff 0%, #8b2be2 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(88, 112, 255, 0.4);
  overflow: hidden;
  z-index: 1;
}

.contact-cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.contact-cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.contact-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(88, 112, 255, 0.6),
              0 0 30px rgba(139, 43, 226, 0.4);
}

.contact-cta-button span {
  position: relative;
  z-index: 1;
}

.contact-cta-button svg {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.contact-cta-button:hover svg {
  transform: translateX(5px);
}

.logo {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.3));
  }
  to {
    filter: drop-shadow(0 0 30px rgba(102, 126, 234, 0.6));
  }
}

@keyframes glow-pulse {
  0% {
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.4));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(118, 75, 162, 0.6));
    transform: scale(1.05);
  }
  100% {
    filter: drop-shadow(0 0 15px rgba(240, 147, 251, 0.5));
    transform: scale(1);
  }
}

.slogan {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
  text-transform: none;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  animation: typewriter 3s steps(20) 0.5s both, blink-caret 0.75s step-end infinite;
  border-right: 3px solid #667eea;
}

@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: #667eea; }
}

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

.description {
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 3.5s forwards;
}

.coming-soon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  font-size: 1.3em;
  display: inline-block;
  animation: glow-pulse 2s ease-in-out infinite alternate;
  text-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
  letter-spacing: 0.05em;
}

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

@keyframes fadeInUpDemo {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 0.5;
    transform: translateY(0);
  }
}

.notify-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  width: 100%;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 4.5s forwards;
}

.demo-note {
  font-size: 0.8rem;
  color: #ffffff;
  opacity: 0;
  margin-bottom: 3rem;
  margin-top: 0.5rem;
  animation: fadeInUpDemo 1s ease-out 5.5s forwards;
}

.email-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.email-input::placeholder {
  color: #888;
}

.email-input:focus {
  border-color: #667eea;
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.notify-btn {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.notify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.social-links {
  display: flex;
  gap: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 6.5s forwards;
}

.social-link {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
  border-color: #667eea;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.footer {
  position: relative;
  text-align: center;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  border-top: 1px solid rgba(88, 112, 255, 0.2);
  background: rgba(10, 14, 39, 0.8);
  backdrop-filter: blur(20px);
}

/* Responsive Design */
/* Tablet Styles */
@media (max-width: 968px) and (min-width: 769px) {
  .canvas-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .feature-card-icon-wrapper {
    width: 75px;
    height: 75px;
  }
  
  .feature-card-icon-wrapper svg {
    width: 38px;
    height: 38px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-container {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-menu {
    gap: 1rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  
  .nav-link {
    font-size: 0.9rem;
  }
  
  .nav-cta {
    order: -1;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .nav-signup {
    flex: 1;
    min-width: 120px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .section {
    padding: 5rem 0 3rem;
  }
  
  .container {
    padding: 1rem;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  /* Comparison Section Mobile */
  .comparison-section {
    padding: 5rem 0;
  }
  
  .comparison-header {
    margin-bottom: 3rem;
  }
  
  .comparison-table-wrapper {
    padding: 1rem;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
  
  .comparison-table {
    min-width: 700px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 1rem 0.5rem;
    font-size: 0.85rem;
  }
  
  .feature-name strong {
    font-size: 0.9rem;
  }
  
  .feature-desc {
    font-size: 0.75rem;
  }
  
  .platform-icon {
    width: 32px;
    height: 32px;
  }
  
  .platform-logo {
    width: 36px;
    height: 36px;
    padding: 6px;
  }
  
  .platform-icon-alt {
    font-size: 1.5rem;
  }
  
  .recommended-badge {
    font-size: 0.6rem;
    padding: 0.2rem 0.5rem;
  }
  
  .check-icon,
  .cross-icon,
  .partial-icon {
    font-size: 1.2rem;
  }
  
  .comparison-cta {
    padding: 2rem 1.5rem;
  }
  
  .comparison-cta-title {
    font-size: 1.5rem;
  }
  
  .comparison-cta-description {
    font-size: 1rem;
  }
  
  .comparison-cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
  
  /* Workflow Container Mobile */
  .workflow-container {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .workflow-image-wrapper {
    padding: 1rem;
  }
  
  .workflow-image-wrapper:hover {
    transform: translateY(-5px);
  }
  
  .info-card {
    padding: 0.5rem 0.75rem;
    gap: 0.5rem;
  }
  
  .card-icon {
    font-size: 1.2rem;
  }
  
  .card-text strong {
    font-size: 0.75rem;
  }
  
  .card-text span {
    font-size: 0.65rem;
  }
  
  .card-top-left,
  .card-bottom-left {
    left: -3%;
  }
  
  .card-top-right,
  .card-bottom-right {
    right: -3%;
  }
  
  .pulse-point {
    width: 12px;
    height: 12px;
  }
  
  .pulse-point::after {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }
  
  .company-logos {
    gap: 1.5rem;
  }
  
  .feature-highlights {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .agent-creator-modal {
    max-width: 100%;
    padding: 1.5rem;
  }
  
  .agent-type-selection {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .agent-type-option {
    justify-content: center;
  }
  
  .modal-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .modal-btn {
    width: 100%;
  }
  
  /* Agent Canvas Mobile */
  .canvas-flow-container {
    padding: 1rem 0;
  }
  
  .flow-line {
    display: none;
  }
  
  .flow-step {
    margin-bottom: 2rem;
  }
  
  .flow-step-content {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  
  .flow-step-content.reverse .flow-text {
    order: 0;
    text-align: left;
  }
  
  .flow-icon-wrapper {
    flex-direction: row;
    justify-content: center;
  }
  
  .flow-text {
    padding: 1.5rem;
  }
  
  .canvas-features-grid {
      grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card-icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .feature-card-icon-wrapper svg {
    width: 35px;
    height: 35px;
  }
  
  .canvas-feature-card {
    padding: 2rem 1.5rem;
  }
  
  .canvas-feature-card h4 {
    font-size: 1.1rem;
  }
  
  .canvas-feature-card p {
    font-size: 0.9rem;
  }
  
  .canvas-cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
  }
  
  /* Use Cases Mobile */
  .use-cases-interactive-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
  .use-case-icon-wrapper {
    height: 140px;
  }
  
  .use-case-icon {
    width: 80px;
    height: 80px;
  }
  
  .use-case-content {
    padding: 1.5rem;
  }
  
  .use-case-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .industry-tags {
    gap: 0.75rem;
  }
  
  .industry-tag {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  
  /* Features Mobile */
  .feature-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-hero-card {
    padding: 2rem 1.5rem;
  }
  
  .hero-card-metrics {
    gap: 1.5rem;
  }
  
  .advanced-features-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
  .compliance-badges {
    gap: 1rem;
  }
  
  .compliance-badge {
    min-width: 120px;
    padding: 1.25rem 1.5rem;
  }
  
  .accordion-header {
    padding: 1rem 1.5rem;
  }
  
  .accordion-title h3 {
    font-size: 1.1rem;
  }
  
  .accordion-content ul {
    padding: 1.5rem;
  }
  
  /* About Section Mobile */
  .about-section {
    padding: 5rem 0;
  }
  
  .about-header {
    margin-bottom: 3rem;
  }
  
    .team-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
  .team-photo-wrapper {
    height: 220px;
  }
  
  .team-content {
    padding: 1.5rem;
  }
  
  .team-name {
    font-size: 1.3rem;
  }
  
  .team-bio {
    font-size: 0.9rem;
  }
  
  /* Contact Section Mobile */
  .contact-section {
    padding: 5rem 0;
  }
  
  .contact-header {
    margin-bottom: 3rem;
  }
  
    .contact-info-grid {
      grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .contact-info-card {
    padding: 2rem;
  }
  
  .contact-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .contact-info-title {
    font-size: 1.2rem;
  }
  
  .contact-cta {
    padding: 2rem 1.5rem;
  }
  
  .contact-cta-title {
    font-size: 1.5rem;
  }
  
  .contact-cta-description {
    font-size: 1rem;
  }
  
  .contact-cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }

  .notify-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .contact-form {
    max-width: 100%;
  }

  .contact-input,
  .contact-textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .social-links {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    font-size: 0.8rem;
    gap: 0.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .step,
  .use-case,
  .feature {
    padding: 1.5rem;
  }
}

/* Additional animations for continuous movement effect */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.logo {
  animation: glow 2s ease-in-out infinite alternate, float 4s ease-in-out infinite;
}

/* Pulse animation for cards and sections */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(88, 112, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(88, 112, 255, 0.4);
  }
}
