.agenda-section {
  position: relative;
  overflow: hidden;
  padding: 60px 24px;
  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(240, 84, 45, 0.14),
      transparent 34%
    ),
    radial-gradient(
      circle at 90% 85%,
      rgba(213, 47, 103, 0.13),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      #020d1d 0%,
      #071d37 52%,
      #031326 100%
    );
  font-family: Arial, Helvetica, sans-serif;
}

.agenda-section,
.agenda-section * {
  box-sizing: border-box;
}

.agenda-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.12) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.12) 1px,
      transparent 1px
    );
  background-size: 70px 70px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 18%,
    #000 82%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 18%,
    #000 82%,
    transparent
  );
}

.agenda-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}

.agenda-glow-one {
  width: 330px;
  height: 330px;
  top: -160px;
  left: -130px;
  background: rgba(240, 84, 45, 0.25);
}

.agenda-glow-two {
  width: 320px;
  height: 300px;
  right: -170px;
  bottom: -190px;
  background: rgba(213, 47, 103, 0.19);
}

.agenda-container {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  margin: 0 auto;
}

.agenda-heading {
  max-width: 730px;
  margin: 0 auto 40px;
  text-align: center;
}

.agenda-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 17px;
  padding: 0 18px;
  margin-bottom: 20px;
  border: 1px solid rgba(240, 84, 45, 0.48);
  border-radius: 50px;
  background: rgba(240, 84, 45, 0.1);
  color: #ff7855;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.agenda-heading h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.agenda-heading p {
  max-width: 650px;
  margin: 0 auto;
  color: #9cafc4;
  font-size: 14px;
  line-height: 1.75;
}

.agenda-timeline {
  position: relative;
  display: grid;
  gap: 17px;
}

.agenda-item {
  position: relative;
  display: grid;
  grid-template-columns: 150px 34px minmax(0, 1fr);
  align-items: stretch;
}

.agenda-time {
  padding: 20px 20px 25px 0;
  text-align: right;
}

.agenda-time span,
.agenda-time small {
  display: block;
}

.agenda-time span {
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.agenda-time small {
  color: #ff7855;
  font-size: 13px;
  font-weight: 600;
}

.agenda-marker {
  position: relative;
  display: flex;
  justify-content: center;
}

.agenda-marker::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -22px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(240, 84, 45, 0.75),
    rgba(213, 47, 103, 0.22)
  );
}

.agenda-item-last .agenda-marker::before {
  bottom: 50%;
}

.agenda-marker span {
  position: relative;
  z-index: 2;
  width: 10px;
  height: 10px;
  margin-top: 30px;
  border: 3px solid #071d37;
  border-radius: 50%;
  background: #f0542d;
  box-shadow:
    0 0 0 4px rgba(240, 84, 45, 0.18),
    0 0 20px rgba(240, 84, 45, 0.65);
}

.agenda-card {
  position: relative;
  overflow: hidden;
  min-height: 100px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.035),
      transparent
    ),
    rgba(5, 24, 46, 0.86);
  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.agenda-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #f0542d,
    #d52f67
  );
}

.agenda-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 170px;
  height: 120px;
  border-radius: 50%;
  background: rgba(240, 84, 45, 0.09);
  filter: blur(18px);
  pointer-events: none;
}

.agenda-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 84, 45, 0.34);
  box-shadow:
    0 26px 65px rgba(0, 0, 0, 0.32),
    0 0 28px rgba(240, 84, 45, 0.07);
}

.agenda-item-featured .agenda-card {
  border-color: rgba(240, 84, 45, 0.22);
  background:
    linear-gradient(
      135deg,
      rgba(240, 84, 45, 0.08),
      rgba(213, 47, 103, 0.035)
    ),
    rgba(5, 24, 46, 0.9);
}

.agenda-card-number {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 84, 45, 0.38);
  border-radius: 14px;
  background: rgba(240, 84, 45, 0.11);
  color: #ff7855;
  font-size: 13px;
  font-weight: 800;
}

.agenda-card-content {
  position: relative;
  z-index: 2;
}

.agenda-type {
  display: block;
  margin-bottom: 8px;
  color: #ff7855;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.agenda-card-content h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(15px, 2vw, 20px);
  line-height: 1.35;
}

.agenda-card-content p {
  max-width: 720px;
  margin: 0;
  color: #93a7bd;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 800px) {
  .agenda-section {
    padding: 80px 20px;
  }

  .agenda-heading {
    margin-bottom: 45px;
  }

  .agenda-item {
    grid-template-columns: 105px 26px minmax(0, 1fr);
  }

  .agenda-time {
    padding-right: 14px;
  }

  .agenda-time span {
    font-size: 14px;
  }

  .agenda-time small {
    font-size: 12px;
  }

  .agenda-card {
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .agenda-card-number {
    width: 43px;
    height: 43px;
  }
}

@media (max-width: 600px) {
  .agenda-section {
    padding: 65px 16px;
  }

  .agenda-heading h2 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .agenda-heading p {
    font-size: 15px;
  }

  .agenda-timeline {
    gap: 18px;
  }

  .agenda-item {
    grid-template-columns: 25px minmax(0, 1fr);
  }

  .agenda-time {
    grid-column: 2;
    grid-row: 1;
    padding: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 7px;
    text-align: left;
  }

  .agenda-time span,
  .agenda-time small {
    display: inline;
  }

  .agenda-time span {
    margin: 0;
  }

  .agenda-time small::before {
    content: "– ";
  }

  .agenda-marker {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .agenda-marker span {
    margin-top: 8px;
  }

  .agenda-marker::before {
    bottom: -18px;
  }

  .agenda-card {
    grid-column: 2;
    grid-row: 2;
    min-height: auto;
    padding: 22px 19px;
    border-radius: 17px;
  }

  .agenda-card-content h3 {
    font-size: 20px;
  }

  .agenda-card-content p {
    font-size: 13px;
  }
}