.about-page .highlight,
.about-page mark {
  background: transparent;
  padding: 0;
  border-radius: 0;
  color: inherit;
  font-weight: 600;
}

.about-page .about-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-page .about-section {
  margin: 40px 0;
}

.about-page .about-section + .about-section {
  padding-top: 8px;
}

.about-page .about-hero {
  padding-bottom: 24px;
}

.about-page .about-hero + .about-section {
  margin-top: 24px;
}

.about-page .about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.about-page .about-copy h2,
.about-page h1,
.about-page h2,
.about-page h3 {
  margin-top: 0;
}

.about-page .about-copy h2 {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.about-page .about-copy p {
  max-width: 60ch;
  line-height: 1.6;
  margin: 0 0 12px;
  color: #333;
}

.about-page .about-stats {
  display: grid;
  gap: 12px;
}

.about-page .stat-card {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
}

.about-page .stat-value {
  font-size: 22px;
  font-weight: 700;
}

.about-page .stat-label {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}

.about-page .about-compare-grid,
.about-page .compare-grid,
.about-page .pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-page .about-card,
.about-page .compare-card,
.about-page .about-compare-card {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255,255,255,0.6);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.about-page .about-card h3,
.about-page .compare-card h3,
.about-page .about-compare-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.about-page .about-card ul,
.about-page .compare-card ul,
.about-page .about-compare-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.about-page .about-card li,
.about-page .compare-card li,
.about-page .about-compare-card li {
  margin: 8px 0;
  color: #333;
}

.about-page .price-big {
  font-size: 22px;
  font-weight: 700;
  margin: 10px 0;
}

.about-page .about-badge {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(236,72,153,0.12);
  color: #c73379;
  border: 1px solid rgba(236,72,153,0.25);
}

@media (max-width: 900px) {
  .about-page .about-container {
    padding: 0 16px;
  }

  .about-page .about-grid,
  .about-page .about-compare-grid,
  .about-page .compare-grid,
  .about-page .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .about-page .about-section {
    margin: 28px 0;
  }
}

.about-page .about-hero-highlight {
  position: relative;
  padding-left: 28px;
  margin-bottom: 48px;
  background: radial-gradient(circle at top left, rgba(233, 30, 99, 0.06), transparent 60%);
  border-radius: 20px;
  padding-top: 48px;
  padding-right: 48px;
  padding-bottom: 48px;
}

.about-page .about-hero-highlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 80%;
  background: linear-gradient(180deg, #E91E63, #ff5c8a);
  border-radius: 4px;
}

.about-page .brand-accent {
  color: #E91E63;
  font-weight: 600;
}

.about-page .about-hero-highlight .section-label {
  color: #E91E63;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Refined who-we-are stats alignment + premium cards */
.about-page .about-who-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

.about-page .about-stats {
  display: grid;
  gap: 14px;
}

.about-page .stat-card {
  position: relative;
  border-radius: 16px;
  padding: 16px 16px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.about-page .stat-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #E91E63, #ff5c8a);
  opacity: 0.95;
}

.about-page .stat-card::after {
  content: "";
  position: absolute;
  inset: -40px -60px auto auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(233,30,99,0.14), transparent 60%);
  transform: rotate(12deg);
  pointer-events: none;
}

.about-page .stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.10);
  border-color: rgba(233, 30, 99, 0.18);
}

.about-page .stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.about-page .stat-number {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.about-page .stat-label {
  font-size: 13px;
  line-height: 1.3;
  color: rgba(0,0,0,0.68);
  margin-top: 0;
}

.about-page .stat-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #E91E63;
  box-shadow: 0 0 0 6px rgba(233,30,99,0.10);
}

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

/* About page: remove dead space between who section and co-living card */
.about-page .who-section,
.about-page .about-hero,
.about-page .about-intro {
  margin-bottom: 24px !important;
  padding-bottom: 0 !important;
}

.about-page .who-section + .section {
  margin-top: 0 !important;
  padding-top: 10px !important;
}

.about-page .section {
  margin-bottom: 32px;
}

.about-page .spacer,
.about-page .section-spacer,
.about-page .gap {
  display: none !important;
}

/* Co-living card treatment */
.about-page .co-living-card {
  margin-top: 10px !important;
  margin-bottom: 36px !important;
}

.about-page .co-living--plain {
  position: relative;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.about-page .co-living--plain::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  border-radius: 999px;
  background: rgba(185, 53, 98, 0.85);
}

