body.about-page {
  background: radial-gradient(circle at 12% 18%, #15224a, #050814 68%);
  color: var(--brand-white);
  animation: aboutPageFade 0.7s ease both;
}

body.about-page header {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 70;
  backdrop-filter: blur(16px);
}

@keyframes aboutPageFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.about-page main {
  padding-bottom: 110px;
}

.about-page section {
  padding: 80px 20px;
}

.about-page .section-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.about-page [data-reveal] {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.about-page [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 20px 95px;
  background: linear-gradient(135deg, #030614, #051536 60%, #062d6b);
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/home-wifi-upgrade.jpeg') center / cover no-repeat;
  opacity: 0.17;
  transform: scale(1.04);
}

.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(84, 210, 255, 0.32), transparent 50%),
    radial-gradient(circle at 82% 5%, rgba(12, 93, 255, 0.45), transparent 58%),
    linear-gradient(to bottom, rgba(4, 7, 19, 0.58), rgba(4, 7, 19, 0.84));
}

.about-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: start;
}

.about-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.about-hero h1 {
  margin: 12px 0 16px;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1.14;
}

.about-hero p {
  color: var(--text-muted);
  line-height: 1.66;
}

.about-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.about-page .hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.about-page .hero-cta.phone {
  background: var(--brand-white);
  color: var(--brand-blue);
}

.about-page .hero-cta.quote {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: var(--brand-white);
}

.about-page .hero-cta:hover {
  transform: translateY(-2px);
}

.about-hero-panel {
  background: rgba(8, 12, 30, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-strong);
}

.about-hero-panel h3 {
  margin: 0 0 10px;
}

.about-hero-panel ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--text-muted);
}

.about-values,
.about-process,
.about-proof,
.about-faq {
  background: #0a1025;
}

.about-story,
.about-cta {
  background: radial-gradient(circle at 16% 16%, rgba(12, 93, 255, 0.25), transparent 55%), #050b19;
}

.about-page h2,
.about-page h3 {
  color: var(--brand-white);
}

.about-lede {
  color: var(--text-muted);
  max-width: 760px;
}

.about-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.about-card {
  border-radius: 20px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.about-steps {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.about-steps li {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 18px;
}

.about-proof-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.about-proof-stat {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.11);
  padding: 18px;
}

.about-proof-value {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
}

.about-proof-label {
  margin: 8px 0 0;
  color: var(--text-muted);
}

.about-faq details {
  margin-top: 12px;
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-faq summary {
  cursor: pointer;
  font-weight: 600;
}

.about-faq p {
  margin: 10px 0 4px;
  color: var(--text-muted);
}

.about-cta {
  text-align: center;
}

.about-cta p {
  color: var(--text-muted);
}

@media (max-width: 980px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-page section {
    padding: 68px 16px;
  }

  .about-page .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}
