#fold-why {
  background: var(--bg-alt);
  padding: 100px 0;
  border-top: 1px solid var(--border2);
  position: relative;
  overflow: hidden;
}
#fold-why::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 60% 50% at 50% 0%,
    rgba(123, 108, 240, 0.07) 0%,
    transparent 65%
  );
}
.why-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
  padding: 0 52px;
  position: relative;
  z-index: 1;
}
.why-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--t1);
  margin-bottom: 20px;
}
.why-title em {
  font-style: italic;
  color: var(--purple-l);
}
.why-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--t2);
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 52px;
  position: relative;
  z-index: 1;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 300ms;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(123, 108, 240, 0.4),
    transparent
  );
}
.why-card:hover {
  border-color: rgba(123, 108, 240, 0.3);
}
.why-card-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  color: rgba(123, 108, 240, 0.12);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.why-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.why-card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--t2);
}

/* ══════════════════════════════════════════
   FOOTER CTA SECTION
══════════════════════════════════════════ */
#fold-footer-cta {
  background: var(--bg);
  padding: 120px 52px;
  text-align: center;
  border-top: 1px solid var(--border2);
  position: relative;
  overflow: hidden;
}
#fold-footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 65% 60% at 50% 100%,
    rgba(123, 108, 240, 0.1) 0%,
    transparent 65%
  );
}
.fcta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-l);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.fcta-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--t1);
  max-width: 720px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.fcta-title em {
  font-style: italic;
  color: var(--purple-l);
}
.fcta-sub {
  font-size: 17px;
  line-height: 1.72;
  color: var(--t2);
  max-width: 540px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
}
.fcta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
footer {
  background: #060609;
  color: rgba(255, 255, 255, 0.35);
  padding: 40px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  border-top: 1px solid var(--border2);
}
.flogo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.flogo img {
  height: 22px;
  width: auto;
  display: block;
  opacity: 0.95;
}
.flinks {
  display: flex;
  gap: 24px;
}
.flink {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: color 150ms;
}
.flink:hover {
  color: rgba(255, 255, 255, 0.8);
}
