/* ===== NEW FEATURES SECTION ===== */
.features-section-new {
  position: relative;
  min-height: 100vh;
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow: hidden;
}

/* Section-level noise, grid, orbs and cursor glow removed —
   handled globally by .global-noise / .global-grid-bg / .global-orb / .global-cursor-glow */

/* ── WRAPPER ── */
.features-section-new .features-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ── TOP ROW ── */
.features-section-new .top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 72px;
}

/* Left */
.features-section-new .top-left { display: flex; flex-direction: column; }

.features-section-new .section-label-new {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(12px);
  animation: f-up 0.7s cubic-bezier(0.22,1,0.36,1) 0.1s forwards;
  font-family: var(--font-body);
}
.features-section-new .label-star { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

.features-section-new .headline {
  font-family: var(--font-heading);
  font-size: clamp(40px, 4.8vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.features-section-new .headline .line { display: block; overflow: hidden; padding-bottom: 5px; }
.features-section-new .headline .li {
  display: block;
  opacity: 0;
  transform: translateY(108%);
  animation: f-lineUp 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}
.features-section-new .headline .line:nth-child(1) .li { animation-delay: 0.22s; }
.features-section-new .headline .line:nth-child(2) .li { animation-delay: 0.36s; }
.features-section-new .headline .line:nth-child(3) .li { animation-delay: 0.50s; }

/* Weight contrast — logic mapped to bluearch */
.features-section-new .w-heavy { font-weight: 800; color: var(--text-primary); }
.features-section-new .w-light { font-weight: 800; color: var(--text-primary); }
.features-section-new .w-bold { font-weight: 800; color: var(--text-primary); }
.features-section-new .w-accent { font-weight: 800; color: var(--accent); }

/* Right */
.features-section-new .top-right {
  padding-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  opacity: 0;
  transform: translateY(18px);
  animation: f-up 0.8s cubic-bezier(0.22,1,0.36,1) 0.55s forwards;
}

.features-section-new .top-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 480px;
}

.features-section-new .cta-row { display: flex; align-items: center; gap: 14px; }

.features-section-new .btn-learn {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  border: 0.5px solid rgba(255,255,255,0.14);
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.25s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}
.features-section-new .btn-learn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255,255,255,0.08) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 100px;
}
.features-section-new .btn-learn:hover {
  background: rgba(0, 185, 244, 0.15);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 185, 244, 0.15);
}
.features-section-new .btn-learn:hover::before { opacity: 1; }

.features-section-new .btn-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), box-shadow 0.32s ease;
}
.features-section-new .btn-arrow:hover {
  transform: scale(1.12) rotate(45deg);
  box-shadow: 0 10px 34px rgba(0, 185, 244, 0.3);
}
.features-section-new .btn-arrow svg { width: 16px; height: 16px; stroke: currentColor; }

/* ── STEPS ── */
.features-section-new .steps { display: flex; flex-direction: column; }

.features-section-new .step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 52px 0;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: f-up 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}
.features-section-new .step:nth-child(1) { animation-delay: 0.65s; }
.features-section-new .step:nth-child(2) { animation-delay: 0.8s; }
.features-section-new .step:nth-child(3) { animation-delay: 0.95s; }

/* Horizontal divider between steps */
.features-section-new .step + .step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.5px;
  background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.1) 20%, rgba(255,255,255,0.1) 80%, transparent 100%);
}

/* Left: step number block */
.features-section-new .step-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.features-section-new .step-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  opacity: 0.6;
}

.features-section-new .step-num {
  font-family: var(--font-heading);
  font-size: clamp(60px, 8vw, 100px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255,255,255,0.05); /* slightly visible solid color */
  transition: color 0.5s ease;
  user-select: none;
}
.features-section-new .step:hover .step-num {
  color: rgba(255,255,255,0.12); /* brightens slightly on hover */
}

/* Right: content block — glass hover */
.features-section-new .step-right {
  padding: 36px 32px;
  border-radius: 20px;
  border: 0.5px solid transparent;
  background: transparent;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition:
    background 0.45s cubic-bezier(0.22,1,0.36,1),
    border-color 0.45s cubic-bezier(0.22,1,0.36,1),
    transform 0.45s cubic-bezier(0.22,1,0.36,1),
    box-shadow 0.45s cubic-bezier(0.22,1,0.36,1);
}

/* Glass shimmer */
.features-section-new .step-right::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.08) 0%,
    rgba(255,255,255,0.01) 45%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

/* Sweep shine */
.features-section-new .step-right::after {
  content: '';
  position: absolute;
  top: -80%;
  left: -70%;
  width: 55%;
  height: 260%;
  background: linear-gradient(
    112deg,
    transparent 25%,
    rgba(255,255,255,0.05) 50%,
    transparent 75%
  );
  transform: skewX(-8deg);
  transition: left 0.75s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}

.features-section-new .step:hover .step-right {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
  transform: translateX(8px);
  box-shadow:
    0 24px 64px rgba(0,0,0,0.45),
    0 0 0 0.5px rgba(255,255,255,0.06) inset,
    inset 0 1px 0 rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.features-section-new .step:hover .step-right::before { opacity: 1; }
.features-section-new .step:hover .step-right::after { left: 120%; }

.features-section-new .step-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: -0.015em;
  transition: letter-spacing 0.35s ease;
}
.features-section-new .step:hover .step-title { letter-spacing: -0.005em; color: var(--text-primary); }

.features-section-new .step-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-secondary);
  font-weight: 400;
  transition: color 0.35s ease;
}
.features-section-new .step:hover .step-desc { color: rgba(255,255,255,0.75); }

/* ── KEYFRAMES ── */
@keyframes f-up {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes f-lineUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
  .features-section-new .top-row { grid-template-columns: 1fr; gap: 40px; }
  .features-section-new .step { grid-template-columns: 1fr; gap: 30px; padding: 40px 0; }
  .features-section-new .step-right { padding: 24px; }
}
