/* support.css — styles specific to support.html */

/* Active nav link */
.nav-active {
  color: var(--brand) !important;
  font-weight: 600;
}

/* ── Page Hero ─────────────────────────────────────── */
.support-hero {
  padding: 80px 0 72px;
  background: linear-gradient(160deg, #f0f4ff 0%, #fff 55%);
  border-bottom: 3px solid var(--brand);
}
.support-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--brand);
  margin: 0 0 10px;
}
.support-hero h1 {
  font-size: 48px;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--ink);
  max-width: 680px;
}
.support-hero .lead {
  font-size: 17px;
  color: #374151;
  max-width: 580px;
  margin: 0 0 36px;
}

/* Contact bar */
.support-contact-bar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-bar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 16px 22px;
  text-decoration: none;
  color: var(--ink);
  transition: all .2s;
  min-width: 200px;
}
.contact-bar-item.primary {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}
.contact-bar-item.primary svg {
  stroke: #fff;
}
.contact-bar-item:hover:not(.primary) {
  border-color: var(--brand);
  box-shadow: 0 4px 16px rgba(25,38,255,.1);
}
.contact-bar-item.primary:hover {
  background: var(--brand-dark);
}
.contact-bar-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: var(--brand);
}
.contact-bar-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: inherit;
  opacity: .7;
}
.contact-bar-item.primary .contact-bar-label {
  opacity: .85;
}
.contact-bar-value {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

/* ── Support Areas ─────────────────────────────────── */
.support-areas {
  padding: 96px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.support-areas h2 {
  font-size: 34px;
  margin: 0 0 8px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 15px;
  color: #4b5563;
  max-width: 600px;
  margin: 0 0 40px;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.support-card {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  transition: all .25s ease;
}
.support-card:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 28px rgba(25,38,255,.1);
  transform: translateY(-2px);
}
.support-card .icon {
  width: 36px;
  height: 36px;
  stroke: var(--brand);
  margin-bottom: 14px;
}
.support-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--ink);
}
.support-card > p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0 0 14px;
}
.support-card ul {
  margin: 0;
  padding: 0 0 0 16px;
  list-style: none;
}
.support-card ul li {
  font-size: 13px;
  color: var(--muted);
  padding: 3px 0;
  position: relative;
}
.support-card ul li::before {
  content: '→';
  position: absolute;
  left: -16px;
  color: var(--accent-green);
  font-size: 12px;
}

/* ── How Support Works ─────────────────────────────── */
.how-support {
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.how-support h2 {
  font-size: 34px;
  margin: 0 0 8px;
  color: var(--brand);
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 40px;
}
.step {
  flex: 1;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  border-top: 4px solid var(--brand);
}
.step-num {
  width: 40px;
  height: 40px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--ink);
}
.step p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.65;
  margin: 0;
}
.step-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-top: 40px;
}
.step-arrow svg {
  width: 28px;
  height: 28px;
  stroke: var(--muted);
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 980px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    flex-direction: column;
  }
  .step-arrow {
    transform: rotate(90deg);
    padding-top: 0;
    align-self: center;
  }
  .support-contact-bar {
    flex-direction: column;
  }
  .contact-bar-item {
    min-width: 0;
  }
}
@media (max-width: 640px) {
  .support-hero h1 {
    font-size: 32px;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
}
