/* =========================
   About page only
   ========================= */
body.page-about { background: #fff; }

/* Page hero */
.page-hero {
  background: linear-gradient(135deg, var(--nv), var(--nv2));
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(232,93,4,.18), transparent 60%);
  pointer-events: none;
}
.ph-tag {
  display: inline-block;
  background: rgba(232,93,4,.18);
  color: var(--or3);
  font-size: .7rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(232,93,4,.25);
  position: relative; z-index: 1;
}
.ph-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.ph-title em { color: var(--or3); font-style: normal; }
.ph-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  position: relative; z-index: 1;
}

/* About section */
.about-section { padding: 96px 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-vis { position: relative; padding-bottom: 28px; padding-right: 28px; }
.about-main { height: 440px; border-radius: 20px; overflow: hidden; background: linear-gradient(135deg, var(--nv), var(--nv2)); }
.about-main img { width: 100%; height: 100%; object-fit: cover; }
.about-acc {
  position: absolute; bottom: 0; right: 0;
  width: 170px; height: 170px;
  border-radius: 14px; overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 10px 36px rgba(0,0,0,.14);
  background: linear-gradient(135deg, var(--or), var(--gd));
}
.about-acc img { width: 100%; height: 100%; object-fit: cover; }
.about-yr {
  position: absolute; top: 28px; left: -18px;
  background: var(--or); color: #fff;
  padding: 14px 18px; border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(232,93,4,.4);
}
.about-yn { font-size: 2.2rem; font-weight: 900; line-height: 1; }
.about-yt { font-size: .65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; opacity: .9; }

.info-list { display: flex; flex-direction: column; gap: 14px; margin: 26px 0; }
.info-row { display: flex; align-items: flex-start; gap: 13px; }
.info-ico {
  width: 40px; height: 40px;
  background: rgba(232,93,4,.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--or); font-size: .95rem; flex-shrink: 0;
}
.info-tx strong { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .8px; color: var(--tl); margin-bottom: 2px; }
.info-tx span { font-size: .9rem; font-weight: 500; color: var(--tx); line-height: 1.5; }

.hl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 26px; }
.hl { padding: 13px 15px; background: var(--gy); border-radius: 10px; border-left: 3px solid var(--or); display: flex; align-items: center; gap: 9px; }
.hl i { color: var(--or); font-size: .85rem; }
.hl span { font-size: .82rem; font-weight: 600; color: var(--nv); }

/* Stats section */
.stats-section { padding: 80px 0; background: var(--nv); position: relative; overflow: hidden; }
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 50%, rgba(232,93,4,.2), transparent 50%), radial-gradient(circle at 85% 50%, rgba(255,183,3,.1), transparent 50%);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 2; }
.stat { text-align: center; padding: 28px 16px; border-radius: 16px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); transition: all .3s; }
.stat:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.stat-ic { font-size: 1.9rem; color: var(--or); margin-bottom: 14px; }
.stat-n { font-size: 2.8rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 4px; }
.stat-n span { color: var(--gd); }
.stat-l { font-size: .75rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 1.2px; }

/* Why us section */
.why-section { padding: 96px 0; background: var(--gy); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { padding: 30px 22px; border-radius: 18px; background: #fff; transition: all .35s; text-align: center; }
.why-card:hover { background: var(--nv); transform: translateY(-6px); box-shadow: 0 16px 44px rgba(27,42,74,.2); }
.why-card:hover .why-ico { background: rgba(232,93,4,.2); color: var(--or3); }
.why-card:hover .why-ttl { color: #fff; }
.why-card:hover .why-dsc { color: rgba(255,255,255,.65); }
.why-ico { width: 60px; height: 60px; border-radius: 16px; background: rgba(232,93,4,.1); color: var(--or); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 18px; transition: all .35s; }
.why-ttl { font-size: 1rem; font-weight: 700; color: var(--nv); margin-bottom: 10px; transition: color .35s; }
.why-dsc { font-size: .82rem; color: var(--tl); line-height: 1.75; transition: color .35s; }

@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-vis { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .hl-grid { grid-template-columns: 1fr; }
}
