/* ============================================
   POINTS — THEME 1: TECH NEON (LIGHT)
   ============================================ */

:root {
  /* ===============================
     POINTS COLORS (TECH NEON)
  =============================== */
  --ebpt20-section-background-color: #f8fafc;

  --ebpt20-badge-background-color: rgba(0, 180, 216, 0.08);
  --ebpt20-badge-border-color: rgba(0, 180, 216, 0.2);
  --ebpt20-badge-text-color: #00b4d8;
  
  --ebpt20-title-text-color: #0f172a;
  --ebpt20-title-highlight-text-color: #00b4d8;
  --ebpt20-subtitle-text-color: #64748b;

  --ebpt20-timeline-line-color: linear-gradient(90deg, rgba(0, 180, 216, 0.1) 0%, #00b4d8 50%, rgba(0, 180, 216, 0.1) 100%);

  --ebpt20-card-background-color: #ffffff;
  --ebpt20-card-border-color: rgba(0, 180, 216, 0.15);
  --ebpt20-card-hover-border-color: rgba(0, 180, 216, 0.4);
  --ebpt20-card-hover-shadow: 0 12px 30px rgba(0, 180, 216, 0.1);

  --ebpt20-card-icon-background-color: #ffffff;
  --ebpt20-card-icon-border-color: #00b4d8;
  --ebpt20-card-icon-color: #00b4d8;
  --ebpt20-card-icon-shadow: 0 0 15px rgba(0, 180, 216, 0.15);
  --ebpt20-card-icon-hover-background-color: #00b4d8;
  --ebpt20-card-icon-hover-color: #ffffff;
  --ebpt20-card-icon-hover-shadow: 0 0 25px rgba(0, 180, 216, 0.3);

  --ebpt20-card-number-background-color: #0f172a;
  --ebpt20-card-number-text-color: #ffffff;

  --ebpt20-card-title-text-color: #0f172a;
  --ebpt20-card-description-text-color: #64748b;

  /* ===============================
     POINTS LAYOUT & TIMINGS
  =============================== */
  --ebpt20-radius: 16px;
  --ebpt20-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

.ebpt20-section {
  position: relative;
  background-color: var(--ebpt20-section-background-color);
  padding: 4rem 0;
  overflow: hidden;
}

.ebpt20-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  padding: 0 2rem;
  margin: 0 auto;
}

/* Header */
.ebpt20-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ebpt20-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ebpt20-badge-background-color);
  border: 1px solid var(--ebpt20-badge-border-color);
  color: var(--ebpt20-badge-text-color);
  padding: 0.4rem 1.1rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
}

.ebpt20-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ebpt20-title-text-color);
  line-height: 1.2;
}

.ebpt20-title-highlight {
  color: var(--ebpt20-title-highlight-text-color);
}

.ebpt20-subtitle {
  font-size: 1.05rem;
  color: var(--ebpt20-subtitle-text-color);
  line-height: 1.7;
}

/* Timeline Layout wrapper */
.ebpt20-steps-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 1.5rem;
}

/* Desktop Connecting Timeline Line */
.ebpt20-steps-wrapper::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--ebpt20-timeline-line-color);
  z-index: 1;
}

@media (max-width: 1024px) {
  .ebpt20-steps-wrapper {
    flex-direction: column;
    gap: 3rem;
  }
  .ebpt20-steps-wrapper::before {
    top: 5%;
    bottom: 5%;
    left: 40px;
    right: auto;
    width: 2px;
    height: 90%;
  }
}

/* Step Card */
.ebpt20-step-card {
  flex: 1;
  background: var(--ebpt20-card-background-color);
  border: 1px solid var(--ebpt20-card-border-color);
  border-radius: var(--ebpt20-radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s var(--ebpt20-ease), border-color 0.4s var(--ebpt20-ease), box-shadow 0.4s var(--ebpt20-ease);
}

@media (max-width: 1024px) {
  .ebpt20-step-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    text-align: right;
    align-items: center;
    padding: 2rem;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .ebpt20-step-card {
    padding: 1.5rem;
    gap: 1rem 1.25rem;
  }
}

.ebpt20-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--ebpt20-card-hover-border-color);
  box-shadow: var(--ebpt20-card-hover-shadow);
}

/* Step Header */
.ebpt20-step-header {
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 1024px) {
  .ebpt20-step-header {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
  }
}

/* Step Icon container */
.ebpt20-step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--ebpt20-card-icon-background-color);
  border: 2px solid var(--ebpt20-card-icon-border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: var(--ebpt20-card-icon-color);
  box-shadow: var(--ebpt20-card-icon-shadow);
  transition: all 0.3s var(--ebpt20-ease);
}

.ebpt20-step-card:hover .ebpt20-step-icon {
  background: var(--ebpt20-card-icon-hover-background-color);
  color: var(--ebpt20-card-icon-hover-color);
  box-shadow: var(--ebpt20-card-icon-hover-shadow);
}

/* Step Number indicator */
.ebpt20-step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--ebpt20-card-number-background-color);
  color: var(--ebpt20-card-number-text-color);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

/* Step Body */
.ebpt20-step-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (max-width: 1024px) {
  .ebpt20-step-body {
    display: contents;
  }
}

.ebpt20-step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ebpt20-card-title-text-color);
}

@media (max-width: 1024px) {
  .ebpt20-step-title {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }
}

.ebpt20-step-desc {
  font-size: 0.9rem;
  color: var(--ebpt20-card-description-text-color);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .ebpt20-step-desc {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

/* Animations */
.ebpt20-anim-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ebpt20-ease), transform 0.8s var(--ebpt20-ease);
}

.ebpt20-anim-up.ebpt20-visible {
  opacity: 1;
  transform: translateY(0);
}

.ebpt20-delay-1 { transition-delay: 0.1s; }
.ebpt20-delay-2 { transition-delay: 0.25s; }
.ebpt20-delay-3 { transition-delay: 0.4s; }
.ebpt20-delay-4 { transition-delay: 0.55s; }
