/**
 * Module: Enterprise Start Prove Scale
 * Figma Node: 417:1458
 * Generated: 2025-12-12
 *
 * Solve Today. Scale Tomorrow. We Can Get You Started.
 * 3-step journey cards with CTA
 */

/* ==========================================================================
   Variables
   ========================================================================== */

:root {
  /* Colors */
  --enterprise-orange: #F7941D;
  --enterprise-dark-blue: #121C66;
  --enterprise-white: #FFFFFF;

  /* Typography */
  --enterprise-font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Border Radius */
  --enterprise-radius-medium: 20px;
  --enterprise-radius-pill: 500px;
}

/* ==========================================================================
   Section Container
   ========================================================================== */

.enterprise-start-prove-scale {
  background-color: var(--enterprise-orange);
  background-image: url('../../images/start-prove-scale-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  padding: 93px 120px;
  position: relative;
  overflow: hidden;
}

.enterprise-start-prove-scale__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: 1512px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Section Header
   ========================================================================== */

.enterprise-start-prove-scale__header {
  text-align: center;
}

.enterprise-start-prove-scale__title {
  font-family: var(--enterprise-font-family);
  font-size: 64px;
  font-weight: 700;
  color: var(--enterprise-white);
  line-height: normal;
  margin: 0;
}

/* ==========================================================================
   Journey Cards Grid
   ========================================================================== */

.enterprise-start-prove-scale__cards {
  display: flex;
  gap: 45px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1200px;
}

/* ==========================================================================
   Individual Card
   ========================================================================== */

.enterprise-start-prove-scale__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  flex: 1 1 33.333%;
  max-width: 360px;
  background-color: var(--enterprise-white);
  border-radius: var(--enterprise-radius-medium);
  padding: 48px 32px;
  text-align: center;
}

.enterprise-start-prove-scale__card-title {
  font-family: var(--enterprise-font-family);
  font-size: 30px;
  font-weight: 700;
  color: var(--enterprise-dark-blue);
  line-height: normal;
  margin: 0;
  order: 1;
}

.enterprise-start-prove-scale__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  order: 2;
}

/* Handle both direct img and picture wrapper (WordPress responsive images) */
.enterprise-start-prove-scale__card-icon-img,
.enterprise-start-prove-scale__card-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.enterprise-start-prove-scale__card-description {
  font-family: var(--enterprise-font-family);
  font-size: 18px;
  font-weight: 400;
  color: var(--enterprise-dark-blue);
  line-height: normal;
  margin: 0;
  order: 3;
  max-width: 280px;
}

/* ==========================================================================
   CTA Button
   Uses global .workjam-cta-button class
   ========================================================================== */

.enterprise-start-prove-scale__cta {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

/* Large Desktop - reduce gaps */
@media (max-width: 1400px) {
  .enterprise-start-prove-scale {
    padding: 80px 80px;
  }

  .enterprise-start-prove-scale__title {
    font-size: 56px;
  }

  .enterprise-start-prove-scale__cards {
    gap: 30px;
  }
}

/* Tablet Landscape - maintain 3 columns but smaller */
@media (max-width: 1200px) {
  .enterprise-start-prove-scale {
    padding: 60px 45px;
  }

  .enterprise-start-prove-scale__title {
    font-size: 48px;
  }

  .enterprise-start-prove-scale__cards {
    gap: 24px;
  }

  .enterprise-start-prove-scale__card {
    padding: 36px 24px;
    gap: 28px;
  }

  .enterprise-start-prove-scale__card-icon {
    width: 100px;
    height: 100px;
  }

  .enterprise-start-prove-scale__card-description {
    font-size: 16px;
  }
}

/* Tablet Portrait - 2 columns, third card on new row */
@media (max-width: 900px) {
  .enterprise-start-prove-scale {
    padding: 50px 30px;
  }

  .enterprise-start-prove-scale__title {
    font-size: 40px;
  }

  .enterprise-start-prove-scale__cards {
    flex-wrap: wrap;
    max-width: 600px;
    gap: 24px;
  }

  .enterprise-start-prove-scale__card {
    flex: 1 1 45%;
    max-width: 280px;
  }

  /* Center the third card */
  .enterprise-start-prove-scale__card:nth-child(3) {
    flex: 1 1 100%;
    max-width: 280px;
  }
}

/* Mobile - single column */
@media (max-width: 768px) {
  .enterprise-start-prove-scale {
    padding: 40px 20px;
  }

  .enterprise-start-prove-scale__container {
    gap: 36px;
  }

  .enterprise-start-prove-scale__title {
    font-size: 32px;
  }

  .enterprise-start-prove-scale__cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 100%;
  }

  .enterprise-start-prove-scale__card {
    flex: 1 1 100%;
    max-width: 400px;
    width: 100%;
    padding: 32px 24px;
    gap: 24px;
  }

  .enterprise-start-prove-scale__card:nth-child(3) {
    flex: 1 1 100%;
    max-width: 400px;
  }

  .enterprise-start-prove-scale__card-title {
    font-size: 26px;
  }

  .enterprise-start-prove-scale__card-icon {
    width: 90px;
    height: 90px;
  }

  .enterprise-start-prove-scale__card-description {
    font-size: 16px;
    max-width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .enterprise-start-prove-scale__title {
    font-size: 28px;
  }

  .enterprise-start-prove-scale__card {
    padding: 28px 20px;
  }

  .enterprise-start-prove-scale__card-title {
    font-size: 24px;
  }

  .enterprise-start-prove-scale__card-icon {
    width: 80px;
    height: 80px;
  }

  .enterprise-start-prove-scale__card-description {
    font-size: 15px;
  }
}
