/* KWCS how-to-help styles — extracted from _assets/kwcs-homepage-v4.html */

/* ─── HOW TO HELP ─── */
  .help-section {
    background: var(--navy);
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
  }

.help-section .face-pattern { opacity: 0.45; }

.help-section .section-title { color: white; }

.help-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
    margin-top: 48px;
  }

.help-card {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.08);
    padding: 40px 32px 36px;
    display: block;
    position: relative;
    border-radius: 24px;
  }

.help-icon-wrap {
    width: 52px; height: 52px;
    background: var(--gold);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
  }

.help-icon-wrap svg { width: 26px; height: 26px; color: var(--navy-deep); }

.help-title {
    font-size: 32px;
    color: white;
    margin-bottom: 12px;
    line-height: 1;
  }

.help-desc {
    font-size: 14.5px;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 500;
  }

@media (max-width: 1024px) {
  .help-section { padding: 72px 32px; }
  .help-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .help-section { padding: 56px 20px; }
}
