/* ============================================
   HOME PROCESS SECTION - SITE 2
   ============================================ */

.home-process-2 {
  padding: 80px 0;
  background: #f9fafb;
}

/* ============================================
   HEADER
   ============================================ */

.home-process-2 .eyebrow {
  font-size: var(--section-eyebrow-size);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 20px 0;
  letter-spacing: 0.5px;
  text-align: center;
}

.home-process-2 h2 {
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  font-size: var(--section-heading-size);
  line-height: 1.2;
  color: var(--color-text-dark);
  margin: 0 0 60px 0;
  text-align: center;
}

/* ============================================
   PROCESS CARDS
   ============================================ */

.home-process-2 .process-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* ALL cards - SAME FIXED SIZE */
.home-process-2 .process-card {
  background: var(--color-white);
  padding: 35px 25px;
  width: 320px;
  height: 320px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* ONLY center card - elevated and slightly bigger */
.home-process-2 .process-card.elevated {
  width: 360px;
  height: 360px;
  transform: translateY(-30px);
  box-shadow: 0 10px 40px rgba(120, 104, 230, 0.15);
}

.home-process-2 .process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.home-process-2 .process-card.elevated:hover {
  transform: translateY(-38px);
  box-shadow: 0 15px 50px rgba(120, 104, 230, 0.2);
}

/* ALL cards - default number size */
.home-process-2 .number {
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  font-size: 42px;
  margin: 0 0 20px 0;
  line-height: 1;
}

/* ONLY center card - bigger number */
.home-process-2 .process-card.elevated .number {
  font-size: 56px;
}

/* ALL cards - default description size */
.home-process-2 .description {
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

/* ONLY center card - bigger description */
.home-process-2 .process-card.elevated .description {
  font-size: 17px;
}

/* Hidden cards (4+) */
.home-process-2 .process-card.hidden-card {
  display: none;
}

/* ============================================
   VIEW MORE BUTTON
   ============================================ */

.home-process-2 .view-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.home-process-2 .btn-view-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.home-process-2 .btn-view-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(120, 104, 230, 0.3);
  background: var(--color-accent);
}

.home-process-2 .btn-view-more .icon {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.home-process-2 .btn-view-more.expanded .icon {
  transform: rotate(180deg);
}

/* ============================================
   TABLET (1024px - 1199px)
   ============================================ */

@media (max-width: 1199px) and (min-width: 1024px) {
  .home-process-2 {
    padding: 60px 0;
  }

  .home-process-2 h2 {
    font-size: var(--section-heading-size-tablet);
    margin-bottom: 50px;
  }

  .home-process-2 .process-cards {
    gap: 25px;
  }

  /* All cards */
  .home-process-2 .process-card {
    padding: 30px 20px;
    width: 280px;
    height: 300px;
  }

  /* Center card */
  .home-process-2 .process-card.elevated {
    width: 320px;
    height: 340px;
    transform: translateY(-25px);
  }

  .home-process-2 .process-card.elevated:hover {
    transform: translateY(-30px) scale(1.05);
  }

  /* All numbers */
  .home-process-2 .number {
    font-size: 38px;
  }

  /* Center number */
  .home-process-2 .process-card.elevated .number {
    font-size: 48px;
  }

  /* All descriptions */
  .home-process-2 .description {
    font-size: 14px;
  }

  /* Center description */
  .home-process-2 .process-card.elevated .description {
    font-size: 16px;
  }
}

/* ============================================
   MOBILE (<1024px)
   ============================================ */

@media (max-width: 1023px) {
  .home-process-2 {
    padding: 50px 0;
  }

  .home-process-2 .eyebrow {
    font-size: 11px;
  }

  .home-process-2 h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .home-process-2 .process-cards {
    flex-direction: column;
    gap: 25px;
  }

  /* All cards same size on mobile */
  .home-process-2 .process-card,
  .home-process-2 .process-card.elevated {
    padding: 30px 25px;
    width: 100%;
    max-width: 500px;
    height: auto;
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .home-process-2 .process-card:hover,
  .home-process-2 .process-card.elevated:hover {
    transform: translateY(-5px) scale(1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  /* All numbers same size */
  .home-process-2 .number,
  .home-process-2 .process-card.elevated .number {
    font-size: 38px;
  }

  /* All descriptions same size */
  .home-process-2 .description,
  .home-process-2 .process-card.elevated .description {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .home-process-2 h2 {
    font-size: 24px;
  }

  .home-process-2 .process-card,
  .home-process-2 .process-card.elevated {
    padding: 25px 20px;
  }

  .home-process-2 .number,
  .home-process-2 .process-card.elevated .number {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .home-process-2 .description,
  .home-process-2 .process-card.elevated .description {
    font-size: 13px;
  }
}
