/* How-to pages — phones keep their shape; no boxed feature grids. */
.howto-page .page-hero h1 { max-width: 22em; }
.dive-visual .pkg { max-width: 400px; }

.howto-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand-2);
}
.howto-back svg { width: 16px; height: 16px; }

.howto-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  align-items: flex-end;
}
.howto-phones .shot { max-width: 240px; }
.howto-phones .shot img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.howto-desk {
  width: 100%;
  max-width: 820px;
}
.howto-desk img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: contain;
}

.howto-stage {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 28px;
  align-items: end;
  margin: 8px 0 0;
}
@media (max-width: 800px) {
  .howto-stage { grid-template-columns: 1fr; }
  .howto-stage .shot { margin-inline: auto; }
}

.howto-rows { display: grid; gap: 10px; }
.howto-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  align-items: center;
  padding: 16px 8px 16px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}
.howto-row:last-child { border-bottom: 0; }
.howto-row:hover h3 { color: var(--brand-2); }
.howto-row img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  border: 1px solid var(--line);
}
.howto-row h3 { margin: 0 0 4px; font-size: 1.15rem; color: #fff; }
.howto-row p { margin: 0; color: var(--muted); font-size: 0.95rem; }
@media (max-width: 640px) {
  .howto-row { grid-template-columns: 72px 1fr; }
  .howto-row img { width: 72px; height: 72px; }
}

/* Completion package — customer page, not a marketing card */
.pkg {
  background: #F8FAFC;
  color: #1E293B;
  border-radius: 20px;
  padding: 16px;
  max-width: 560px;
}
.pkg-head {
  background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
  color: #fff;
  padding: 28px 20px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 14px;
}
.pkg-head h3 {
  font-family: var(--font-head);
  font-size: 22px;
  color: #fff;
  margin: 0 0 4px;
}
.pkg-head p { margin: 0; opacity: .9; font-size: 14px; color: #fff; }
.pkg-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
}
.pkg-card h4 {
  font-size: 15px;
  margin: 0 0 10px;
  color: #1E293B;
  font-family: var(--font);
}
.pkg-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pkg-photos img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
}
.pkg-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid #E2E8F0;
  font-size: 14px;
}
.pkg-row:first-of-type { border-top: 0; }
.pkg-pay {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #fff;
  font-weight: 700;
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 12px;
}
.pkg-reviews {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pkg-rev {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 10px;
  border: 2px solid #E2E8F0;
  background: #fff;
  color: #1E293B;
  font-weight: 700;
  font-size: 15px;
}
.pkg-rev svg { width: 20px; height: 20px; flex-shrink: 0; }
.pkg-rev.google { border-color: #DADCE0; }
.pkg-rev.facebook { border-color: #1877F2; color: #1877F2; }
.pkg-rev.instagram { border-color: #E4405F; color: #C13584; }
