/* ───── KEEP IT SUPER SIMPLE ──────────────────────────────── */
.keep-simple {
  position: relative;
  padding: 4rem 0;
  background: #fff;
}

.keep-simple__title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: .5rem;
}

.keep-simple__subtitle {
  color: #555;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.keep-simple__inner {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.keep-simple__media {
  position: relative;
  flex: 1 1 300px;
  max-width: 600px;
}

/* video styling */
.keep-simple__video {
  width: 100%;
  display: block;
  border: 8px solid #007bff;
  border-radius: 16px;
  box-sizing: border-box;
}

/* circular outlines behind video */
.keep-simple__media::before,
.keep-simple__media::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  pointer-events: none;
}
.keep-simple__media::before {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -150px;
}
.keep-simple__media::after {
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -200px;
}

/* ACCORDION */
.keep-simple__accordion {
  flex: 1 1 300px;
  max-width: 400px;
}

.accordion-item {
  border-bottom: 1px solid #eee;
  margin-bottom: .5rem;
}

.accordion-header {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  background: none;
  border: none;
  padding: .75rem 0;
  width: 100%;
  cursor: pointer;
}

.arrow-icon {
  margin-right: .5rem;
  transition: transform .3s;
}

/* collapsed by default */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

/* when open… */
.accordion-item.active .accordion-content {
  max-height: 200px; /* enough for your paragraphs */
}

.accordion-item.active .arrow-icon {
  transform: rotate(-90deg);
}

/* content paragraph */
.accordion-content p {
  color: #555;
  margin: .5rem 0 1rem;
  line-height: 1.6;
}

/* CTA BUTTON */
.keep-simple__cta {
  text-align: center;
  margin-top: 2rem;
}
.keep-simple__cta .btn {
  font-size: 1rem;
  padding: .8rem 2rem;
}
.keep-simple__media {
  position: relative;
  flex: 1 1 300px;
  max-width: 600px;
  z-index: 0; /* base context for pseudo-elements */
}

/* circular outlines sit just above the section background */
.keep-simple__media::before,
.keep-simple__media::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* video above the circles, with blue glow */
.keep-simple__video {
  position: relative;
  z-index: 2;    /* bring in front of the pseudo-circles */
  width: 100%;
  display: block;
  border: 8px solid red;
  border-radius: 16px;
  box-sizing: border-box;
  /* blue glow */
box-shadow:
  0 0 5px #ff000080,  /* rgba(255,0,0,0.5) */
  0 0 20px #ff000066,  /* rgba(255,0,0,0.4) */
  0 0 40px #ff00004d;  /* rgba(255,0,0,0.3) */

}

