/* ══════════════════════════════════════════════════════════
   HOW-IT-WORKS.CSS — Process Page Styles
   Dark-dominant PlugJolt theme
   ══════════════════════════════════════════════════════════ */

/* ── PROCESS STEPS (FULL WIDTH ALTERNATING) ── */
.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  padding: var(--space-16) 0;
}

.process-step:not(:last-child) {
  border-bottom: 1px solid var(--border-subtle);
}

.process-step--reverse {
  direction: rtl;
}

.process-step--reverse > * {
  direction: ltr;
}

.process-step__content {
  display: flex;
  flex-direction: column;
}

.process-step__number {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: var(--weight-light);
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  margin-bottom: var(--space-4);
}

.process-step__content h3 {
  font-size: var(--size-3xl);
  margin-bottom: var(--space-4);
  color: var(--white);
}

.process-step__content p {
  font-size: var(--size-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* ── NOTIFICATION MOCKUP — dark card style ── */
.notification-section {
  text-align: center;
  padding: var(--space-24) 0;
}

.notification-mockup {
  display: inline-block;
  background: var(--card-surface);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  text-align: left;
  max-width: 380px;
  width: 100%;
  position: relative;
}

.notification-mockup__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.notification-mockup__icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--volt-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.notification-mockup__meta {
  flex: 1;
}

.notification-mockup__app {
  font-family: -apple-system, BlinkMacSystemFont, var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: none;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.notification-mockup__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--volt-green);
  flex-shrink: 0;
}

.notification-mockup__divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 8px 0 10px;
}

.notification-mockup__time {
  font-family: -apple-system, BlinkMacSystemFont, var(--font-body);
  font-size: 13px;
  color: var(--text-tertiary);
  margin-left: auto;
}

.notification-mockup__title {
  font-family: -apple-system, BlinkMacSystemFont, var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
  line-height: 1.3;
}

.notification-mockup__body {
  font-family: -apple-system, BlinkMacSystemFont, var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .process-step {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    padding: var(--space-12) 0;
  }

  .process-step--reverse {
    direction: ltr;
  }

  .process-step__number {
    font-size: 80px;
  }

  .process-step__content h3 {
    font-size: var(--size-2xl);
  }

  .notification-mockup {
    padding: 14px 16px;
    max-width: 340px;
  }
}
