@layer base {
  .container {
    margin-bottom: var(--spacing-12);
  }

  .header {
    text-align: center;
    margin-bottom: var(--spacing-8);
  }

  .header h2 {
    font-family: var(--font-family-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: var(--spacing-2);
  }

  .header p {
    color: var(--muted-foreground);
    font-size: 1.1rem;
  }

  .processGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-6);
    margin-bottom: var(--spacing-8);
    position: relative;
  }

  .processStep {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
  }

  .stepIcon {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-4);
    box-shadow: var(--shadow-md);
  }

  .icon {
    font-size: 2rem;
  }

  .stepNumber {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    border: 2px solid var(--card);
  }

  .stepContent h3 {
    font-family: var(--font-family-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: var(--spacing-2);
  }

  .stepContent p {
    color: var(--muted-foreground);
    line-height: 1.6;
  }

  .connector {
    position: absolute;
    top: 40px;
    left: calc(100% + var(--spacing-3));
    width: var(--spacing-6);
    height: 2px;
    background: var(--gradient-primary);
    z-index: -1;
  }

  .processStep:last-child .connector {
    display: none;
  }

  .commitment {
    display: flex;
    justify-content: center;
  }

  .commitmentCard {
    background: var(--gradient-secondary);
    color: white;
    padding: var(--spacing-6);
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 600px;
    box-shadow: var(--shadow-lg);
  }

  .commitmentCard h3 {
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-3);
  }

  .commitmentCard p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
  }

  .commitmentCard strong {
    font-weight: 700;
  }

  @media (max-width: 768px) {
    .processGrid {
      grid-template-columns: 1fr;
      gap: var(--spacing-8);
    }

    .connector {
      display: none;
    }

    .commitmentCard {
      margin: 0 var(--spacing-4);
    }

    .header h2 {
      font-size: 1.5rem;
    }
  }

  @media (max-width: 1024px) {
    .connector {
      display: none;
    }
  }
}