/**
 * HRS OUTBOOKS LLC — INDUSTRIES PAGE STYLES
 */

.page-industries {
  background: var(--navy-dark);
}

/* ─── Hero Section ─── */
.industries-hero {
  position: relative;
  padding: 180px 0 100px;
  background-color: #041E42;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.industries-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 30, 66, 0.95) 0%, rgba(11, 61, 145, 0.9) 100%);
  z-index: 1;
}

.industries-hero .container {
  position: relative;
  z-index: 2;
}

/* ─── Grid layout ─── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 28px;
  padding: 40px 0;
}

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

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

/* ─── Card Design ─── */
.industry-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.industry-card:hover {
  border-color: rgba(30, 94, 255, 0.35);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(30, 94, 255, 0.2);
}

.industry-card:hover::before {
  opacity: 0.05;
}

.industry-card > * {
  position: relative;
  z-index: 1;
}

/* Icon & Badge */
.ic-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.ic-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(30, 94, 255, 0.3);
}

.ic-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  background: rgba(0, 198, 255, 0.12);
  border: 1px solid rgba(0, 198, 255, 0.25);
  border-radius: 20px;
  color: var(--cyan-accent);
}

/* Card Content */
.ic-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.ic-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Features List */
.ic-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}

.ic-features li {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ic-features li svg {
  flex-shrink: 0;
}

/* Card Action */
.ic-action {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.ic-action svg {
  transition: transform 0.3s ease;
}

.industry-card:hover .ic-action {
  color: var(--white);
}

.industry-card:hover .ic-action svg {
  transform: translateX(4px);
}
