/* Company Page Styles */

/* Color Variables */
:root {
  --moov-blue: #0a2540;
  --moov-blue-light: #1a3a5c;
  --magenta: #e157b4;
  --green-check: #22c55e;
  --gray-75: #f4f5f6;
  --smokey-gray-50: #fafafa;
}

/* Typography */
body {
  font-family: 'Lato', sans-serif;
  color: var(--moov-blue);
}

/* Hero Banner */
.hero-banner {
  background-image: url('/template/trade/imgs/hero-gradient.png');
  background-size: cover;
  background-position: center;
  padding: 4rem 1.5rem;
  text-align: center;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--moov-blue);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--moov-blue);
  font-weight: 400;
  margin-bottom: 0;
}

/* Section Padding */
.section-padding {
  padding: 4rem 1.5rem;
}

/* Background Colors */
.bg-light {
  background-color: var(--smokey-gray-50) !important;
}

.bg-gray {
  background-color: var(--gray-75) !important;
}

/* Section Label */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--magenta);
  margin-bottom: 0.5rem;
}

/* Section Title */
.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--moov-blue);
  margin-bottom: 0;
}

/* Info Text */
.info-text {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--moov-blue);
  margin-bottom: 0.75rem;
}

.info-text strong {
  font-weight: 700;
}

/* Check List */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  margin-bottom: 0.75rem;
}

.check-list .info-text {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
}

/* Check Icon */
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.75rem;
  color: var(--green-check);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Responsive - Desktop (lg) */
@media (min-width: 992px) {
  .hero-banner {
    padding: 10rem 18rem;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .section-padding {
    padding: 5rem 2rem;
  }

  .info-text {
    font-size: 1.5rem;
  }

  .check-icon {
    width: 2.125rem;
    height: 2.125rem;
    font-size: 1.375rem;
  }
}

/* Responsive - Mobile */
@media (max-width: 576px) {
  .hero-banner {
    padding: 4rem 1.5rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-padding {
    padding: 3rem 1rem;
  }

  .info-text {
    font-size: 1rem;
  }
}