/* ========================================
   Decorative Illustrations & Background Elements
   ======================================== */

/* ----------------------------------------
   Floating decorative shapes (shared)
   ---------------------------------------- */
.deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* ----------------------------------------
   Wave section dividers
   ---------------------------------------- */
.wave-divider {
  margin-top: -1px;
  margin-bottom: -1px;
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 40px;
}
@media (min-width: 768px) {
  .wave-divider svg { height: 60px; }
}

/* ----------------------------------------
   Section illustrations
   ---------------------------------------- */
.section-illust {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.section-illust svg {
  width: auto;
  height: auto;
  max-width: 100%;
}

/* ----------------------------------------
   BG SVG — large decorative element behind section content
   ---------------------------------------- */
.section-bg-illust {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
}
.section-bg-illust svg {
  display: block;
}

/* ----------------------------------------
   FV Background illustration elements
   ---------------------------------------- */
.fv {
  position: relative;
  overflow: hidden;
}

/* Large blurred circle top-right */
.fv::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(69,127,188,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
/* Large blurred circle bottom-left */
.fv::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  bottom: 0;
  left: -80px;
  background: radial-gradient(circle, rgba(69,127,188,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Dot grid — top left */
.fv .deco--dots-tl {
  top: 60px;
  left: 10px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(69,127,188,0.18) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}
/* Dot grid — bottom right */
.fv .deco--dots-br {
  bottom: 80px;
  right: 0;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, rgba(69,127,188,0.12) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
}
/* Floating ring */
.fv .deco--ring-lg {
  top: 30%;
  right: 42%;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(69,127,188,0.15);
  border-radius: 50%;
  animation: floatY 6s ease-in-out infinite;
}
/* Small cross */
.fv .deco--cross-sm {
  bottom: 28%;
  left: 12%;
  width: 18px;
  height: 18px;
  animation: rotateSlow 14s linear infinite;
}
.fv .deco--cross-sm::before,
.fv .deco--cross-sm::after {
  content: '';
  position: absolute;
  background: rgba(69,127,188,0.2);
  border-radius: 2px;
}
.fv .deco--cross-sm::before { width: 100%; height: 3px; top: 50%; transform: translateY(-50%); }
.fv .deco--cross-sm::after  { width: 3px; height: 100%; left: 50%; transform: translateX(-50%); }

/* Diamond */
.fv .deco--diamond {
  top: 55%;
  right: 8%;
  width: 14px;
  height: 14px;
  background: rgba(69,127,188,0.18);
  transform: rotate(45deg);
  border-radius: 2px;
  animation: floatY 5s ease-in-out infinite reverse;
}
/* Triangle accent */
.fv .deco--triangle {
  top: 22%;
  left: 40%;
  width: 0; height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 15px solid rgba(69,127,188,0.1);
  animation: floatY 8s ease-in-out infinite;
}

/* ----------------------------------------
   Empathy section
   ---------------------------------------- */
.empathy {
  position: relative;
  overflow: hidden;
}
.empathy .deco--dots-tr {
  top: 20px;
  right: -10px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, rgba(69,127,188,0.1) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
}
.empathy .deco--ring {
  bottom: 20px;
  left: -30px;
  width: 120px;
  height: 120px;
  border: 2px dashed rgba(69,127,188,0.1);
  border-radius: 50%;
}

/* ----------------------------------------
   Future section — big bg illustration
   ---------------------------------------- */
.future {
  position: relative;
  overflow: hidden;
}
.future .section-bg-illust {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.future .deco--circle-xl {
  top: -80px;
  left: -80px;
  width: 240px;
  height: 240px;
  border: 2px solid rgba(69,127,188,0.08);
  border-radius: 50%;
}
.future .deco--dots-br {
  bottom: 10px;
  right: -10px;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(circle, rgba(69,127,188,0.1) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
}

/* ----------------------------------------
   Why Now section
   ---------------------------------------- */
.why-now {
  position: relative;
  overflow: hidden;
}
.why-now .deco--ring-sm {
  top: 30px;
  right: 20px;
  width: 70px;
  height: 70px;
  border: 2px solid rgba(69,127,188,0.1);
  border-radius: 50%;
}
.why-now .deco--square {
  bottom: 40px;
  left: 20px;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(69,127,188,0.12);
  border-radius: 4px;
  transform: rotate(20deg);
  animation: rotateSlow 20s linear infinite;
}

/* ----------------------------------------
   Features section
   ---------------------------------------- */
.features {
  position: relative;
  overflow: hidden;
}
.features .deco--dots-tl {
  top: 10px;
  left: -10px;
  width: 110px;
  height: 110px;
  background-image: radial-gradient(circle, rgba(69,127,188,0.1) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
}
.features .deco--ring-lg {
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border: 2px dashed rgba(69,127,188,0.08);
  border-radius: 50%;
}
.features .deco--diamond {
  top: 60px;
  right: 30px;
  width: 14px;
  height: 14px;
  background: rgba(69,127,188,0.12);
  transform: rotate(45deg);
  border-radius: 2px;
  animation: floatY 7s ease-in-out infinite;
}

/* ----------------------------------------
   Curriculum section
   ---------------------------------------- */
.curriculum {
  position: relative;
  overflow: hidden;
}
.curriculum .deco--blob {
  top: 50%;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(69,127,188,0.07) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
}
.curriculum .deco--dots-bl {
  bottom: 20px;
  left: -10px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, rgba(69,127,188,0.1) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
}

/* ----------------------------------------
   Examples section
   ---------------------------------------- */
.examples {
  position: relative;
  overflow: hidden;
}
.examples .deco--ring {
  top: 20px;
  left: -30px;
  width: 100px;
  height: 100px;
  border: 2px dashed rgba(69,127,188,0.1);
  border-radius: 50%;
}
.examples .deco--triangle {
  bottom: 60px;
  right: 30px;
  width: 0; height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 20px solid rgba(69,127,188,0.08);
  animation: floatY 6s ease-in-out infinite;
}

/* ----------------------------------------
   Support section
   ---------------------------------------- */
.support {
  position: relative;
  overflow: hidden;
}
.support .deco--blob {
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(69,127,188,0.07) 0%, transparent 70%);
  border-radius: 50%;
}
.support .deco--cross {
  top: 40px;
  right: 40px;
  width: 20px;
  height: 20px;
  animation: rotateSlow 12s linear infinite;
}
.support .deco--cross::before,
.support .deco--cross::after {
  content: '';
  position: absolute;
  background: rgba(69,127,188,0.15);
  border-radius: 2px;
}
.support .deco--cross::before { width: 100%; height: 3px; top: 50%; transform: translateY(-50%); }
.support .deco--cross::after  { width: 3px; height: 100%; left: 50%; transform: translateX(-50%); }

/* ----------------------------------------
   Pricing section
   ---------------------------------------- */
.pricing {
  position: relative;
  overflow: hidden;
}
.pricing .deco--dots-tr {
  top: 10px;
  right: -10px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, rgba(69,127,188,0.1) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
}
.pricing .deco--ring {
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(69,127,188,0.08);
  border-radius: 50%;
}

/* ----------------------------------------
   FAQ section
   ---------------------------------------- */
.faq {
  position: relative;
  overflow: hidden;
}
.faq .deco--blob {
  top: -30px;
  right: -50px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(69,127,188,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.faq .deco--dots-bl {
  bottom: 20px;
  left: -10px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, rgba(69,127,188,0.1) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
}

/* ----------------------------------------
   Final CTA section
   ---------------------------------------- */
.final-cta {
  position: relative;
  overflow: hidden;
}
.final-cta .deco--ring-xl {
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border: 2px dashed rgba(69,127,188,0.1);
  border-radius: 50%;
}
.final-cta .deco--ring-md {
  bottom: -40px;
  left: -60px;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(69,127,188,0.08);
  border-radius: 50%;
}
.final-cta .deco--dots-tc {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 60px;
  background-image: radial-gradient(circle, rgba(69,127,188,0.1) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}

/* ----------------------------------------
   Mid CTA
   ---------------------------------------- */
.mid-cta {
  position: relative;
}

/* ----------------------------------------
   Fit section
   ---------------------------------------- */
.fit {
  position: relative;
  overflow: hidden;
}
.fit .deco--dots-tr {
  top: 20px;
  right: -10px;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(circle, rgba(69,127,188,0.09) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
}

/* ----------------------------------------
   Animations
   ---------------------------------------- */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ----------------------------------------
   Responsive
   ---------------------------------------- */
@media (max-width: 767px) {
  .fv::before { width: 260px; height: 260px; top: -60px; right: -60px; }
  .fv::after  { width: 180px; height: 180px; bottom: -20px; left: -50px; }
  .fv .deco--dots-tl { width: 70px; height: 70px; }
  .section-illust svg { transform: scale(0.82); transform-origin: center; }
}
