/* ─── PAGE HERO ─── */
.page-hero {
  background: linear-gradient(135deg, var(--text) 0%, var(--bp) 100%);
  padding: 100px 56px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-label {
  font-size: 11px; font-weight: 600; letter-spacing: .35em;
  color: rgba(255,255,255,.6); text-transform: uppercase;
  margin-bottom: 20px;
}
.page-hero-title {
  font-size: 52px; font-weight: 700;
  color: #fff; letter-spacing: -.03em; line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero-title span { color: var(--bn); }
.page-hero-sub {
  font-size: 17px; color: rgba(255,255,255,.75);
  line-height: 1.7; max-width: 560px; margin: 0 auto;
}

/* ─── READY PRODUCTS ─── */
#ready-products { background: linear-gradient(160deg, #F4F8FF 0%, #EEF4FF 100%); }
.ready-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}
.ready-product-card {
  min-width: 0;
  padding: 34px;
  border: 1px solid rgba(29,78,216,.12);
  border-radius: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 10px 34px rgba(29,78,216,.07);
}
.ready-product-heading { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.ready-product-heading img { width: 52px; height: 52px; border-radius: 13px; order: 2; }
.ready-product-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.ready-product-badge {
  padding: 4px 10px;
  border-radius: 6px;
  background: #F0FDF4;
  color: #15803D;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.ready-product-badge--accent { background: var(--bn); color: #fff; }
.ready-product-card h3 { margin: 0 0 10px; color: #0A1A35; font-size: 23px; }
.ready-product-card p { margin: 0 0 24px; color: var(--g4); font-size: 14px; line-height: 1.7; flex: 1; }
.ready-product-card .btn-blue { align-self: flex-start; }

/* ─── HOW IT WORKS ─── */
#how { background: linear-gradient(160deg, #F4F8FF 0%, #EEF4FF 100%); }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative; z-index: 1;
  margin-top: 44px;
  border-top: 1px solid rgba(29,78,216,.2);
  border-bottom: 1px solid rgba(29,78,216,.2);
}
.step-card {
  padding: 28px 32px 32px;
  min-width: 0;
}
.step-card + .step-card {
  border-left: 1px solid rgba(29,78,216,.2);
}
.step-num {
  color: var(--bn); font-size: 12px; font-weight: 700;
  letter-spacing: .16em; margin-bottom: 34px;
}
.step-title {
  font-size: 20px; font-weight: 700; color: #0A1A35;
  line-height: 1.25; letter-spacing: -.02em; margin-bottom: 10px;
}
.step-desc {
  font-size: 14px; color: var(--g4); line-height: 1.65;
}

@media (max-width: 768px) {
  .page-hero { padding: 80px 24px 60px; }
  .page-hero-title { font-size: var(--fs-h1-mobile); line-height: var(--lh-h1-mobile); }
  .services-grid { grid-template-columns: 1fr; }
  .ready-products-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { padding: 22px 0 24px; }
  .step-card + .step-card { border-left: 0; border-top: 1px solid rgba(29,78,216,.2); }
  .step-num { margin-bottom: 14px; }
  .step-title { font-size: 19px; }
}
