/* ============================================================
   Features page only — append after css/styles.css
   ============================================================ */

.feature-block {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.feature-block--alt {
  background: rgba(255, 255, 255, 0.02);
  border-block: 1px solid rgba(255, 255, 255, 0.04);
}

.feature-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.feature-row--reverse .feature-row__copy {
  order: 2;
}

.feature-row--reverse .feature-row__visual {
  order: 1;
}

.feature-row__copy {
  min-width: 0;
}

.feature-row__visual {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.phone-frame--static {
  transform: none;
  width: min(100%, 300px);
  max-width: 100%;
}

.phone-frame--static:hover {
  transform: translateY(-4px);
}

.feature-list {
  list-style: none;
  margin-top: 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 10px rgba(232, 68, 90, 0.45);
}

.toolkit {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

@media (min-width: 901px) {
  .toolkit {
    grid-template-columns: repeat(3, 1fr);
  }
}

.toolkit__card {
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.toolkit__card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.toolkit__card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* —— Mobile: same stacking pattern as homepage —— */
@media (max-width: 900px) {
  .feature-block {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  /* Flex column like homepage hero/spotlight — avoids broken grid order */
  .feature-row,
  .feature-row--reverse {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    text-align: center;
  }

  .feature-row__visual,
  .feature-row--reverse .feature-row__visual {
    order: -1;
    width: 100%;
  }

  .feature-row__copy,
  .feature-row--reverse .feature-row__copy {
    order: 1;
    width: 100%;
  }

  .feature-row .section__title,
  .feature-row .section__lead {
    margin-inline: auto;
  }

  .feature-row .section__title {
    max-width: 16ch;
  }

  .feature-row .section__lead {
    max-width: 34ch;
  }

  .feature-list {
    display: inline-flex;
    text-align: left;
    max-width: 34ch;
    margin-inline: auto;
  }

  .feature-row .btn {
    margin-inline: auto;
  }

  .phone-frame--static {
    width: min(100%, 260px);
    transform: none;
  }

  .phone-frame--static:hover {
    transform: translateY(-4px);
  }

  .toolkit {
    grid-template-columns: 1fr;
    text-align: left;
  }
}
