*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #02060d;
  font-family: "Poppins", Arial, sans-serif;
  color: #fff;
}

/* NAV */
.nav {
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  padding: 0 48px;
  z-index: 100;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(2, 6, 13, 0.78), rgba(2, 6, 13, 0));
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  top: auto;
  left: auto;
  width: 180px;
  height: 84px;
  overflow: hidden;
  z-index: 2;
  transform: none;
  justify-content: flex-start;
  flex-shrink: 0;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
}

.nav-backdrop,
.mobile-panel-head {
  display: none;
}

.menu {
  display: flex;
  gap: 32px;
}

.menu a,
.nav-btn {
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.menu a:hover {
  color: #4b8dff;
}

.menu a span:last-child {
  display: none;
}

.nav-btn {
  position: absolute;
  right: 0;
  padding: 14px 30px;
  border: 1px solid rgba(64,139,255,.75);
  border-radius: 12px;
  background: rgba(3,12,28,.35);
  backdrop-filter: blur(12px);
}

.menu-toggle {
  display: none;
}

@media (min-width: 1101px) {
  .nav {
    display: grid;
    grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
    column-gap: 24px;
  }

  .logo {
    grid-column: 1;
    justify-self: start;
  }

  .nav-panel {
    display: contents;
  }

  .menu {
    grid-column: 2;
    justify-self: center;
    gap: clamp(18px, 1.8vw, 32px);
  }

  .menu a {
    white-space: nowrap;
  }

  .nav-btn {
    position: static;
    grid-column: 3;
    justify-self: end;
  }
}

/* HERO */
.worship-hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 24px 90px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  background: #02060d;
}

.worship-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .74;
}

.worship-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 38%, rgba(75,141,255,.18), transparent 36%),
    radial-gradient(circle at 70% 35%, rgba(255,255,255,.07), transparent 24%),
    linear-gradient(to bottom, rgba(2,6,13,.36), #02060d 94%),
    rgba(2,6,13,.50);
}

.worship-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 230px;
  z-index: 2;
  background: linear-gradient(to bottom, transparent, #02060d);
}

.worship-content {
  position: relative;
  z-index: 3;
  width: min(1050px, 100%);
}

.worship-eyebrow,
.section-kicker {
  display: inline-block;
  margin-bottom: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #4b8dff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.worship-eyebrow::before,
.section-kicker::before {
  display: none;
  content: none;
}

.worship-content h1 {
  margin: 0 auto 28px;
  font-size: clamp(48px, 6.6vw, 92px);
  line-height: .98;
  letter-spacing: -.075em;
  font-weight: 500;
}

.worship-content h1 em {
  display: block;
  color: #4b8dff;
  font-style: italic;
}

.worship-content p {
  max-width: 720px;
  margin: 0 auto 36px;
  color: rgba(255,255,255,.68);
  font-size: 17px;
  line-height: 1.75;
}

.worship-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 30px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.primary-btn {
  background: linear-gradient(135deg, #2f80ff, #1f5edb);
  box-shadow: 0 18px 45px rgba(31,94,219,.28);
}

.ghost-btn {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
}

/* BENEFITS */
.worship-benefits {
  position: relative;
  padding: 115px 24px;
  background:
    radial-gradient(circle at center top, rgba(75,141,255,.13), transparent 36%),
    #02060d;
}

.benefits-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.worship-benefits h2,
.worship-education h2,
.worship-diagnosis h2 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -.065em;
  font-weight: 500;
  margin-bottom: 60px;
}

.worship-benefits h2 em,
.worship-education h2 em {
  color: #4b8dff;
  font-style: italic;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(75,141,255,.16);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(4,10,24,.68);
  backdrop-filter: blur(16px);
}

.benefit-grid article {
  min-height: 230px;
  padding: 34px 24px;
  border-right: 1px solid rgba(75,141,255,.12);
  text-align: left;
  transition: .28s ease;
}

.benefit-grid article:hover {
  background: rgba(75,141,255,.08);
}

.benefit-grid article:last-child {
  border-right: 0;
}

.benefit-grid span {
  color: #4b8dff;
  font-size: 12px;
  letter-spacing: .18em;
}

.benefit-grid h3 {
  margin: 16px 0 10px;
  font-size: 18px;
  font-weight: 500;
}

.benefit-grid p {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  line-height: 1.6;
}

/* EDUCATION */
.worship-education {
  padding: 125px 24px;
  background:
    radial-gradient(circle at 70% 42%, rgba(75,141,255,.14), transparent 32%),
    linear-gradient(to bottom, #02060d, #040914);
}

.education-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.education-copy h2 {
  margin-bottom: 26px;
}

.education-copy p {
  color: rgba(255,255,255,.64);
  line-height: 1.8;
  max-width: 540px;
}
.clarity-map {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.clarity-map::before {
  content: "";
  position: absolute;
  width: min(620px, 86vw);
  height: min(620px, 86vw);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(75,141,255,.18), transparent 55%),
    radial-gradient(circle at center, rgba(75,141,255,.08), transparent 72%);
  filter: blur(10px);
  z-index: -2;
}

.clarity-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(75,141,255,.22);
  pointer-events: none;
}

.orbit-one {
  width: 520px;
  height: 520px;
  box-shadow: 0 0 24px rgba(75,141,255,.08);
  animation: rotateSoft 24s linear infinite;
}

.orbit-two {
  width: 390px;
  height: 390px;
  border-color: rgba(75,141,255,.16);
  animation: rotateSoft 18s linear infinite reverse;
}

.orbit-three {
  width: 270px;
  height: 270px;
  border-style: dashed;
  border-color: rgba(75,141,255,.2);
  animation: rotateSoft 14s linear infinite;
}

.clarity-core {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 22%, rgba(255,255,255,.14), transparent 30%),
    radial-gradient(circle at 50% 55%, rgba(75,141,255,.18), transparent 52%),
    rgba(4,10,24,.96);
  border: 1px solid rgba(75,141,255,.45);
  box-shadow:
    0 0 70px rgba(75,141,255,.24),
    inset 0 0 40px rgba(75,141,255,.08);
}

