/* =============================================
   WorkStack Landing Page Styles
   ============================================= */

/* WorkStack Theme Colors */
:root {
  --ws-primary: #8B5CF6;
  --ws-primary-dark: #7C3AED;
  --ws-accent: #3B82F6;
  --ws-gradient: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  --ws-dark-bg: #0D0D0D;
  --ws-dark-surface: #1A1A1A;
  --ws-dark-border: #2A2A2A;
  --ws-success: #00C853;
  --ws-gray: #6B7280;
}

/* Hero App Icon */
.hero__app-icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  margin-bottom: var(--spacing-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Hero Section - WorkStack Dark Theme */
.hero--workstack {
  background: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%);
  padding: var(--spacing-3xl) 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero--workstack .hero__title {
  background: var(--ws-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero--workstack .hero__subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.hero__badge--productivity {
  background: var(--ws-gradient);
  color: white;
}

.hero__trial {
  display: block;
  margin-top: var(--spacing-md);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Mac Mockup Styles */
.hero__image--mac {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__mockup--mac {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Button - WorkStack Style */
.btn--workstack {
  background: var(--ws-gradient);
  border: none;
}

.btn--workstack:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Feature Highlight Section */
.feature-highlight {
  display: grid;
  gap: var(--spacing-3xl);
  align-items: center;
}

@media (min-width: 768px) {
  .feature-highlight {
    grid-template-columns: 1fr 1fr;
  }
  .feature-highlight--reverse {
    direction: rtl;
  }
  .feature-highlight--reverse > * {
    direction: ltr;
  }
}

/* Mac Screenshot Style */
.feature-highlight__image--mac {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  border-radius: var(--radius-xl);
  padding: var(--spacing-md);
  max-width: 400px;
  margin: 0 auto;
  aspect-ratio: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-highlight__image--mac img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

/* Dark Section for WorkStack */
.section--dark-workstack {
  background: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%);
  color: white;
}

.section--dark-workstack h2 {
  color: white;
}

.section--dark-workstack p {
  color: rgba(255, 255, 255, 0.8);
}

/* Feature List - WorkStack Style */
.feature-list {
  list-style: none;
  margin-top: var(--spacing-xl);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  color: var(--color-gray-600);
}

.feature-list--workstack li::before {
  content: "";
  width: 24px;
  height: 24px;
  background: var(--ws-gradient);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.section--dark-workstack .feature-list li {
  color: rgba(255, 255, 255, 0.8);
}

/* Specs Grid */
.specs-grid {
  display: grid;
  gap: var(--spacing-lg);
  justify-content: center;
}

@media (min-width: 640px) {
  .specs-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 800px;
    margin: 0 auto;
  }

  .specs-grid--four {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1000px;
  }
}

.spec-item {
  text-align: center;
  padding: var(--spacing-xl);
  background-color: var(--color-gray-50);
  border-radius: var(--radius-xl);
}

.spec-item--workstack {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.spec-item__value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ws-primary);
  margin-bottom: var(--spacing-xs);
}

.spec-item--workstack .spec-item__value svg {
  stroke: var(--ws-primary);
}

.spec-item__label {
  color: var(--color-gray-600);
  font-size: 0.875rem;
}

/* Card - WorkStack Style */
.card--workstack {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
  border: 1px solid rgba(139, 92, 246, 0.15);
}

.card__icon--workstack {
  background: var(--ws-gradient);
}

/* Pricing Section - WorkStack */
.pricing-section--workstack {
  background: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%);
  color: white;
}

.pricing-section--workstack .section__title,
.pricing-section--workstack .section__subtitle {
  color: white;
}

.pricing-section--workstack .section__subtitle {
  opacity: 0.8;
}

.pricing--two {
  display: grid;
  gap: var(--spacing-xl);
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing--two {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing--single {
  display: flex;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}

.pricing-card--workstack {
  background: var(--ws-dark-surface);
  border: 1px solid var(--ws-dark-border);
  color: white;
}

.pricing-card--workstack .pricing-card__name {
  color: white;
}

.pricing-card--workstack .pricing-card__features li {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-card--workstack-featured {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
  border: 2px solid var(--ws-primary);
  color: white;
}

.pricing-card--workstack-featured .pricing-card__name {
  color: white;
}

.pricing-card--workstack-featured .pricing-card__price {
  color: white;
}

.pricing-card--workstack-featured .pricing-card__desc {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-card--workstack-featured .pricing-card__features li {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-card__badge--workstack {
  background: var(--ws-gradient);
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
}

.faq-item__question {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.faq-item__answer {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .hero--workstack {
    padding: var(--spacing-2xl) 0;
    min-height: auto;
  }

  .feature-highlight__image--mac {
    max-width: 300px;
  }

  .specs-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }
}
