@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --help-bg-1: #f5faff;
  --help-bg-2: #e8f1ff;
  --help-text: #15263e;
  --help-muted: #63768e;
  --help-card: #ffffff;
  --help-border: #d7e4f3;
  --help-brand: #0f766e;
  --help-brand-2: #0b5c81;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Manrope', sans-serif;
}

body {
  color: var(--help-text);
  background:
    radial-gradient(920px 420px at 100% -10%, rgba(56, 189, 248, 0.16), transparent 60%),
    radial-gradient(680px 300px at -5% 100%, rgba(20, 184, 166, 0.15), transparent 64%),
    linear-gradient(180deg, var(--help-bg-1) 0%, var(--help-bg-2) 100%);
  padding: 20px;
}

.help-shell {
  max-width: 1160px;
  margin: 0 auto;
}

.hero {
  border-radius: 22px;
  padding: 36px 28px;
  color: #ffffff;
  background-position: center;
  background-size: cover;
  box-shadow: 0 22px 42px rgba(9, 21, 38, 0.3);
}

.brand-pill {
  display: inline-flex;
  width: fit-content;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.06;
}

.hero p {
  margin-top: 12px;
  max-width: 700px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(234, 244, 255, 0.93);
}

.hero-cta {
  margin-top: 20px;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  color: #083c5a;
  background: #ffffff;
  border-radius: 11px;
  padding: 10px 14px;
}

.help-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.help-card {
  background: var(--help-card);
  border: 1px solid var(--help-border);
  border-radius: 16px;
  padding: 18px 15px;
  box-shadow: 0 14px 24px rgba(13, 31, 56, 0.08);
}

.icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--help-brand) 0%, var(--help-brand-2) 100%);
  font-size: 18px;
}

.help-card h3 {
  margin-top: 12px;
  font-size: 18px;
}

.help-card p {
  margin-top: 8px;
  color: var(--help-muted);
  line-height: 1.6;
  font-size: 14px;
}

.help-card a,
.help-card span {
  margin-top: 8px;
  display: inline-block;
  color: #0b5c81;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.faq-section {
  margin-top: 20px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--help-border);
  background: rgba(255, 255, 255, 0.78);
}

.faq-head h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.faq-head p {
  margin-top: 6px;
  color: var(--help-muted);
  font-size: 15px;
}

.faq-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid var(--help-border);
  background: #ffffff;
  padding: 14px;
}

.faq-item h4 {
  font-size: 16px;
}

.faq-item p {
  margin-top: 7px;
  color: var(--help-muted);
  font-size: 14px;
  line-height: 1.6;
}

.showcase {
  margin-top: 16px;
}

.showcase img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid #d7e4f3;
  max-height: 420px;
  object-fit: cover;
  box-shadow: 0 14px 26px rgba(10, 25, 47, 0.12);
}

.help-footer {
  margin-top: 16px;
  padding: 18px;
  border-radius: 16px;
  background: #0d1f37;
  color: #ffffff;
  text-align: center;
}

.help-footer h3 {
  font-size: 21px;
}

.social-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.social-links a {
  text-decoration: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  transition: all 0.2s ease;
}

.social-links a:hover {
  color: #0d1f37;
  background: #ffffff;
}

@media (max-width: 1020px) {
  .help-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    padding: 10px;
  }

  .hero {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .help-grid {
    grid-template-columns: 1fr;
  }
}
