/* CIDE INDUSTRY SERVICES — Page-Specific Stylesheet
   Depends on: cide-global.css (load that first)
   Last updated: 2026-05-26
   ============================================================
   Only rules that are NOT in cide-global.css live here.
   Do NOT add global components to this file.
   ============================================================

   Contents:
   1. Package Cards (.cide-package-card, --gold, --silver, --custom)
   2. Custom Column (.col-md-2-4)
   3. Timeline (.timeline-row, .step-number)
   4. CTA Section Override (left-aligned 350px variant, overrides global centered)
*/


/* ============================================================
   1. PACKAGE CARDS
   Industry Services only — three tiers: gold, silver, custom
   ============================================================ */

.cide-package-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--white);
  border-radius: 0 4px 4px 0;
  padding: 20px 24px;
  gap: 8px;
}

.cide-package-card strong {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

.cide-package-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.cide-package-card--gold {
  border: 1px solid var(--cu-gold);
  border-left: 4px solid var(--cu-gold);
}

.cide-package-card--silver {
  border: 1px solid #999999;
  border-left: 4px solid #999999;
}

.cide-package-card--custom {
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--border-light);
}


/* ============================================================
   2. CUSTOM COLUMN WIDTH
   5-column grid (20% each) for package tier display
   ============================================================ */

.col-md-2-4 {
  flex: 0 0 20%;
  max-width: 20%;
}

@media (max-width: 767.98px) {
  .col-md-2-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}


/* ============================================================
   3. TIMELINE
   Process steps with connecting line above step numbers
   ============================================================ */

.timeline-row {
  position: relative;
}

.timeline-row::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background-color: var(--text-dark);
  z-index: 0;
}

@media (max-width: 767.98px) {
  .timeline-row::before {
    display: none;
  }
}

.timeline-row .small {
  font-size: 1rem !important;
  line-height: 1.6;
}

.timeline-row h5 {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.timeline-row ~ .text-center h2,
.text-center.mb-5 h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.text-center.mb-5 p {
  font-size: 1.15rem !important;
  color: var(--text-muted);
}

.step-number {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cu-gold);
  color: #000;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ============================================================
   4. CTA SECTION OVERRIDE
   Industry Services uses a left-aligned fixed-width CTA column.
   Global default (.cide-ctaSection--centered) is full-width and
   centered — this override resets it for this page only.
   ============================================================ */

.cide-content .cide-ctaSection--centered {
  flex: unset;
  width: 350px;
  margin-left: 0;
  margin-right: auto;
  align-items: flex-start; /* override global's center alignment */
}

.cide-content .cide-ctaSection--centered h4 {
  text-align: left; /* override global's centered heading */
}
