/* ─── PAGE HERO ─── */
.page-hero {
  background: linear-gradient(135deg, #0d1f4a 0%, #1D4ED8 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;
}

/* ─── SERVICES SECTION ─── */
#services-detail { background: #fff; }
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; position: relative; z-index: 1;
}
.service-card {
  background: #F8FAFF; border: 1px solid rgba(29,78,216,.1);
  border-radius: 20px; padding: 40px 36px;
  display: flex; flex-direction: column;
  transition: box-shadow .3s;
}
.service-card:hover { box-shadow: 0 12px 48px rgba(29,78,216,.1); }
.service-card--highlight {
  background: linear-gradient(150deg, #fff9f5 0%, #fff4ec 100%);
  border-color: rgba(249,115,22,.2);
}
.service-card-label {
  font-size: 11px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; border-radius: 6px;
  padding: 3px 10px; align-self: flex-start; margin-bottom: 20px;
}
.service-card-price {
  font-size: 48px; font-weight: 700; color: #0A1A35;
  letter-spacing: -.03em; line-height: 1; margin-bottom: 6px;
}
.service-card-currency {
  font-size: 22px; font-weight: 600; color: var(--g4);
}
.service-card-min {
  font-size: 12px; color: var(--g4); margin-bottom: 28px;
}
.service-card-list {
  list-style: none; padding: 0; margin: 0 0 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.service-card-list li {
  font-size: 14px; color: #0A1A35; line-height: 1.5;
  padding-left: 22px; position: relative;
}
.service-card-list li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 8px; height: 8px; border-radius: 2px; background: var(--bp);
}
.service-card--highlight .service-card-list li::before { background: var(--bn); }
.service-card-note {
  font-size: 12px; color: var(--g4); line-height: 1.6;
  border-top: 1px solid rgba(29,78,216,.08);
  padding-top: 16px; margin-bottom: 24px;
}
.service-card--highlight .service-card-note { border-color: rgba(249,115,22,.12); }

/* ─── HOW IT WORKS ─── */
#how { background: linear-gradient(160deg, #F4F8FF 0%, #EEF4FF 100%); }
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; position: relative; z-index: 1;
}
.step-card {
  background: #fff; border-radius: 16px; padding: 28px 24px;
  border: 1px solid rgba(29,78,216,.08);
}
.step-num {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--bp); color: #fff;
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step-title {
  font-size: 15px; font-weight: 700; color: #0A1A35;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 13px; color: var(--g4); line-height: 1.6;
}

@media (max-width: 768px) {
  .page-hero { padding: 80px 24px 60px; }
  .page-hero-title { font-size: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
}
