.about-body {
  min-height: 100%;
  padding-bottom: 4rem;
}

.about-body .footer-right {
  position: fixed;
  right: 1.5rem;
  top: calc(1.5rem + env(safe-area-inset-top, 0px));
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.ab-hero {
  text-align: center;
  padding: 5rem 1.5rem 2rem;
}

.ab-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f2e9df;
}

.ab-subtitle {
  margin-top: 0.6rem;
  color: #cbb8a4;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.ab-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.ab-section {
  border: 1px solid rgba(185, 128, 63, 0.3);
  border-radius: 16px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
}

.ab-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d99a54;
  margin-bottom: 0.9rem;
}

.ab-section p {
  color: #dcd0c2;
  line-height: 1.6;
}

.ab-section p + p {
  margin-top: 1rem;
}

.ab-section a {
  color: #d99a54;
}

.ab-section a:hover {
  color: #e8b06a;
}

.dev-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.4rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #b9803f, #8a5a2b);
  color: #fff8ef;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 224, 179, 0.35);
  box-shadow: 0 6px 20px rgba(139, 90, 43, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.dev-link-btn svg {
  width: 1.1rem;
  height: 1.1rem;
}

.dev-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(139, 90, 43, 0.6);
  background: linear-gradient(180deg, #c98f4a, #96622f);
}

.ab-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: #dcd0c2;
  line-height: 1.5;
}

.ab-list li {
  padding-left: 1.4rem;
  position: relative;
}

.ab-list li::before {
  content: "•";
  color: #d99a54;
  position: absolute;
  left: 0;
}

@media (max-width: 600px) {
  .ab-hero {
    padding: 4rem 1rem 1.5rem;
  }

  .ab-section {
    padding: 1.4rem;
  }
}
