/* assets/css/pages/industries.css */

/* === Page Header - Match Services === */
.page-header--dark {
  background: linear-gradient(180deg, #0E2247 0%, #1A3A6B 100%);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.page-header__bg > div:nth-child(1) {
  position: absolute;
  top: -180px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,174,239,0.2) 0%, transparent 70%);
  border-radius: 8px;
}

.page-header__bg > div:nth-child(2) {
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(26,58,107,0.6) 0%, transparent 70%);
  border-radius: 8px;
}

.page-header--dark .page-header__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.page-header__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.page-header__label .dot {
  color: var(--cyan);
  font-size: 8px;
}

.page-header--dark .page-header__title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-header--dark .page-header__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #C0C0C0;
  margin-bottom: 32px;
}

.page-header__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.page-header__buttons .btn--lg {
  padding: 14px 32px;
  font-size: 15px;
}

/* Light outline button for dark backgrounds */
.btn--outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .page-header--dark {
    padding: 60px 0 80px;
  }
  .page-header--dark .page-header__title {
    font-size: 36px;
  }
  .page-header--dark .page-header__subtitle {
    font-size: 16px;
  }
  .page-header__buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-header__buttons .btn--lg {
    width: 100%;
    max-width: 280px;
  }
}

/* === Industry Hero Section === */
.industry-hero {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.industry-hero__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.15) 0%, rgba(0, 174, 239, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-hero__icon svg {
  color: #00AEEF;
}

.industry-hero__content {
  flex: 1;
}

.industry-hero__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #00AEEF;
  margin-bottom: 8px;
}

.industry-hero h2 {
  margin-top: 4px;
  color: #0E2247;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.industry-hero p {
  font-size: 16px;
  color: #64748B;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .industry-hero {
    flex-direction: column;
  }
  .industry-hero__icon {
    width: 48px;
    height: 48px;
  }
  .industry-hero h2 {
    font-size: 24px;
  }
}

/* === Industry Sections === */
.industry-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.industry-section.bg-light {
  background: #F8FAFC;
}

.industry-header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.industry-header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan) 0%, transparent 100%);
  opacity: 0.3;
}

.industry-header h2 {
  margin-top: 8px;
  color: #0E2247;
  font-size: 28px;
}

.industry-use-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.use-case-card {
  padding: 24px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  border-top: 3px solid var(--cyan);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.use-case-card:hover {
  box-shadow: 0 8px 30px rgba(0, 174, 239, 0.1);
  transform: translateY(-4px);
  border-color: var(--cyan);
}

.use-case-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0E2247;
  margin-bottom: 8px;
}

.use-case-card p {
  font-size: 15px;
  color: #64748B;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .industry-use-cases {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .industry-use-cases {
    grid-template-columns: 1fr;
  }
  .industry-header {
    flex-direction: column;
  }
}

/* === Footer - Light === */
.footer {
  padding: 48px 0 24px;
  background: #F1F5F9;
  border-top: 1px solid #E2E8F0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__logo {
  height: 32px;
  width: auto;
}

.footer__wordmark {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 15px;
  color: #1E293B;
}

.footer__tagline {
  font-size: 14px;
  color: #64748B;
  margin-top: 12px;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__link {
  font-size: 15px;
  color: #475569;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--cyan);
}

.footer__copyright {
  font-size: 14px;
  color: #94A3B8;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #E2E8F0;
}

@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    gap: 24px;
  }
  .footer__links {
    flex-wrap: wrap;
    gap: 16px;
  }
}