.about-page .co-living--plain .about-container {
  padding-left: 22px;
}

.about-page .co-living--plain .co-living-card__inner,
.about-page .co-living--plain.card,
.about-page .co-living--plain.info-card,
.about-page .co-living--plain.feature-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}


.about-page .why-co-living {
  margin-top: 24px;
}

.about-page .co-living-card__inner {
  position: relative;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 26px;
  overflow: hidden;
}

.about-page .co-living-card__inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #e91e63, #ff5c8a);
}

.about-page .co-living-card__inner::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.14), transparent 60%);
  pointer-events: none;
}

.about-page .about-split--card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: center;
  padding: 0;
}

.about-page .co-living-card__copy h2 {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.2px;
}

.about-page .co-living-card__copy p {
  margin: 0 0 10px;
  color: rgba(0, 0, 0, 0.72);
  line-height: 1.5;
}

.about-page .co-living-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.about-page .co-living--plain .co-living-pills {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-page .co-living-pills .pill {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid rgba(233, 30, 99, 0.18);
  background: rgba(233, 30, 99, 0.06);
  color: rgba(0, 0, 0, 0.78);
  box-shadow: none;
}

.about-page .co-living-card__visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0.95;
}

.about-page .co-living-card__visual img {
  max-width: 100%;
  height: auto;
  display: block;
}

.about-page .co-living--plain .co-living-card__visual img,
.about-page .co-living--plain img {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  display: block;
  margin-left: auto;
  filter: saturate(0.98);
  opacity: 0.98;
}

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

  .about-page .co-living-card__visual {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .about-page .co-living--plain .about-split--card {
    grid-template-columns: 1fr;
  }

  .about-page .co-living--plain .co-living-card__visual img,
  .about-page .co-living--plain img {
    max-width: 100%;
    margin: 10px 0 0;
  }

}


.about-page .who-frame {
  position: relative;
  border-radius: 22px;
  padding: 22px;
  margin: 18px 0 26px;
  background: #fff;
  border: 1.5px solid rgba(178, 58, 103, 0.55);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.about-page .who-frame__glow {
  display: none;
}

@keyframes whoGlow {
  0%, 100% { transform: translate3d(-2%, -2%, 0) scale(1); opacity: 0.45; }
  50% { transform: translate3d(2%, 2%, 0) scale(1.03); opacity: 0.65; }
}

.about-page .who-frame__inner {
  position: relative;
  z-index: 1;
  padding-left: 0;
}

.about-page .who-frame::before {
  content: none !important;
}

.about-page .who-frame::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 30%, rgba(178, 58, 103, 0.18), transparent 55%);
  opacity: 0.55;
  pointer-events: none;
  animation: whoGlow 4.8s ease-in-out infinite;
}

.about-page .who-frame h2,
.about-page .who-frame .section-title {
  margin-top: 0;
}

.about-page .who-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.about-page .who-chip {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  background: rgba(189, 57, 110, 0.08);
  border: 1px solid rgba(189, 57, 110, 0.18);
  color: rgba(0, 0, 0, 0.75);
}

.about-page .who-frame strong,
.about-page .who-frame .brand-accent {
  color: rgba(189, 57, 110, 0.95);
}

.about-page .who-stat {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  animation: statFloat 3.2s ease-in-out infinite;
}

.about-page .who-stat::before {
  content: none;
}

.about-page .who-stat::after {
  content: "";
  position: absolute;
  inset: -60%;
  background: radial-gradient(circle at 30% 30%, rgba(178, 58, 103, 0.14), transparent 60%);
  opacity: 0.55;
  pointer-events: none;
  animation: statPulse 2.6s ease-in-out infinite;
}

.about-page .who-stats .stat-card:nth-child(2) {
  animation-delay: 0.25s;
}

.about-page .who-stats .stat-card:nth-child(2)::after {
  animation-delay: 0.25s;
}

@keyframes statFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes statPulse {
  0%, 100% { transform: translate3d(-2%, -2%, 0) scale(1); opacity: 0.40; }
  50% { transform: translate3d(2%, 2%, 0) scale(1.04); opacity: 0.65; }
}

.about-page .who-frame .about-grid {
  grid-template-columns: 1fr;
}

.about-page .who-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 14px 0 18px;
}

.about-page .who-stats .stat-card {
  flex: 1 1 220px;
  max-width: 320px;
}
