
 
  

  
  .secondary-button {
    all: unset;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid #ffffff;
    border-radius: 8px;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: -0.16px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .secondary-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
  }
  

  

  .discovery-process {
    padding: 120px 0;
    background: rgba(24, 24, 36, 0.5);
  }
  
  .process-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 50px;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 80px;
  }
  
  .section-title {
    font-family: "Inter", Helvetica;
    font-weight: 400;
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -1.2px;
    line-height: 1.1;
    background: linear-gradient(0deg, rgba(210, 210, 217, 1) 14%, rgba(255, 255, 255, 1) 85%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 16px 0;
  }
  
  .section-subtitle {
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: clamp(16px, 2.5vw, 18px);
    letter-spacing: -0.16px;
    line-height: 1.4;
    opacity: 0.8;
    margin: 0;
  }
  
  .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
  }
  
  .process-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  
  .process-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 82, 49, 0.3);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2);
  }
  
  .card-icon {
    margin-bottom: 24px;
  }
  
  .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 82, 49, 0.2) 0%, rgba(215, 0, 0, 0.2) 100%);
    border: 2px solid rgba(255, 82, 49, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .icon-number {
    font-family: "Inter", Helvetica;
    font-weight: 600;
    font-size: 18px;
    color: #ff5231;
  }
  
  .card-title {
    font-family: "Inter", Helvetica;
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    margin: 0 0 16px 0;
    letter-spacing: -0.2px;
  }
  
  .card-description {
    font-family: "Inter", Helvetica;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    opacity: 0.8;
    line-height: 1.5;
    margin: 0;
  }
  

  .discovery-timeline {
    padding: 120px 0;
    background: rgba(24, 24, 36, 0.3);
  }
  
  .timeline-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 50px;
  }
  
  .timeline-header {
    text-align: center;
    margin-bottom: 80px;
  }
  
  .timeline-title {
    font-family: "Inter", Helvetica;
    font-weight: 400;
    font-size: clamp(32px, 4vw, 42px);
    letter-spacing: -1.2px;
    line-height: 1.1;
    background: linear-gradient(0deg, rgba(210, 210, 217, 1) 14%, rgba(255, 255, 255, 1) 85%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 16px 0;
  }
  
  .timeline-subtitle {
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    opacity: 0.8;
    margin: 0;
  }
  
  .timeline-content {
    position: relative;
  }
  
  .timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .timeline-item:last-child {
    margin-bottom: 0;
  }
  
  .timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
  }
  
  .marker-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff5231 0%, #d70000 100%);
    box-shadow: 0 0 0 4px rgba(255, 82, 49, 0.2);
  }
  
  .marker-line {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255, 82, 49, 0.5) 0%, rgba(255, 82, 49, 0.1) 100%);
    margin-top: 8px;
  }
  
  .timeline-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }
  
  .timeline-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
  }
  
  .timeline-date {
    font-family: "Inter", Helvetica;
    font-weight: 600;
    font-size: 14px;
    color: #ff5231;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
  }
  
  .timeline-card-title {
    font-family: "Inter", Helvetica;
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: -0.2px;
  }
  
  .timeline-card-description {
    font-family: "Inter", Helvetica;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    opacity: 0.8;
    line-height: 1.5;
    margin: 0;
  }
  

  @media (max-width: 1200px) {
  
    .process-container,
    .timeline-container {
      padding: 0 30px;
    }
  
  
  }
  
  @media (max-width: 992px) {

  
    .process-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
  
    .timeline-item {
      gap: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .discovery-process,
    .discovery-timeline {
      padding: 80px 0;
    }

    .process-container,
    .timeline-container {
      padding: 0 20px;
    }
  
    .section-header {
      margin-bottom: 60px;
    }
  

  
 
  
    .process-grid {
      grid-template-columns: 1fr;
      gap: 25px;
    }
  
    .process-card {
      padding: 30px 25px;
    }
  
    .timeline-item {
      gap: 20px;
    }
  
    .timeline-card {
      padding: 25px;
    }
  }
  
  @media (max-width: 480px) {
    .discovery-process,
    .discovery-timeline {
      padding: 60px 0;
    }
  
   
    .process-container,
    .timeline-container {
      padding: 0 15px;
    }
  
    .process-card {
      padding: 25px 20px;
    }
  
    .timeline-card {
      padding: 20px;
    }
  
    .marker-line {
      height: 60px;
    }
  }
  