/**
 * Industries Page Styles
 * Sales Fundas Theme by Infineural Technologies
 * Synchronized with 06-industries.html prototype
 */

/* =========================================================
   PAGE HERO
   ========================================================= */
.page-hero {
  background: var(--navy);
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 32px 32px;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold);
}
.hero-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.hero-kicker::before,
.hero-kicker::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}
.hero-h1 {
  font-family: var(--fd);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 28px;
}
.hero-h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 40px;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================================================
   INDUSTRY NAVIGATION (Sticky)
   ========================================================= */
.ind-nav {
  background: var(--gold);
  padding: 0;
  position: sticky;
  top: 72px;
  z-index: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.ind-nav-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.ind-nav-inner::-webkit-scrollbar {
  display: none;
}
.ind-nav-item {
  flex-shrink: 0;
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  white-space: nowrap;
  border-right: 1px solid rgba(11,31,58,.12);
  transition: background var(--t-fast);
  display: inline-block;
}
.ind-nav-item:hover,
.ind-nav-item.active {
  background: rgba(11,31,58,.12);
}

/* =========================================================
   INDUSTRY BLOCKS
   ========================================================= */
.industries-section {
  background: var(--white);
  padding: 100px 0;
}
.ind-block {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}
.ind-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.ind-block-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}
.ind-sidebar {
  position: sticky;
  top: 140px;
}
.ind-icon-big {
  font-size: 56px;
  margin-bottom: 20px;
}
.ind-name-big {
  font-family: var(--fd);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.ind-tagline {
  font-size: 16px;
  color: var(--g2);
  line-height: 1.65;
  margin-bottom: 24px;
}
.ind-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.ind-service-tag {
  background: var(--teal-lt);
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: .04em;
}
.ind-content h3 {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.pain-list {
  list-style: none;
  margin-bottom: 32px;
}
.pain-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--g2);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.pain-list li:last-child {
  border-bottom: none;
}
.pain-list li::before {
  content: '⚠';
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.sf-does {
  background: var(--teal-lt);
  border-radius: 14px;
  padding: 28px 32px;
}
.sf-does h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.sf-does p {
  font-size: 15px;
  color: #2D6B62;
  line-height: 1.7;
}
.ind-keywords {
  margin-top: 16px;
  font-size: 12px;
  color: var(--g2);
}

/* =========================================================
   CROSS-INDUSTRY SECTION
   ========================================================= */
.cross-section {
  background: var(--navy);
  padding: 100px 0;
}
.cross-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cross-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.cross-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
}
.cross-card .ico {
  font-size: 28px;
  margin-bottom: 12px;
}
.cross-card p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}

/* =========================================================
   FINAL CTA SECTION
   ========================================================= */
.final-cta {
  padding: 120px 0;
  text-align: center;
  background: var(--off);
}
.final-cta h2 {
  font-family: var(--fd);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--navy);
  max-width: 640px;
  margin: 0 auto 20px;
  line-height: 1.2;
}
.final-cta p {
  font-size: 17px;
  color: var(--g2);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media(max-width: 900px) {
  .ind-block-inner {
    grid-template-columns: 1fr;
  }
  .ind-sidebar {
    position: static;
  }
  .cross-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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