/* ════════════════════════════════════════════════════════════════
   NOVA TRADING — ABOUT PAGE STYLESHEET
   Loaded only on /about/, after base.css and article.css.
   Implements the dark-navy treatment from the homepage's #about
   section as a full standalone page with expanded content.
   ════════════════════════════════════════════════════════════════ */

/* ── HERO (dark, full-bleed, matching homepage feel) ── */
.about-hero {
  position: relative;
  background: var(--navy);
  padding: 136px 0 80px;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/hero.webp');
  background-size: cover;
  background-position: center 38%;
  opacity: 0.07;
  pointer-events: none;
}
.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(249,115,22,.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(15,23,42,.6) 0%, transparent 60%);
  pointer-events: none;
}
.about-hero-inner {
  position: relative;
  z-index: 1;
}
.about-hero-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.about-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem) !important;
  font-weight: 800 !important;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -.02em !important;
}
.about-hero h1 em {
  font-style: normal;
  color: rgba(255,255,255,.45);
  font-weight: 300;
}
.about-hero-desc {
  font-size: .97rem !important;
  color: rgba(255,255,255,.62);
  max-width: 560px;
  line-height: 1.82 !important;
  margin-bottom: 36px;
}
.about-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ah-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--navy);
  padding: 13px 26px;
  border-radius: 8px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: background .22s, transform .22s;
}
.ah-btn-primary:hover { background: #f1f5f9; transform: translateY(-1px); }
.ah-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: background .22s, transform .22s;
}
.ah-btn-wa:hover { background: #1ebe5c; transform: translateY(-1px); }

/* ── Hero bottom stats bar ── */
.hero-stat-bar {
  display: flex;
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 36px;
}
.hero-stat-item {
  flex: 1;
  padding-right: 40px;
  position: relative;
}
.hero-stat-item + .hero-stat-item {
  padding-left: 40px;
  border-left: 1px solid rgba(255,255,255,.1);
}
.hero-stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  font-family: 'DM Sans', sans-serif;
}
.hero-stat-num .g { color: var(--gold); }
.hero-stat-lbl {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* ── STORY SECTION (dark navy, matching homepage #about exactly) ── */
.story-dark {
  background: var(--navy);
  padding: 72px 0 80px;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* section label (gold with dash, identical to homepage) */
.story-dark .sec-lbl {
  font-size: .62rem !important;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark) !important;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.story-dark .sec-lbl::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.story-dark .sec-title {
  color: #fff !important;
  font-size: clamp(1.7rem, 3vw, 2.6rem) !important;
  font-weight: 800 !important;
  letter-spacing: -.02em !important;
  line-height: 1.12;
  margin-bottom: 0;
}
.story-dark .gline {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 22px 0;
}
.story-dark .about-body {
  font-size: .9rem !important;
  color: rgba(255,255,255,.6) !important;
  line-height: 1.85 !important;
  max-width: 680px;
}

/* ── Heritage cards — matching homepage pixel-for-pixel ── */
.about-heritage-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 56px;
  margin-bottom: 12px;
}
.about-heritage-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 36px 28px;
  transition: background .26s ease, border-color .26s ease;
  cursor: default;
}
.about-heritage-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(249,115,22,.4);
}
.about-hcard-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(249,115,22,.5);
  line-height: 1;
  margin-bottom: 18px;
}
.about-hcard-title {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 12px;
  line-height: 1.3;
}
.about-hcard-body {
  font-size: .82rem !important;
  color: rgba(248,250,252,.5) !important;
  line-height: 1.78 !important;
}

/* ── Feature tiles (2×2 grid, same as homepage) ── */
.about-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-feat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 28px;
  transition: background .26s ease, border-color .26s ease;
  cursor: default;
}
.about-feat:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(249,115,22,.4);
}
.about-feat-icon {
  width: 42px;
  height: 42px;
  background: rgba(249,115,22,.18);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--gold-light);
  flex-shrink: 0;
}
.about-feat-title {
  font-size: .95rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 6px;
}
.about-feat-desc {
  font-size: .8rem !important;
  color: rgba(248,250,252,.5) !important;
  line-height: 1.7 !important;
}

