/* ── ABOUT PAGE STYLES ── */

/* ── HERO ── */
.hero {
  min-height: 88vh; display: flex; align-items: center;
  padding: 140px 48px 80px; position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; top: -150px; right: -150px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,92,30,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-width); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.03em;
  text-transform: uppercase; color: var(--orange);
  border: 1px solid rgba(240,92,30,0.25); background: var(--orange-soft);
  padding: 7px 14px; border-radius: var(--radius-pill);
  margin-bottom: 32px; width: fit-content;
}
.hero-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--orange);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(0.6); } }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px); font-weight: 600;
  letter-spacing: -0.03em; line-height: 1.08; margin-bottom: 28px;
}
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-desc { font-size: 17px; font-weight: 300; color: var(--gray); line-height: 1.8; }
.hero-illustration { display: flex; justify-content: center; align-items: flex-end; }
.skyline-wrap { width: 100%; max-width: 500px; }


/* ── SECTIONS ── */
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-inner.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.section.alt { background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-body { margin-bottom: 16px; }


/* ── QUOTE CARD ── */
.quote-card {
  background: var(--black); border-radius: var(--radius-xl); padding: 44px;
  position: relative; overflow: hidden;
  min-height: 280px; display: flex; flex-direction: column;
  justify-content: flex-end; gap: 14px;
}
.quote-card-glow {
  position: absolute; top: -60px; right: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,92,30,0.22) 0%, transparent 70%);
}
.quote-text {
  font-family: var(--font-display); font-size: 21px; font-weight: 500;
  letter-spacing: -0.02em; color: white; line-height: 1.45;
  position: relative; z-index: 1;
}
.quote-text em { color: var(--orange); font-style: normal; }
.quote-attr {
  font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.05em;
  text-transform: uppercase; position: relative; z-index: 1;
}


/* ── VALUES GRID ── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 44px; }
.value-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.value-card:hover { border-color: rgba(240,92,30,0.2); box-shadow: var(--shadow-sm); }
.value-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--orange-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.value-title {
  font-family: var(--font-display); font-size: 16px; font-weight: 600;
  letter-spacing: -0.02em; margin-bottom: 10px;
}
.value-body { font-size: 13px; color: var(--gray); line-height: 1.7; }


/* ── STATS GRID ── */
.stats-grid {
  display: flex; flex-direction: column;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; gap: 1px;
}
.stat-row { background: white; padding: 26px 28px; }
.stat-num {
  font-family: var(--font-display); font-size: 34px; font-weight: 600;
  letter-spacing: -0.03em; color: var(--black); line-height: 1; margin-bottom: 5px;
}
.stat-num span { color: var(--orange); font-size: 0.6em; }
.stat-label { font-size: 13px; color: var(--gray); }


/* ── CONTACT FORM ── */
.contact-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.contact-card-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--gray);
  margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.contact-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.contact-field label { font-size: 12px; color: var(--gray); font-weight: 500; }
.contact-field input,
.contact-field select,
.contact-field textarea {
  font-family: var(--font-body); font-size: 14px; color: var(--black);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 12px 16px;
  outline: none; transition: border-color 0.2s; width: 100%;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus { border-color: rgba(240,92,30,0.4); }
.contact-field textarea { resize: vertical; min-height: 100px; }
.contact-submit {
  width: 100%; background: var(--black); color: var(--white); border: none;
  padding: 14px 24px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500; font-family: var(--font-body);
  cursor: pointer; transition: background 0.2s, transform 0.2s; margin-top: 6px;
}
.contact-submit:hover { background: var(--orange); transform: translateY(-1px); }
.contact-success {
  display: none; color: var(--orange); font-size: 14px;
  font-weight: 500; text-align: center; padding-top: 12px;
}
.contact-success.visible { display: block; }


/* ── BUTTONS ── */
.btn-primary { margin-top: 28px; }


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { padding: 110px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-illustration { display: none; }
  .section-inner.two-col { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; }
}