.core-icon {
  color: #4b8dff;
  font-size: 20px;
  letter-spacing: -4px;
  opacity: .9;
}

.clarity-core small {
  color: rgba(255,255,255,.66);
  font-size: 13px;
  letter-spacing: .32em;
}

.clarity-core strong {
  margin-top: -12px;
  color: #4b8dff;
  font-size: 42px;
  letter-spacing: -.05em;
  text-shadow: 0 0 30px rgba(75,141,255,.45);
}

.clarity-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 18px;
  width: 270px;
  padding: 20px 22px;
  border: 1px solid rgba(75,141,255,.35);
  border-radius: 999px;
  background: rgba(4,10,24,.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}

.clarity-card h4 {
  color: #fff;
  font-size: 15px;
  letter-spacing: .04em;
}

.clarity-card p {
  margin-top: 4px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.35;
}

.clarity-icon {
  display: grid;
  place-items: center;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(75,141,255,.45);
  border-radius: 50%;
  color: #9ec6ff;
  font-size: 24px;
  background:
    radial-gradient(circle at 50% 35%, rgba(75,141,255,.18), transparent 55%),
    rgba(5,12,27,.9);
  box-shadow: 0 0 24px rgba(75,141,255,.18);
}

.card-preach {
  top: 58px;
  left: 0;
}

.card-worship {
  top: 64px;
  right: 0;
}

.card-people {
  bottom: 68px;
  left: 0;
}

.card-music {
  bottom: 68px;
  right: 0;
}

.connector {
  position: absolute;
  z-index: 2;
  height: 1px;
  width: 210px;
  background: linear-gradient(90deg, transparent, rgba(75,141,255,.7), transparent);
  box-shadow: 0 0 14px rgba(75,141,255,.55);
  transform-origin: center;
}

.con-a {
  top: 205px;
  left: 205px;
  transform: rotate(33deg);
}

.con-b {
  top: 205px;
  right: 205px;
  transform: rotate(-33deg);
}

.con-c {
  bottom: 205px;
  left: 205px;
  transform: rotate(-33deg);
}

.con-d {
  bottom: 205px;
  right: 205px;
  transform: rotate(33deg);
}

.clarity-card,
.clarity-core {
  animation: floatSoft 4.8s ease-in-out infinite;
}

.card-worship,
.card-people {
  animation-delay: .8s;
}

.card-music {
  animation-delay: 1.4s;
}

