.about-page {
  color: var(--text-primary);
}

.about-hero {
  margin-bottom: 80px;
}

.about-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  margin-bottom: 18px;
}

.about-hero p {
  max-width: 900px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.about-section {
  margin-bottom: 90px;
}

.about-section h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 14px;
}

.about-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 4px;
  background: var(--accent-secondary);
  border-radius: 2px;
}

.about-section p {
  max-width: 920px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

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

.about-grid > div {
  background: var(--bg-secondary);
  padding: 28px;
  border-radius: 14px;
  border: 1px solid rgba(136, 146, 176, 0.15);
  box-shadow: var(--shadow-card);
}

.about-grid h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-grid p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.about-list {
  padding-left: 18px;
  margin-top: 24px;
}

.about-list li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.about-cta {
  margin-top: 80px;
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 56px;
  border: 1px solid rgba(136, 146, 176, 0.15);
  box-shadow: var(--shadow-card);
}

.about-cta h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-cta p {
  max-width: 900px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.about-header-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding-bottom: 32px;
}

.about-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.about-title {
  margin: 6px 0 10px;
}

.about-title-marker {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;

  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);

  background-image: linear-gradient(
    179deg,
    #FFB71D 0%,
    #FFB71D 62%,
    transparent 54%,
    transparent 100%
  );
  background-size: 100% 18%;
  background-repeat: repeat-x;
  background-position: left 0% bottom -7%;
}


.about-header-center p {
  font-size: 14px;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .about-hero {
    margin-bottom: 40px;
  }
  
  .about-section {
    margin-bottom: 50px;
  }

  .about-cta {
    padding: 32px 24px;
    margin-top: 40px;
    text-align: center;
  }

  .about-cta h2 {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .about-title-marker {
    font-size: 28px;
  }
  
  .about-section h2 {
    font-size: 24px;
  }
}
