/* ===== PAGE HERO (shared) ===== */
.page-hero {
  position: relative;
  padding: 5rem 2rem 3rem;
  background: linear-gradient(135deg, rgba(30,58,95,.9) 0%, rgba(10,14,26,.95) 100%);
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(59,130,246,.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: .75rem;
  line-height: 1.1;
}
.page-hero-sub {
  font-size: 1.125rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ===== SECTION SPACING ===== */
.hiw-section {
  margin-bottom: 4rem;
}
.hiw-section:last-child {
  margin-bottom: 0;
}

/* ===== STEPS GRID ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.step-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
}
.step-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}
.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 10px;
}
.step-body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: .375rem;
}
.step-body p {
  font-size: .9375rem;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

/* ===== BENEFIT GRID ===== */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.benefit-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.benefit-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}
.benefit-icon {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--accent-light);
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}
.benefit-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .375rem;
}
.benefit-card p {
  font-size: .875rem;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0;
}

/* ===== COMPARISON TABLE ===== */
.compare-wrap {
  margin-top: 2rem;
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9375rem;
}
.compare-table thead th {
  text-align: left;
  padding: .875rem 1rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-3);
  border-bottom: 2px solid var(--border);
}
.compare-table tbody td {
  padding: .875rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  vertical-align: top;
}
.compare-table tbody tr:hover td {
  background: rgba(255,255,255,.02);
}
.compare-table .brand-col {
  color: var(--text);
  font-weight: 600;
  background: rgba(42,82,152,.06);
}
.compare-table thead th.brand-col {
  color: var(--accent-light);
  background: rgba(42,82,152,.1);
}

/* ===== FAQ ACCORDION ===== */
.hiw-faq .faq-list {
  margin-top: 2rem;
  max-width: 720px;
}
.faq-item {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: var(--border-bright);
}
.faq-item summary {
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-3);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] summary::after {
  content: '−';
  color: var(--accent-light);
}
.faq-item p {
  padding: 0 1.25rem 1.25rem;
  font-size: .9375rem;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0;
}

/* ===== HELP PAGE ===== */
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.help-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.help-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}
.help-card-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.help-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: 9px;
  color: #fff;
}
.help-card-head h2 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0;
}
.help-faq .faq-item {
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  margin-bottom: 0;
}
.help-faq .faq-item:last-child {
  border-bottom: none;
}
.help-faq .faq-item summary {
  font-size: .9375rem;
  font-weight: 600;
}
.help-faq .faq-item p {
  font-size: .875rem;
}

/* ===== CTA BOX ===== */
.hiw-cta {
  text-align: center;
}
.hiw-cta-box {
  display: inline-block;
  max-width: 560px;
  margin: 0 auto;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(30,58,95,.5) 0%, rgba(10,14,26,.6) 100%);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
}
.hiw-cta-box h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: .5rem;
}
.hiw-cta-box p {
  font-size: .9375rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .page-hero { padding: 3.5rem 1.5rem 2rem; }
  .page-hero h1 { font-size: 2rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-table { font-size: .875rem; }
  .compare-table thead th,
  .compare-table tbody td { padding: .625rem .75rem; }
}
@media (max-width: 480px) {
  .benefit-grid { grid-template-columns: 1fr; }
  .step-card { flex-direction: column; gap: .75rem; }
}
