/* Choose Model, Full Support, FAQ — shared homepage + how-it-works */

.hiwlp-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.hiwlp-eyebrow {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.hiwlp-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

.hiwlp-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.75;
}

.hiwlp-header { margin-bottom: 52px; }
.hiwlp-header.center { text-align: center; }
.hiwlp-header.center .hiwlp-sub { margin: 0 auto; }

.hiwlp-section { padding: 80px 0; }
.hiwlp-section.surface { background: var(--surface); }

.hiwlp-models-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.hiwlp-model {
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  background: var(--white);
}

.hiwlp-model.featured {
  border-color: var(--orange);
  background: linear-gradient(135deg, rgba(255,107,43,.05) 0%, rgba(255,107,43,.01) 100%);
}

.hiwlp-model-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.hiwlp-badge-affiliate { background: rgba(11,20,55,.08); color: var(--navy); }
.hiwlp-badge-partner { background: var(--orange-l); color: var(--orange-d); }

.hiwlp-model h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.hiwlp-model-tagline {
  font-size: .92rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.hiwlp-model-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hiwlp-model-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .86rem;
  color: var(--muted);
}

.hiwlp-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange-l);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.hiwlp-check svg { width: 11px; height: 11px; color: var(--orange-d); }

.hiwlp-model-best {
  font-size: .82rem;
  color: var(--muted);
  background: var(--surface);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 22px;
}

.hiwlp-model-best strong { color: var(--navy); }

.hiwlp-btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
  text-align: center;
}

.hiwlp-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hiwlp-support-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all .2s;
}

.hiwlp-support-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.hiwlp-sup-icon { font-size: 1.8rem; flex-shrink: 0; }

.hiwlp-sup-title {
  font-size: .95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.hiwlp-sup-desc {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.6;
}

.hiwlp-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hiwlp-faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

.hiwlp-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: inherit;
}

.hiwlp-faq-q:hover { background: var(--surface); }

.hiwlp-faq-arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .25s;
}

.hiwlp-faq-item.open .hiwlp-faq-arrow {
  background: var(--orange);
  color: #fff;
}

.hiwlp-faq-item.open .hiwlp-faq-arrow svg { transform: rotate(180deg); }

.hiwlp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .25s;
  padding: 0 20px;
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.7;
}

.hiwlp-faq-item.open .hiwlp-faq-a {
  max-height: 200px;
  padding: 0 20px 18px;
}

@media (max-width: 1024px) {
  .hiwlp-support-grid { grid-template-columns: repeat(2, 1fr); }
  .hiwlp-faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hiwlp-section { padding: 56px 0; }
  .hiwlp-support-grid,
  .hiwlp-models-grid { grid-template-columns: 1fr; }
}
