 /* --- CUSTOM PROCESS STYLES --- */
  .process-section {
    background-color: #031119;
    color: #e0e0e0;
    padding: 100px 0;
    height: auto;
  }

  .phases-section {
    background-color: #000000;
    color: #e0e0e0;
    padding: 80px 0 120px 0;
  }

  .main-titles {
    font-family: "Protest Revolution", sans-serif;
    color: #ffffff;
    font-weight: 500;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
  }

  .main-titles::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #ff007f;
    margin: 15px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px #ff007f, 0 0 20px #ff007f;
  }

  /* Karty pro Termín, Záloha, Návrh */
  .step-card {
    background: #051b26;
    border: 1px solid rgba(255, 0, 127, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 127, 0.5);
    box-shadow: 0 10px 30px rgba(255, 0, 127, 0.15);
  }

  .step-number {
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    z-index: -1;
    line-height: 1;
  }

  .step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 127, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: #ff007f;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.2);
  }

  .step-card h3 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  .step-card p {
    color: #b0b8bc;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  /* Fáze - Timeline styl (Před, V den, Po) */
  .phase-container {
    max-width: 900px;
    margin: 0 auto;
  }

  .phase-block {
    position: relative;
    padding-left: 50px;
    margin-bottom: 60px;
  }

  .phase-block:last-child {
    margin-bottom: 0;
  }

  /* Svislá čára */
  .phase-block::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: -60px;
    width: 2px;
    background: rgba(255, 0, 127, 0.2);
  }

  .phase-block:last-child::before {
    bottom: 0;
  }

  /* Tečka na časové ose */
  .phase-block::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: #ff007f;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff007f, 0 0 20px #ff007f;
  }

  .phase-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    display: inline-block;
  }

  .phase-content p {
    color: #b0b8bc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
  }

  .phase-content b, .phase-content strong {
    color: #ffffff;
    font-weight: 600;
  }
  
  /* Zvýraznění odstavce */
  .highlight-p {
    background: rgba(255, 0, 127, 0.03);
    border-left: 3px solid #ff007f;
    padding: 15px 20px;
    border-radius: 0 10px 10px 0;
  }