@keyframes floatSoft {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

@media (max-width: 900px) {
  .clarity-map {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 20px;
  }

  .clarity-orbit,
  .connector {
    display: none;
  }

  .clarity-core {
    width: 190px;
    height: 190px;
    margin-bottom: 14px;
  }

  .clarity-card {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 430px;
    border-radius: 24px;
  }
}

/* DIAGNOSIS */
.worship-diagnosis {
  padding: 120px 24px;
  text-align: center;
  background: #02060d;
}

.diagnosis-inner {
  max-width: 980px;
  margin: 0 auto;
}

.worship-diagnosis h2 {
  margin-bottom: 20px;
}

.worship-diagnosis p {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(255,255,255,.62);
  line-height: 1.75;
}

.diagnosis-progress {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin: 48px 0;
}

.diagnosis-progress span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(75,141,255,.3);
  border-radius: 50%;
  color: rgba(255,255,255,.6);
  transition: .28s ease;
}

.diagnosis-progress span.is-active {
  background: #2f80ff;
  color: white;
  transform: scale(1.08);
  box-shadow: 0 0 28px rgba(47,128,255,.35);
}

.question-card {
  display: none;
  opacity: 0;
  transform: translateY(18px) scale(.985);
  filter: blur(8px);
}

.question-card.is-active {
  display: block;
  animation: questionEnter .46s cubic-bezier(.22, 1, .36, 1) forwards;
}

.question-card.is-leaving {
  display: block;
  animation: questionLeave .28s ease forwards;
}

.question-card small {
  color: rgba(255,255,255,.48);
}

.question-card h3 {
  margin: 14px 0 30px;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.option-grid button {
  min-height: 118px;
  padding: 20px;
  border: 1px solid rgba(75,141,255,.22);
  border-radius: 18px;
  background: rgba(5,12,27,.78);
  color: white;
  font: inherit;
  cursor: pointer;
  transition: .25s ease;
}

.option-grid button:hover,
.option-grid button.is-selected {
  border-color: #4b8dff;
  background: rgba(47,128,255,.14);
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(75,141,255,.16);
}

.range-box,
.contact-form {
  max-width: 620px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(75,141,255,.2);
  border-radius: 24px;
  background: rgba(5,12,27,.78);
}

.range-box input {
  width: 100%;
  margin-bottom: 24px;
}

.range-box strong {
  color: #9ec6ff;
  font-weight: 500;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input {
  width: 100%;
  padding: 17px 18px;
  border: 1px solid rgba(75,141,255,.2);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  color: white;
  font: inherit;
  outline: none;
}

.contact-form input:focus {
  border-color: #4b8dff;
}

.diagnosis-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.diagnosis-actions button {
  padding: 15px 24px;
  border: 1px solid rgba(75,141,255,.35);
  border-radius: 999px;
  background: rgba(5,12,27,.8);
  color: white;
  font: inherit;
  cursor: pointer;
}

#nextQuestion {
  background: linear-gradient(135deg, #2f80ff, #1f5edb);
}

/* ANIMATIONS */
@keyframes rotateSoft {
  to { transform: rotate(360deg); }
}

@keyframes waveGlow {
  0%, 100% { opacity: .45; transform: translate(-50%, -50%) scaleX(.82); }
  50% { opacity: 1; transform: translate(-50%, -50%) scaleX(1); }
}

@keyframes questionEnter {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes questionLeave {
  to {
    opacity: 0;
    transform: translateY(-14px) scale(.985);
    filter: blur(8px);
  }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  body.menu-open {
    overflow: hidden;
  }

  .nav {
    height: 78px;
    padding: 0 18px;
    justify-content: space-between;
    background: rgba(2,6,13,.82);
  }

  .logo {
    position: relative;
    top: auto;
    left: auto;
    width: clamp(180px, 52vw, 220px);
    height: 66px;
    transform: none;
  }

  .logo img {
    width: 100%;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 50px;
    height: 50px;
    padding: 0 13px;
    border: 1px solid rgba(75,141,255,.4);
    border-radius: 15px;
    background: rgba(14,25,47,.6);
    cursor: pointer;
  }

  .menu-toggle span {
    height: 2px;
    background: white;
  }

  .nav.is-open .menu-toggle span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .nav.is-open .menu-toggle span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    display: block;
    background: rgba(0,2,8,.74);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
  }

  .nav.is-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
  }

  .nav-panel {
    position: fixed;
    inset: auto 0 0;
    display: flex;
    flex-direction: column;
    padding: 22px 20px;
    border-radius: 28px 28px 0 0;
    background: #030812;
    opacity: 0;
    visibility: hidden;
    transform: translateY(104%);
  }

  .nav.is-open .nav-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-panel-head {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
  }

  .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .menu a {
    display: flex;
    justify-content: space-between;
    padding: 22px 0;
    font-size: 28px;
  }

  .menu a span:last-child {
    display: none;
  }

  .menu a svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    fill: currentColor;
    opacity: 0.42;
  }

  .nav-btn {
    display: none;
  }

  .benefit-grid,
  .education-inner,
  .option-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(75,141,255,.12);
  }

  .benefit-grid article:last-child {
    border-bottom: 0;
  }

  .clarity-map {
    min-height: 460px;
  }
}

