/* =============================================================
   About page — kashinja real-estate copy, design-system tokens.
   ============================================================= */

.about-page { font-family: var(--ds-font); color: var(--ds-ink); background: var(--ds-surface-2); }

/* --- Hero --- */
.about-hero {
  background: linear-gradient(135deg, var(--ds-brand) 0%, var(--ds-brand-800) 100%);
  color: #fff;
  padding: 96px 24px 72px;
  text-align: center;
  direction: rtl;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(110, 231, 183, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(255, 133, 82, 0.12) 0%, transparent 45%);
}
.about-hero__inner { position: relative; max-width: 780px; margin: 0 auto; }
.about-hero__title { font-size: clamp(1.8rem, 4.5vw, 2.8rem); font-weight: 900; margin: 0 0 12px; letter-spacing: -0.02em; }
.about-hero__lead  { font-size: clamp(1rem, 2.2vw, 1.2rem); opacity: 0.92; margin: 0; line-height: 1.8; }

/* --- Layout --- */
.about-main {
  max-width: 1120px;
  margin: -48px auto 64px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.about-card {
  background: var(--ds-surface);
  border-radius: var(--ds-radius-2xl);
  box-shadow: var(--ds-shadow-lg);
  overflow: hidden;
}
.about-card__body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 40px 48px;
  align-items: center;
}
.about-card__body--single { grid-template-columns: 1fr; }

.about-card__col { display: flex; flex-direction: column; gap: 14px; }
.about-card__col--cta { align-items: flex-end; justify-content: center; }

.about-section-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--ds-text-xl);
  font-weight: 800;
  color: var(--ds-ink);
  margin: 0 0 8px;
}
.about-section-title i {
  color: var(--ds-brand);
  background: var(--ds-brand-50);
  width: 40px;
  height: 40px;
  border-radius: var(--ds-radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ds-text-base);
}
.about-section-title--center { justify-content: center; display: flex; text-align: center; }

.about-lead { font-size: var(--ds-text-base); line-height: 1.9; color: var(--ds-muted); margin: 0; }

/* --- Stats (inside intro card) --- */
.about-stats {
  display: grid;
  gap: 12px;
  background: var(--ds-brand-50);
  border-radius: var(--ds-radius-xl);
  padding: 24px;
}
.about-stat { text-align: center; }
.about-stat__num { font-size: var(--ds-text-2xl); font-weight: 900; color: var(--ds-brand-800); line-height: 1.2; }
.about-stat__lbl { font-size: var(--ds-text-sm); color: var(--ds-muted); margin-top: 4px; }

/* --- Features grid --- */
.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.about-feature {
  background: var(--ds-surface);
  padding: 28px 24px;
  border-radius: var(--ds-radius-xl);
  border: 1px solid var(--ds-line);
  text-align: center;
  transition: transform var(--ds-fast), box-shadow var(--ds-fast), border-color var(--ds-fast);
}
.about-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--ds-shadow-lg);
  border-color: var(--ds-brand);
}
.about-feature__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: var(--ds-radius-xl);
  background: var(--ds-brand-50);
  color: var(--ds-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ds-text-2xl);
}
.about-feature h3 { font-size: 1.08rem; font-weight: 700; margin: 0 0 8px; color: var(--ds-ink); }
.about-feature p  { font-size: var(--ds-text-sm); color: var(--ds-muted); line-height: 1.8; margin: 0; }

/* --- How it works --- */
.about-how {
  background: var(--ds-surface);
  border-radius: var(--ds-radius-2xl);
  padding: 48px 48px 56px;
  box-shadow: var(--ds-shadow-md);
}
.about-how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}
.about-step {
  text-align: center;
  padding: 24px 20px;
  border-radius: var(--ds-radius-xl);
  background: var(--ds-surface-2);
  border: 1px dashed var(--ds-brand-100);
}
.about-step__num {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--ds-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ds-text-xl);
  font-weight: 900;
  font-feature-settings: "lnum", "tnum";
}
.about-step h3 { font-size: var(--ds-text-lg); font-weight: 700; margin: 0 0 8px; color: var(--ds-ink); }
.about-step p  { font-size: var(--ds-text-sm); color: var(--ds-muted); line-height: 1.8; margin: 0; }

/* --- Contact list --- */
.about-contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.about-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--ds-text-base);
  color: var(--ds-ink-2);
}
.about-contact-list li i {
  color: var(--ds-brand);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ds-brand-50);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ds-text-sm);
}
.about-contact-list a { color: var(--ds-brand-800); font-weight: 600; }
.about-contact-list a:hover { color: var(--ds-brand); }

/* --- CTA buttons --- */
.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  min-height: 48px;
  border-radius: var(--ds-radius-pill);
  font: 700 0.95rem var(--ds-font);
  text-decoration: none;
  transition: transform var(--ds-fast), background var(--ds-fast);
  border: 1px solid transparent;
}
.about-btn--primary { background: var(--ds-brand); color: #fff; box-shadow: var(--ds-shadow-brand); }
.about-btn--primary:hover { background: var(--ds-brand-700); transform: translateY(-2px); }
.about-btn--ghost { background: transparent; color: var(--ds-brand-800); border-color: var(--ds-line); }
.about-btn--ghost:hover { background: var(--ds-brand-50); border-color: var(--ds-brand); }

/* --- Responsive --- */
@media (max-width: 900px) {
  .about-card__body, .about-card__body--single { grid-template-columns: 1fr; padding: 32px 24px; gap: 24px; }
  .about-card__col--cta { align-items: stretch; gap: 10px; }
  .about-features { grid-template-columns: repeat(2, 1fr); }
  .about-how { padding: 32px 24px; }
  .about-how__steps { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .about-features { grid-template-columns: 1fr; }
  .about-hero { padding: 72px 20px 56px; }
  .about-main { margin-top: -32px; padding: 0 16px; }
}
