body { overflow-x: hidden; }

.why-page {
  position: relative;
}

/* === COLOR CLOUDS === */
.color-cloud {
  position: fixed;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.25;
  z-index: -2;
  animation: drift 25s infinite alternate ease-in-out;
}

.cloud1 { background:#ff2e88; top:-200px; left:-200px; }
.cloud2 { background:#7b4dff; bottom:-200px; right:-200px; }
.cloud3 { background:#ff6f3c; top:40%; right:-300px; }

@keyframes drift {
  from { transform: translateY(0); }
  to { transform: translateY(200px); }
}

/* === HERO === */
.why-hero {
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
}

.why-hero h1 {
  font-size: 60px;
  line-height: 1.05;
  background: linear-gradient(90deg,#ff6f3c,#ff2e88,#7b4dff,#2fd9ff);
  -webkit-background-clip: text;
  color: transparent;
  animation: hue 10s infinite linear;
}

@keyframes hue {
  from { filter:hue-rotate(0deg); }
  to { filter:hue-rotate(360deg); }
}

.hero-lead {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 760px;
  margin: 1.5rem auto;
}

/* === CINEMATIC BLOCK === */
.why-block {
  max-width: 900px;
  margin: 6rem auto;
  padding: 3rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  box-shadow:
    0 20px 80px rgba(0,0,0,.4),
    inset 0 0 0 1px rgba(255,255,255,.15);
  position: relative;
  overflow: hidden;
}

/* GLOW BORDER */
.why-block::before {
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:30px;
  background:linear-gradient(120deg,#ff2e88,#7b4dff,#2fd9ff);
  opacity:.25;
  filter:blur(10px);
  z-index:-1;
}

.why-block h2 {
  font-size: 36px;
}

.why-block p {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 17px;
}

/* === SPLIT === */
.why-split {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2.5rem;
  margin:6rem 0;
}

.split-card {
  padding:2.5rem;
  border-radius:24px;
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.02));
  box-shadow:0 20px 60px rgba(0,0,0,.35);
  transition:.4s;
}

.split-card:hover {
  transform: translateY(-10px) scale(1.02);
}

/* === VALUES === */
.values-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1.4rem;
  margin-top:2rem;
}

.values-grid div {
  background:linear-gradient(180deg,rgba(255,255,255,.1),rgba(255,255,255,.02));
  border-radius:20px;
  padding:1.6rem;
  text-align:center;
  transition:.3s;
}

.values-grid div:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow:0 20px 50px rgba(0,0,0,.4);
}

/* === DIFFERENCE === */
.diff-list {
  list-style:none;
  padding:0;
  margin-top:2rem;
}

.diff-list li {
  padding:.7rem 0;
  position:relative;
  padding-left:28px;
}

.diff-list li::before {
  content:"✦";
  position:absolute;
  left:0;
  color:#ff66cc;
}

/* === CTA === */
.final-cta {
  text-align:center;
  padding:4rem;
  border-radius:30px;
  margin-top:6rem;
  background:linear-gradient(135deg,rgba(255,110,200,.25),rgba(123,77,255,.25));
  box-shadow:0 30px 120px rgba(0,0,0,.5);
}

/* === REVEAL === */
.reveal {
  opacity:0;
  transform:translateY(80px) scale(.95);
  transition:1s cubic-bezier(.19,1,.22,1);
}

.visible {
  opacity:1;
  transform:none;
}

@media(max-width:900px){
  .why-split { grid-template-columns:1fr; }
  .why-hero h1 { font-size:42px; }
}
/* === FIX OVERLAP WITH FOOTER === */
.final-cta {
  position: relative;
  z-index: 1;
  margin-bottom: 8rem; /* push footer down */
}

.site-footer {
  position: relative;
  z-index: 0;
}

/* Prevent parallax from pulling section into footer */
.why-block,
.final-cta {
  transform: none !important;
}
