/* About page — company logo in hero */
.page-hero-inner--about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.about-hero-logo {
  margin-bottom: 4px;
}

.about-hero-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.about-hero-logo-link:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.about-hero-logo-img {
  height: clamp(52px, 11vw, 84px);
  width: auto;
  max-width: min(260px, 88vw);
  object-fit: contain;
  display: block;
}

@media (max-width: 480px) {
  .about-hero-logo-link {
    padding: 10px 16px;
  }
}

/* Story + 24/7 support */
.about-story {
  margin-bottom: 40px;
  max-width: 900px;
}

.about-story p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.about-story p:last-child {
  margin-bottom: 0;
}

.two-col--about-support {
  align-items: start;
}

.about-support-card {
  padding: 24px 22px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--brand-blue-soft) 0%, #fff 55%);
  border: 1px solid rgba(30, 82, 196, 0.12);
  box-shadow: 0 8px 28px rgba(15, 53, 112, 0.06);
}

.about-support-title {
  margin: 0 0 12px;
  font-size: 1.15rem;
  color: var(--brand-blue-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.about-support-title i {
  color: var(--brand-gold);
}

.about-support-text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

.about-support-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-blue);
  text-decoration: none;
}

.about-support-phone i {
  font-size: 1.1rem;
  color: var(--brand-gold-dark);
}

.about-support-phone:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .about-support-card {
    order: -1;
  }
}
