
/* ── Hub support pages: guides, issues, contact ── */
.lp-hub-hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 1.25rem 2.75rem;
  background: linear-gradient(165deg, #1e3a5f 0%, #2d4a73 45%, #2d4a73 100%);
  color: #f8fafc;
}

.lp-hub-hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% -5%, rgba(45, 212, 191, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 100%, rgba(45, 212, 191, 0.07), transparent 50%);
  pointer-events: none;
}

.lp-hub-hero .lp-breadcrumb,
.lp-hub-hero .lp-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
}

.lp-hub-hero .lp-breadcrumb a:hover {
  color: #2dd4bf;
}

.lp-hub-hero__body {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.lp-hub-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.28);
  color: #2dd4bf;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.lp-hub-hero h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  font-weight: 900;
  line-height: 1.2;
}

.lp-hub-hero p {
  margin: 0;
  color: #94a3b8;
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 56ch;
}

.lp-hub-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.lp-hub-hero--issues .lp-hub-hero__mesh {
  background:
    radial-gradient(ellipse 65% 50% at 15% -5%, rgba(239, 68, 68, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(45, 212, 191, 0.08), transparent 50%);
}

.lp-hub-hero--contact .lp-hub-hero__mesh {
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(45, 212, 191, 0.14), transparent 55%),
    radial-gradient(ellipse 45% 35% at 0% 90%, rgba(59, 130, 246, 0.08), transparent 50%);
}

.lp-hub-section {
  padding: 2rem 0 3.5rem;
  margin-top: -0.75rem;
  position: relative;
  z-index: 2;
}

.lp-hub-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 1.1rem;
}

.lp-hub-guide-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease), border-color 0.2s;
}

.lp-hub-guide-card:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 212, 191, 0.35);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

.lp-hub-guide-card__head {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.lp-hub-guide-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2dd4bf, #14b8a6);
  color: #2d4a73;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.lp-hub-guide-card h2 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.lp-hub-guide-card__head p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.lp-hub-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: rh-step;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.lp-hub-steps li {
  counter-increment: rh-step;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #334155;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  background: var(--lp-bg);
}

.lp-hub-steps li::before {
  content: counter(rh-step);
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 8px;
  background: #2d4a73;
  color: #2dd4bf;
  font-size: 0.78rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.lp-hub-issues-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lp-hub-issue-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.04);
}

.lp-hub-issue-card--warn {
  border-right: 4px solid #f59e0b;
}

[dir="ltr"] .lp-hub-issue-card--warn {
  border-right: none;
  border-left: 4px solid #f59e0b;
}

.lp-hub-issue-card--info {
  border-right: 4px solid #3b82f6;
}

[dir="ltr"] .lp-hub-issue-card--info {
  border-right: none;
  border-left: 4px solid #3b82f6;
}

.lp-hub-issue-card__top {
  display: flex;
  gap: 0.85rem;
  padding: 1.2rem 1.25rem 0.85rem;
  align-items: flex-start;
}

.lp-hub-issue-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #2d4a73;
  color: #2dd4bf;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.lp-hub-issue-card h2 {
  margin: 0 0 0.3rem;
  font-size: 1.02rem;
  font-weight: 800;
}

.lp-hub-issue-card__desc {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.lp-hub-issue-card__fix {
  margin: 0 1.25rem 1.15rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.1), rgba(45, 212, 191, 0.04));
  border: 1px solid rgba(45, 212, 191, 0.2);
}

.lp-hub-issue-card__fix strong {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #92400e;
  margin-bottom: 0.35rem;
}

.lp-hub-issue-card__fix p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #334155;
}

.lp-hub-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.lp-hub-contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.35rem 1.2rem;
  border-radius: 20px;
  border: 1px solid var(--lp-border);
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s var(--lp-ease), border-color 0.2s, box-shadow 0.2s;
  min-height: 100%;
}

.lp-hub-contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 191, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
  color: inherit;
}

.lp-hub-contact-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #2d4a73;
  color: #2dd4bf;
  font-size: 1.25rem;
}

.lp-hub-contact-card--email .lp-hub-contact-card__icon {
  background: linear-gradient(135deg, #2dd4bf, #14b8a6);
  color: #2d4a73;
}

.lp-hub-contact-card h2 {
  margin: 0.35rem 0 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.lp-hub-contact-card p {
  margin: 0;
  flex: 1;
  color: var(--lp-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.lp-hub-contact-card__btn {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  font-weight: 800;
  color: #2d4a73;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.lp-hub-contact-hours {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  background: var(--lp-bg);
  border: 1px dashed var(--lp-border);
  color: var(--lp-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.lp-hub-contact-hours i {
  font-size: 1.35rem;
  color: #2dd4bf;
  margin-top: 0.1rem;
}

.lp-hub-contact-hours strong {
  display: block;
  color: #2d4a73;
  margin-bottom: 0.2rem;
}

.lp-hub-contact-hours p {
  margin: 0;
}

@media (max-width: 640px) {
  .lp-hub-hero__actions .lp-btn {
    width: 100%;
    justify-content: center;
  }
}
