.cta {
    padding: 140px 0;
    text-align: center;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    color: #fff;
  }

  .cta h2 {
    font-size: 34px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }

  .cta p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
    line-height: 1.8;
  }

  .cta-status {
    font-size: 15px;
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  .cta-time {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 40px;
    line-height: 1.8;
  }

  .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn-primary,
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 56px;
    padding: 0 28px;
    font-size: 13px;
    letter-spacing: 0.06em;
    transition: all 0.3s ease;
    border-radius: 0;
    text-decoration: none;
  }

  .btn-primary {
    background: #fff;
    color: #111;
    border: 1px solid #fff;
  }

  .btn-primary:hover {
    background: transparent;
    color: #fff;
  }

  .btn-secondary {
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    background: transparent;
  }

  .btn-secondary:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
  }