@media (max-width: 540px) {
  .worship-content h1 {
    font-size: 43px;
  }

  .worship-hero,
  .worship-benefits,
  .worship-education,
  .worship-diagnosis {
    padding-left: 16px;
    padding-right: 16px;
  }

  .diagnosis-progress {
    gap: 10px;
  }

  .diagnosis-progress span {
    width: 34px;
    height: 34px;
  }
}

.clarity-map {
  display: none !important;
}

.clarity-panel {
  padding: 34px;
  border: 1px solid rgba(75,141,255,.18);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(75,141,255,.12), transparent 45%),
    rgba(4,10,24,.74);
  backdrop-filter: blur(18px);
}

.clarity-panel-head {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(75,141,255,.14);
}

.clarity-panel-head span {
  display: block;
  margin-bottom: 12px;
  color: #4b8dff;
  font-size: 12px;
  letter-spacing: .22em;
}

.clarity-panel-head strong {
  display: block;
  max-width: 520px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -.055em;
  font-weight: 500;
}

.clarity-flow {
  display: grid;
  gap: 0;
}

.clarity-flow article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.clarity-flow article:last-child {
  border-bottom: 0;
}

.clarity-flow span {
  color: #4b8dff;
  font-size: 13px;
  letter-spacing: .18em;
}

.clarity-flow h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
}

.clarity-flow p {
  color: rgba(255,255,255,.58);
  line-height: 1.6;
}

/* FIX MICROEDUCACIÓN PANEL */
.worship-education {
  padding: 120px 24px 120px !important;
}

.education-inner {
  align-items: center !important;
}

.clarity-panel {
  align-self: center !important;
  margin-top: 40px !important;
  max-height: none !important;
}

.clarity-flow article {
  grid-template-columns: 46px 1fr !important;
  align-items: start !important;
}

.clarity-flow article > div {
  min-width: 0 !important;
}

.clarity-flow p {
  max-width: none !important;
  margin: 0 !important;
  white-space: normal !important;
  word-break: normal !important;
}

@media (min-width: 901px) {
  .education-inner {
    min-height: 720px;
  }
}

/* FIX FINAL MICROEDUCACIÓN - MISMA ALTURA Y TEXTO CORRECTO */

.worship-education {
  padding: 110px 24px !important;
}

.education-inner {
  max-width: 1280px !important;
  min-height: auto !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 72px !important;
  align-items: center !important;
}

.education-copy {
  align-self: center !important;
}

.clarity-panel {
  align-self: center !important;
  margin: 0 !important;
  height: auto !important;
  max-height: 620px !important;
  overflow: hidden !important;
}

.clarity-flow article {
  display: grid !important;
  grid-template-columns: 52px 1fr !important;
  gap: 18px !important;
  align-items: start !important;
  padding: 22px 0 !important;
}

.clarity-flow article > div {
  display: block !important;
  width: 100% !important;
}

.clarity-flow h4 {
  margin: 0 0 6px !important;
  white-space: normal !important;
}

.clarity-flow p {
  display: block !important;
  max-width: 360px !important;
  margin: 0 !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  line-height: 1.55 !important;
}

@media (max-width: 900px) {
  .education-inner {
    grid-template-columns: 1fr !important;
  }

  .clarity-panel {
    max-height: none !important;
  }
}

/* MICROEDUCACIÓN FINAL */

