.agenda-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 90% 18%,rgba(31,223,168,.14),transparent 28%),
    linear-gradient(180deg,#f8f8fc 0%,#eef1f9 100%);
}

.agenda-layout{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  gap:clamp(42px,7vw,88px);
  align-items:center;
}

.agenda-copy h2{
  max-width:720px;
  color:#15106d;
}

.agenda-copy__lead{
  max-width:700px;
  color:#5f6781;
  font-size:1.08rem;
  line-height:1.8;
}

.agenda-topics{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin:30px 0 34px;
}

.agenda-topic{
  display:flex;
  align-items:center;
  gap:14px;
  min-height:70px;
  padding:14px 16px;
  border:1px solid rgba(32,19,138,.1);
  border-radius:18px;
  background:rgba(255,255,255,.82);
  box-shadow:0 14px 34px rgba(21,16,109,.08);
}

.agenda-topic__icon{
  flex:0 0 46px;
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:linear-gradient(145deg,#1fdfa8,#4ef21a);
  color:#15106d;
}

.agenda-topic__icon svg{
  width:27px;
  height:27px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.4;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.agenda-topic span{
  color:#15106d;
  font-weight:800;
}

.agenda-visual{
  position:relative;
}

.agenda-visual__frame{
  position:relative;
  overflow:hidden;
  min-height:430px;
  border-radius:40px 40px 40px 120px;
  background:linear-gradient(145deg,#20138a,#15106d);
  box-shadow:0 28px 70px rgba(21,16,109,.18);
}

.agenda-visual__frame::before{
  content:"";
  position:absolute;
  inset:14px;
  border:2px solid rgba(78,242,26,.58);
  border-radius:32px 32px 32px 106px;
  pointer-events:none;
  z-index:1;
}

.agenda-visual__frame img{
  display:block;
  width:100%;
  height:100%;
  min-height:430px;
  object-fit:cover;
}

.agenda-visual__badge{
  position:absolute;
  right:24px;
  bottom:24px;
  display:grid;
  gap:4px;
  max-width:310px;
  padding:18px 20px;
  border-radius:20px;
  background:rgba(21,16,109,.92);
  color:#f8f8fc;
  box-shadow:0 16px 34px rgba(0,0,0,.2);
  backdrop-filter:blur(10px);
}

.agenda-visual__badge strong{
  color:#4ef21a;
  font-size:1rem;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.agenda-visual__badge span{
  font-size:.92rem;
  line-height:1.45;
}

@media(max-width:900px){
  .agenda-layout{
    grid-template-columns:1fr;
  }

  .agenda-visual{
    order:-1;
  }
}

@media(max-width:640px){
  .agenda-topics{
    grid-template-columns:1fr;
  }

  .agenda-visual__frame,
  .agenda-visual__frame img{
    min-height:320px;
  }

  .agenda-visual__badge{
    position:relative;
    right:auto;
    bottom:auto;
    margin:-28px 14px 0;
  }
}
