/* Hero section uses agency-hero class from agency.css */

/* Flow Section */
.neo-flow {
  padding: 80px 0;
}

.neo-flow-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.neo-flow-step {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  transition: border-color 200ms ease-in-out, background 200ms ease-in-out;
}

.neo-flow-step:hover {
  border-color: rgba(125,82,148,0.4);
  background: rgba(255,255,255,0.04);
}

.neo-flow-step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #49179b, #7168d0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.neo-flow-step-content {
  flex: 1;
}

.neo-flow-step-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.neo-flow-step-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.neo-flow-arrow {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}

.neo-flow-arrow svg {
  width: 24px;
  height: 24px;
  color: rgba(255,255,255,0.3);
}

/* Modules Section */
.neo-modules {
  padding: 80px 0;
}

.neo-modules-header {
  text-align: center;
  margin-bottom: 64px;
}

.neo-modules-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.neo-modules-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 16px auto 0;
}

.neo-modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

@media (min-width: 1024px) {
  .neo-modules-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.neo-module-card {
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  transition: border-color 200ms ease-in-out, box-shadow 200ms ease-in-out;
}

.neo-module-card:hover {
  border-color: rgba(125,82,148,0.5);
  box-shadow: 0 4px 24px rgba(73,23,155,0.15);
}

.neo-module-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #2A1124;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.neo-module-icon svg {
  width: 28px;
  height: 28px;
  color: #E26CC0;
}

.neo-module-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.neo-module-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 16px;
}

.neo-module-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.neo-module-tag {
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(125,82,148,0.15);
  font-size: 13px;
  font-weight: 500;
  color: #CA3ACA;
}

/* Platforms Section */
.neo-platforms {
  padding: 80px 0;
}

.neo-platforms-header {
  text-align: center;
  margin-bottom: 48px;
}

.neo-platforms-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.neo-platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .neo-platforms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.neo-platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  text-align: center;
}

.neo-platform-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.neo-platform-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.neo-platform-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

/* Metrics Section */
.neo-metrics {
  padding: 80px 0;
}

.neo-metrics-card {
  padding: 48px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.neo-metrics-header {
  text-align: center;
  margin-bottom: 48px;
}

.neo-metrics-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.neo-metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

@media (min-width: 1024px) {
  .neo-metrics-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.neo-metric-item {
  text-align: center;
  padding: 24px;
}

.neo-metric-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, #49179b, #7168d0, #6cd6f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.neo-metric-label {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}

/* Pricing Section */
.neo-pricing {
  padding: 80px 0;
}

.neo-pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.neo-pricing-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.neo-pricing-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 16px auto 0;
}

.neo-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.neo-pricing-card {
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  display: flex;
  flex-direction: column;
}

.neo-pricing-card.featured {
  border-color: rgba(125,82,148,0.5);
  background: linear-gradient(180deg, rgba(73,23,155,0.1) 0%, rgba(255,255,255,0.02) 100%);
  box-shadow: 0 4px 24px rgba(73,23,155,0.15);
}

.neo-pricing-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 100px;
  background: linear-gradient(135deg, #49179b, #7168d0);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  width: fit-content;
  margin-bottom: 16px;
}

.neo-pricing-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.neo-pricing-card .price {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.neo-pricing-card .price-note {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.neo-pricing-card .description {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-bottom: 24px;
}

.neo-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.neo-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.neo-pricing-features li::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(74,222,128,0.15);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234ade80' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.neo-pricing-cta {
  margin-top: 32px;
}

/* CTA Section */
.neo-cta {
  padding: 80px 0;
}

.neo-cta-card {
  padding: 64px 48px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(73,23,155,0.2) 0%, rgba(15,15,15,0.5) 100%);
  border: 1px solid rgba(131,41,209,0.3);
  text-align: center;
}

.neo-cta-card h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.neo-cta-card p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.neo-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .neo-cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Button Styles */
.btn-outline {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid rgba(125,82,148,0.6);
  cursor: pointer;
  transition: all 200ms ease-in-out;
  font-family: 'Bounded', sans-serif;
  text-decoration: none;
  text-align: center;
}

.btn-outline:hover {
  background: rgba(125,82,148,0.15);
  border-color: #7D5294;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .neo-flow-step {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .neo-flow-arrow {
    transform: rotate(90deg);
  }

  .neo-metrics-card {
    padding: 32px 16px;
  }

  .neo-pricing-card {
    padding: 24px;
  }

  .neo-cta-card {
    padding: 48px 24px;
  }
}