.worship-education {
  padding: 115px 24px;
  background:
    radial-gradient(circle at 68% 48%, rgba(75,141,255,.13), transparent 34%),
    linear-gradient(to bottom, #02060d, #030814);
}

.education-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.education-copy h2 {
  font-size: clamp(48px, 5.5vw, 78px);
  line-height: .98;
  letter-spacing: -.075em;
  font-weight: 500;
  margin-bottom: 28px;
}

.education-copy h2 em {
  display: block;
  color: #4b8dff;
  font-style: italic;
}

.education-copy p {
  max-width: 540px;
  color: rgba(255,255,255,.68);
  font-size: 16px;
  line-height: 1.75;
}

.clarity-panel {
  width: 100%;
  max-width: 560px;
  max-height: 620px;
  overflow: hidden;
  padding: 34px 36px;
  border: 1px solid rgba(75,141,255,.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at 70% 20%, rgba(75,141,255,.12), transparent 42%),
    rgba(5,12,27,.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0,0,0,.32);
}

.clarity-panel-head {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(75,141,255,.18);
}

.clarity-panel-head span {
  display: block;
  margin-bottom: 12px;
  color: #4b8dff;
  font-size: 11px;
  letter-spacing: .24em;
}

.clarity-panel-head strong {
  display: block;
  max-width: 460px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -.06em;
  font-weight: 500;
}

.clarity-flow article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.clarity-flow article:last-child {
  border-bottom: 0;
}

.clarity-flow article > span {
  color: #4b8dff;
  font-size: 12px;
  letter-spacing: .18em;
}

.clarity-flow h4 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 19px;
  font-weight: 500;
}

.clarity-flow p {
  max-width: 390px;
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .education-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .clarity-panel {
    max-width: 100%;
    max-height: none;
  }
}

/* FIX VIDEO HERO IGLESIAS */
.worship-hero {
  position: relative;
  background: #02060d;
}

.worship-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}

.worship-overlay {
  z-index: 1;
  pointer-events: none;
}

.worship-content {
  z-index: 3;
}

.sg-footer {
  position: relative;
  overflow: hidden;
  padding: 90px 24px 28px;
  background: linear-gradient(to bottom, #02060d, #030814);
  border-top: 1px solid rgba(75,141,255,.14);
}

.footer-glow {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: min(760px, 90vw);
  height: 260px;
  margin: 0 auto;
  background: radial-gradient(ellipse, rgba(75,141,255,.18), transparent 68%);
  filter: blur(34px);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto 58px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
}

.footer-brand img {
  display: block;
  width: min(330px, 72vw);
  height: 112px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 24px;
}

.footer-brand h2 {
  max-width: 640px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.065em;
  font-weight: 500;
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 520px;
  color: rgba(255,255,255,.62);
  line-height: 1.7;
  margin-bottom: 30px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  color: white;
  text-decoration: none;
  background: linear-gradient(135deg, #2f80ff, #1f5edb);
  box-shadow: 0 18px 45px rgba(31,94,219,.25);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
  align-self: end;
}

.footer-links span {
  display: block;
  margin-bottom: 18px;
  color: #4b8dff;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-bottom: 13px;
  color: rgba(255,255,255,.68);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,.42);
  font-size: 13px;
}

@media (max-width: 800px) {
  .footer-inner,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (min-width: 1101px) {
  .menu a span:last-child,
  .menu a svg {
    display: none !important;
  }
}

@media (max-width: 1100px) {
  .menu a span:last-child {
    display: block !important;
    color: #4b8dff !important;
  }

  .menu a svg {
    display: block !important;
    color: #4b8dff !important;
  }
}

.logo::before {
  content: "";
  position: absolute;
  inset: 14px -10px 12px -10px;
  z-index: 0;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(2, 6, 13, 0.72), rgba(2, 6, 13, 0.22) 58%, transparent 74%);
  pointer-events: none;
}

.logo img {
  z-index: 1;
}

.worship-hero {
  z-index: 2;
}

.worship-hero::after {
  height: 360px !important;
  bottom: -1px;
  z-index: 2 !important;
  background:
    linear-gradient(to bottom, rgba(2,6,13,0) 0%, rgba(2,6,13,.62) 44%, #02060d 86%, #02060d 100%) !important;
}

.worship-content,
.worship-actions {
  position: relative;
  z-index: 4;
}

.worship-benefits {
  position: relative;
  z-index: 1;
  margin-top: -80px !important;
  padding: 120px 24px 115px !important;
  background:
    linear-gradient(to bottom, rgba(2,6,13,0) 0%, #02060d 76px, #02060d 100%),
    radial-gradient(circle at center 18%, rgba(75,141,255,.09), transparent 42%),
    #02060d !important;
}

.worship-benefits::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -130px;
  height: 220px;
  z-index: 0;
  background:
    linear-gradient(to bottom, rgba(2,6,13,0) 0%, rgba(2,6,13,.58) 42%, #02060d 100%);
  pointer-events: none;
}

.benefits-inner {
  position: relative;
  z-index: 1;
}