/* ── STATS STRIP (light, between dark sections) ── */
.stats-strip {
  background: #fff;
  padding: 60px 0;
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-block {
  text-align: center;
  padding: 20px 28px;
  position: relative;
}
.stat-block + .stat-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(15,23,42,.08);
}
.stat-big {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.stat-big .g { color: var(--gold); }
.stat-tag {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

/* ── WHO WE SERVE (light alt background) ── */
.serve-section {
  padding: 80px 0;
  background: #F8FAFC;
}
.serve-section .sec-lbl {
  color: var(--gold-dark) !important;
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 400;
}
.serve-section .sec-lbl::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.serve-section .sec-title {
  color: var(--navy) !important;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem) !important;
  font-weight: 800 !important;
  letter-spacing: -.02em !important;
  margin-bottom: 10px;
}
.serve-section .sec-desc {
  font-size: .9rem !important;
  color: var(--muted) !important;
  max-width: 580px;
  line-height: 1.75 !important;
}

/* ── Ops cards (improved with left accent bar) ── */
.about-ops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.about-ops-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: 0 4px 18px rgba(15,23,42,.05);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.about-ops-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  border-radius: 14px 0 0 14px;
}
.about-ops-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(15,23,42,.1);
  border-color: rgba(232,103,14,.25);
}
.about-ops-k {
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
  font-weight: 600;
}
.about-ops-card h3 {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  margin-bottom: 10px;
  line-height: 1.3;
}
.about-ops-card p {
  font-size: .84rem !important;
  line-height: 1.72 !important;
  color: var(--navy-soft) !important;
}
.about-ops-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding: 0;
}
.about-ops-card li {
  font-size: .78rem !important;
  line-height: 1.58 !important;
  color: var(--muted) !important;
  padding-left: 16px;
  position: relative;
}
.about-ops-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── LOCATION STRIP (dark navy, honest + practical) ── */
.location-strip {
  background: var(--navy);
  padding: 72px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}
.location-strip::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.07) 0%, transparent 70%);
  pointer-events: none;
}
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.location-grid .sec-lbl {
  color: var(--gold-dark) !important;
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.location-grid .sec-lbl::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.location-grid h2 {
  color: #fff !important;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem) !important;
  font-weight: 800 !important;
  letter-spacing: -.02em !important;
  margin-bottom: 18px;
}
.location-grid p {
  font-size: .9rem !important;
  color: rgba(255,255,255,.58) !important;
  line-height: 1.8 !important;
  margin-bottom: 0;
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.location-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  transition: background .22s ease;
}
.location-item:hover { background: rgba(255,255,255,.08); }
.location-icon {
  width: 36px;
  height: 36px;
  background: rgba(249,115,22,.16);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}
.location-item-label {
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 4px;
}
.location-item-val {
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  line-height: 1.55;
  font-weight: 400;
}
.location-item-val a {
  color: var(--gold-light);
  text-decoration: none;
}
.location-item-val a:hover { text-decoration: underline; }

/* ── CTA STRIP (dark) ── */
.about-cta {
  padding: 72px 0;
  background: #0a1120;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.06);
}
.about-cta .sec-lbl {
  justify-content: center;
  color: rgba(249,115,22,.8) !important;
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.about-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
  font-weight: 800 !important;
  color: #fff !important;
  letter-spacing: -.02em !important;
  margin-bottom: 12px;
}
.about-cta p {
  color: rgba(255,255,255,.5) !important;
  font-size: .9rem !important;
  max-width: 480px;
  margin: 0 auto 36px !important;
  line-height: 1.78 !important;
}
.cta-action-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.cta-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--navy);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background .22s, transform .22s;
}
.cta-btn-white:hover { background: #f1f5f9; transform: translateY(-1px); }
.cta-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background .22s, transform .22s;
}
.cta-btn-wa:hover { background: #1ebe5c; transform: translateY(-1px); }
.cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.8);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.2);
  transition: background .22s, color .22s, border-color .22s;
}
.cta-btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.4);
  color: #fff;
}

/* ── Scroll-reveal (reuse article.css .sp-reveal classes) ── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .about-heritage-row { grid-template-columns: 1fr; }
  .about-feat-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .about-ops-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-stat-bar { flex-wrap: wrap; gap: 20px; }
  .hero-stat-item { padding: 0 !important; border: none !important; flex: 0 0 calc(50% - 10px); }
  .hero-stat-item + .hero-stat-item { border-left: none !important; padding-left: 0 !important; }
}
@media (max-width: 560px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .about-hero h1 { font-size: 2rem !important; }
  .cta-action-row { flex-direction: column; align-items: center; }
  .hero-stat-item { flex: 0 0 100%; }
}
