/* Industry Page Specific Styles */
.industry-hero {
  position: relative;
  min-height: 756px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #151515 0%, #1a1a2e 100%);
  overflow: hidden;
}

.industry-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.industry-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.industry-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.industry-hero .eyebrow {
  color: var(--red);
}

.industry-hero h1 {
  color: white;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.industry-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  line-height: 1.6;
  max-width: 600px;
}

/* Problem Cards */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 40px;
}

.problem-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(110, 97, 254, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.problem-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--red);
}

.problem-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.problem-card p {
  color: var(--gray-600);
  margin-bottom: 20px;
}

.problem-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.problem-card li {
  padding: 10px 0;
  border-top: 1px solid var(--gray-200);
  font-size: 15px;
  color: var(--gray-700);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.problem-card li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* Solution Section */
.solution-intro {
  max-width: 700px;
  margin-bottom: 60px;
}

.solution-intro h2 {
  margin-bottom: 24px;
}

.solution-intro p {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* AI Team Preview */
.ai-team-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 1024px) {
  .ai-team-preview {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ai-team-preview {
    grid-template-columns: 1fr;
  }
}

.ai-preview-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.ai-preview-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.ai-preview-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(110, 97, 254, 0.1), rgba(123, 31, 236, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-preview-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--red);
}

.ai-preview-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.ai-preview-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Results Section */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 900px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
}

.result-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 40px;
}

.result-card__label {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(110, 97, 254, 0.1);
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.result-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.result-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Pipeline Visual */
.pipeline-section {
  background: var(--gray-100);
}

.pipeline-visual {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 20px 0;
  margin-top: 40px;
}

.pipeline-stage {
  flex: 1;
  min-width: 140px;
  text-align: center;
  position: relative;
}

.pipeline-stage::after {
  content: '';
  position: absolute;
  top: 24px;
  right: 0;
  width: 50%;
  height: 2px;
  background: var(--gray-300);
}

.pipeline-stage:last-child::after {
  display: none;
}

.pipeline-stage::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  width: 50%;
  height: 2px;
  background: var(--gray-300);
}

.pipeline-stage:first-child::before {
  display: none;
}

.pipeline-stage__dot {
  width: 16px;
  height: 16px;
  background: var(--red);
  border-radius: 50%;
  margin: 16px auto;
  position: relative;
  z-index: 2;
}

.pipeline-stage__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  padding: 0 8px;
}

.problem-card__header {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
  .problem-card {
    padding: 0px;
  }
  .result-card {
    padding: 0px;
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .industry-hero {
    margin-top: 50px;
    min-height: auto;
    padding-block: 80px;
  }
}