/* Co-GenAI Page Styles */

/* Hero Section */
.cogenai-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 2rem 80px;
}

.cogenai-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.cogenai-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(192, 132, 252, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 60%),
    linear-gradient(135deg, #0a0a0a 0%, #0f0f1a 50%, #0a0a0a 100%);
}

.cogenai-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.cogenai-title {
  font-family: 'Space Grotesk', 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 4rem;
  font-weight: 500;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.cogenai-title .highlight {
  background: linear-gradient(135deg, #c084fc, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cogenai-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cogenai-hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.cogenai-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cogenai-btn-primary {
  background: linear-gradient(135deg, #c084fc, #a855f7);
  color: white;
  border: none;
}

.cogenai-btn-primary:hover {
  background: linear-gradient(135deg, #d4a5fd, #b975f8);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 132, 252, 0.3);
}

.cogenai-btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cogenai-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.cogenai-btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* Container */
.cogenai-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Titles */
.cogenai-section-title {
  font-family: 'Space Grotesk', 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: white;
  text-align: center;
  margin-bottom: 1rem;
}

.cogenai-section-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-bottom: 3rem;
}

/* Video Section */
.cogenai-video-section {
  background: #0a0a0a;
  padding: 6rem 0;
}

.cogenai-video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cogenai-video {
  width: 100%;
  display: block;
  background: #000;
}

.cogenai-video-placeholder {
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, rgba(192, 132, 252, 0.1), rgba(139, 92, 246, 0.05));
}

.cogenai-video-placeholder svg {
  opacity: 0.6;
}

/* Features Section */
.cogenai-features-section {
  background: #0a0a0a;
  padding: 6rem 0;
}

.cogenai-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.cogenai-feature-row:last-child {
  margin-bottom: 0;
}

.cogenai-feature-row-reverse {
  direction: rtl;
}

.cogenai-feature-row-reverse > * {
  direction: ltr;
}

.cogenai-feature-text {
  padding: 1rem 0;
}

.cogenai-feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(192, 132, 252, 0.15);
  border: 1px solid rgba(192, 132, 252, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c084fc;
  margin-bottom: 1.5rem;
}

.cogenai-feature-title {
  font-family: 'Space Grotesk', 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: white;
  margin-bottom: 1rem;
}

.cogenai-feature-desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cogenai-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cogenai-feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
}

.cogenai-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: #c084fc;
  border-radius: 50%;
}

.cogenai-feature-image {
  border-radius: 16px;
  overflow: hidden;
}

.cogenai-feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.cogenai-image-placeholder {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(192, 132, 252, 0.1), rgba(139, 92, 246, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.3);
}

.cogenai-image-placeholder svg {
  opacity: 0.5;
}

.cogenai-image-placeholder span {
  font-size: 0.875rem;
}

/* CTA Section */
.cogenai-cta-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #0f0a1a 100%);
  padding: 6rem 0;
  text-align: center;
}

.cogenai-cta-title {
  font-family: 'Space Grotesk', 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: white;
  margin-bottom: 1rem;
}

.cogenai-cta-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2.5rem;
}

.cogenai-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .cogenai-title {
    font-size: 3rem;
  }

  .cogenai-feature-row {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .cogenai-hero {
    padding: 100px 1.5rem 60px;
    min-height: 60vh;
  }

  .cogenai-title {
    font-size: 2.5rem;
  }

  .cogenai-subtitle {
    font-size: 1.125rem;
  }

  .cogenai-section-title {
    font-size: 2rem;
  }

  .cogenai-feature-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .cogenai-feature-row-reverse {
    direction: ltr;
  }

  .cogenai-feature-image {
    order: -1;
  }

  .cogenai-feature-row-reverse .cogenai-feature-image {
    order: -1;
  }

  .cogenai-video-section,
  .cogenai-features-section,
  .cogenai-cta-section {
    padding: 4rem 0;
  }

  .cogenai-container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .cogenai-hero {
    padding: 90px 1rem 50px;
  }

  .cogenai-title {
    font-size: 2rem;
  }

  .cogenai-subtitle {
    font-size: 1rem;
  }

  .cogenai-section-title {
    font-size: 1.75rem;
  }

  .cogenai-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }

  .cogenai-btn-large {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .cogenai-hero-buttons,
  .cogenai-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cogenai-feature-title {
    font-size: 1.5rem;
  }

  .cogenai-cta-title {
    font-size: 2rem;
  }

  .cogenai-container {
    padding: 0 1rem;
  }

  .cogenai-video-section,
  .cogenai-features-section,
  .cogenai-cta-section {
    padding: 3rem 0;
  }
}
