/* V3 Industries Page Styles */

/* Industries Hero Section */
.v3-industries-hero {
  padding: 3rem 0 4rem;
  background: white;
  text-align: center;
}

.v3-industries-hero-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 1200px;
}

.v3-industries-hero-subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: #FE8E40;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  display: block;
  margin-bottom: 1.5rem;
}

.v3-industries-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.2;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.v3-industries-hero-tagline {
  font-size: 1.4rem;
  font-weight: 500;
  color: #666;
  display: block;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Industries Breakdown Section */
.v3-industries-breakdown {
  background: #f8f9fa;
  padding: 3rem 0;
}

.v3-industries-breakdown-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.v3-industries-breakdown-header {
  margin-bottom: 4rem;
}

.v3-industry-badge {
  color: #FE8E40;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: block;
}

.v3-industries-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.v3-industries-breakdown-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.v3-industries-breakdown-header p {
  font-size: 1.1rem;
  color: #666;
}

.v3-industries-breakdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.v3-industry-breakdown-card {
  background: transparent;
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid #FE8E40;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  position: relative;
}

.v3-industry-breakdown-header {
  flex: 1;
  padding: 0 !important;
  background: transparent !important;
}

.v3-industry-breakdown-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #FE8E40;
  border-radius: 50%;
  color: white;
  align-self: flex-end;
  margin-top: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.v3-industry-breakdown-card:hover .v3-industry-breakdown-arrow {
  background: #e55a1a;
}

.v3-industry-breakdown-icon {
  width: 60px;
  height: 60px;
  background: #FE8E40;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
}

.v3-industry-breakdown-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.v3-industry-breakdown-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
}

.v3-industry-breakdown-list li {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.2rem;
}

.v3-industry-breakdown-list li:before {
  content: "•";
  color: #FE8E40;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

/* Tablet Responsive Design */
@media (max-width: 1024px) {
  .v3-industries-breakdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .v3-industries-hero {
    padding: 4rem 0 3rem;
  }
  
  .v3-industries-hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .v3-industries-hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .v3-industries-hero-tagline {
    font-size: 1.2rem;
  }
  
  .v3-industries-breakdown-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .v3-industry-breakdown-card {
    padding: 2rem;
    min-height: 250px;
  }
  
  .v3-industries-breakdown-header h2 {
    font-size: 2rem;
  }
  
  .v3-industry-breakdown-card h3 {
    font-size: 1.3rem;
  }
  
  .v3-industry-breakdown-list li {
    font-size: 0.9rem;
  }
}