/* ============================================================
   DM — About page (rebuild: on-brand, feedback-focused)
   ============================================================ */

/* ---- Hero (brand gradient, dark text — same tone as the DM logo) ---- */
.hero-about {
  position: relative;
  width: 1440px; height: 380px;
  background: var(--brand-gradient);
  overflow: hidden;
}
.hero-about .hero-deco {
  position: absolute; right: -160px; top: -200px;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
              rgba(255,255,255,0.38) 0%,
              rgba(255,255,255,0.12) 45%,
              rgba(255,255,255,0) 72%);
  filter: blur(8px); pointer-events: none;
}
.hero-about .h-eyebrow {
  position: absolute; left: 120px; top: 96px;
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: #2A1206; color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
}
.hero-about .h-title {
  position: absolute; left: 120px; top: 150px; width: 920px;
  font-size: 56px; font-weight: 800; letter-spacing: -1px; line-height: 1.08;
  color: #2A1206;
}
.hero-about .h-sub {
  position: absolute; left: 120px; top: 288px; width: 800px;
  font-size: 18px; line-height: 1.5; color: rgba(42,18,6,0.8);
}

/* ---- Feedback (the real purpose) ---- */
.feedback { position: relative; width: 1440px; height: 560px; background: #fff; }
.feedback .sec-title {
  position: absolute; left: 120px; top: 80px;
  font-size: 36px; font-weight: 800; color: var(--text-dark); letter-spacing: -0.5px;
}
.feedback .sec-desc {
  position: absolute; left: 120px; top: 144px; width: 860px;
  font-size: 18px; color: #6B7280; line-height: 1.5;
}
.feedback .email-card {
  position: absolute; left: 120px; top: 226px;
  display: flex; align-items: center; gap: 14px;
  height: 66px; padding: 0 26px; border-radius: 16px;
  background: #FFF9F4; border: 2px solid var(--brand-orange);
  font-size: 22px; font-weight: 700; color: var(--credit-text);
  transition: transform .15s ease, box-shadow .15s ease;
}
.feedback .email-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245,92,46,0.18);
}
.feedback .email-card .em-icon { width: 26px; height: 26px; flex: 0 0 26px; }
.feedback .fb-body {
  position: absolute; left: 120px; top: 332px; width: 880px;
  font-size: 16px; color: #6B7280; line-height: 1.75;
}

/* ---- Promise trio ---- */
.promise { position: relative; width: 1440px; height: 380px; background: #FFF9F4; }
.promise .sec-title {
  position: absolute; left: 120px; top: 70px;
  font-size: 32px; font-weight: 800; color: var(--text-dark); letter-spacing: -0.5px;
}
.promise .p-cards {
  position: absolute; left: 120px; top: 150px;
  width: 1200px; display: flex; gap: 24px;
}
.p-card {
  width: 384px; height: 170px;
  background: #fff; border: 1px solid var(--border-warm); border-radius: 16px;
  position: relative;
}
.p-card .p-icon {
  position: absolute; left: 28px; top: 28px;
  width: 44px; height: 44px; border-radius: 12px;
  background: #FFE3CC; display: flex; align-items: center; justify-content: center;
}
.p-card .p-icon svg { width: 22px; height: 22px; }
.p-card .p-title {
  position: absolute; left: 28px; top: 86px;
  font-size: 17px; font-weight: 700; color: var(--text-dark);
}
.p-card .p-desc {
  position: absolute; left: 28px; top: 118px; width: 328px;
  font-size: 14px; color: #6B7280; line-height: 1.5;
}
