/* ============================================================
   ABOUT PAGE - ADDON CSS
   Appended to style.css. Same palette, unique layouts.
============================================================ */

/* ABOUT HERO */
.about-hero {
  min-height: 100vh; padding-top: 72px;
  background: linear-gradient(148deg, #0e2219 0%, #1B4332 55%, #162e24 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.ah-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(196,96,28,.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(196,96,28,.07) 0%, transparent 55%);
}
.ah-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
}
.ah-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  padding-top: 80px; padding-bottom: 80px;
  position: relative; z-index: 2;
}
.ah-left .sec-chip { margin-bottom: 20px; }
.ah-h1 {
  font-family: var(--fd); font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 800; line-height: 1.0; color: rgba(255,255,255,.95);
  letter-spacing: -1.5px; margin-bottom: 28px;
}
.ah-h1 em { font-style: italic; color: var(--a2); font-weight: 400; }
.ah-sub { font-size: 15.5px; color: rgba(255,255,255,.55); line-height: 1.8; max-width: 480px; }

.ah-stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; overflow: hidden; margin-bottom: 24px;
}
.ah-stat {
  padding: 24px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  transition: background .3s;
}
.ah-stat:last-child { border-right: none; }
.ah-stat:hover { background: rgba(255,255,255,.08); }
.ahs-n {
  font-family: var(--fd); font-size: 36px; font-weight: 800;
  color: rgba(255,255,255,.95); line-height: 1;
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.ah-stat .ahs-l {
  font-family: var(--fm); font-size: 8px; letter-spacing: 1.5px;
  color: rgba(255,255,255,.35); text-transform: uppercase; margin-top: 6px;
  text-align: center;
}

.ah-quote {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-left: 3px solid var(--a); border-radius: 6px;
  padding: 24px 28px; position: relative;
}
.ahq-mark {
  font-family: var(--fd); font-size: 56px; font-weight: 800;
  color: rgba(255,255,255,.12); line-height: .65;
  position: absolute; top: 12px; left: 20px;
}
.ah-quote p {
  font-family: var(--fd); font-size: 16px; font-style: italic;
  color: rgba(255,255,255,.75); line-height: 1.65;
  margin-bottom: 14px; padding-left: 12px;
}
.ah-quote span {
  font-family: var(--fm); font-size: 9px; letter-spacing: 2px;
  color: var(--a2); text-transform: uppercase;
  padding-left: 12px;
}
.ah-scroll-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, transparent, var(--a), transparent);
  opacity: .4;
}

/* STORY SECTION */
.story-sec {
  background: var(--card); padding: 110px 0;
  border-bottom: 1px solid var(--bdr);
}
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.story-left .sec-h2 { margin: 16px 0 28px; }
.story-body p { font-size: 15px; color: var(--ink3); line-height: 1.82; margin-bottom: 18px; }

/* TIMELINE */
.story-milestones { display: flex; flex-direction: column; gap: 0; position: relative; }
.story-milestones::before {
  content: ''; position: absolute;
  left: 52px; top: 24px; bottom: 24px;
  width: 1.5px; background: var(--bdr);
}
.sm-item {
  display: grid; grid-template-columns: 52px 28px 1fr;
  gap: 0 16px; align-items: flex-start;
  padding: 24px 0;
  transition: background .25s;
}
.sm-item:hover { background: var(--gbg); border-radius: 8px; padding-left: 8px; padding-right: 8px; margin: 0 -8px; }
.sm-year {
  font-family: var(--fm); font-size: 11px; font-weight: 500;
  color: var(--a); letter-spacing: 1px; padding-top: 4px;
  text-align: right;
}
.sm-line {
  display: flex; flex-direction: column; align-items: center;
  padding-top: 6px;
  position: relative; z-index: 1;
}
.sm-line::before {
  content: ''; width: 10px; height: 10px; border-radius: 50%;
  background: var(--g); border: 2px solid var(--card);
  box-shadow: 0 0 0 2px var(--g);
  flex-shrink: 0; display: block;
}
.sm-text h4 {
  font-family: var(--fd); font-size: 14.5px; font-weight: 700;
  color: var(--g); margin-bottom: 5px;
}
.sm-text p { font-size: 12.5px; color: var(--mid); line-height: 1.6; }

/* DIFF SECTION */
.diff-sec { background: var(--g); padding: 110px 0; }
.diff-head { margin-bottom: 60px; }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.diff-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 36px 30px;
  transition: background .35s, border-color .35s, transform .35s var(--ease);
  cursor: default;
}
.diff-card:hover {
  background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.22);
  transform: translateY(-4px);
}
.dc-ico { font-size: 30px; display: block; margin-bottom: 18px; }
.diff-card h3 {
  font-family: var(--fd); font-size: 18px; font-weight: 700;
  color: rgba(255,255,255,.92); margin-bottom: 12px; line-height: 1.25;
  transition: color .3s;
}
.diff-card:hover h3 { color: var(--a2); }
.diff-card p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.78; }

/* TEAM SECTION */
.team-sec { background: var(--bg); padding: 110px 0; }
.team-head { margin-bottom: 20px; }
.team-sub { font-size: 15px; color: var(--ink3); max-width: 540px; line-height: 1.75; margin-top: 16px; margin-bottom: 52px; }
.team-pillars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid var(--bdr); border-radius: 10px; overflow: hidden; }
.tp {
  padding: 36px 28px; border-right: 1px solid var(--bdr);
  transition: background .35s;
  cursor: default; position: relative;
}
.tp:last-child { border-right: none; }
.tp:hover { background: var(--card); }
.tp::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--g), var(--a));
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.tp:hover::before { transform: scaleX(1); }
.tp-num {
  font-family: var(--fm); font-size: 9px; letter-spacing: 2px;
  color: var(--a); margin-bottom: 14px;
}
.tp-ico { font-size: 26px; margin-bottom: 14px; }
.tp-name {
  font-family: var(--fd); font-size: 14.5px; font-weight: 700;
  color: var(--g); margin-bottom: 14px; line-height: 1.25;
  transition: color .3s;
}
.tp:hover .tp-name { color: var(--a); }
.tp p { font-size: 12.5px; color: var(--mid); line-height: 1.7; margin-bottom: 18px; }
.tp ul { display: flex; flex-direction: column; gap: 7px; }
.tp li { font-size: 12px; color: var(--ink3); display: flex; align-items: center; gap: 8px; }
.tp li::before { content: ''; width: 10px; height: 1.5px; background: var(--a); flex-shrink: 0; }

/* VALUES SECTION */
.values-sec { background: var(--bg2); padding: 110px 0; border-top: 1px solid var(--bdr); }
.vals-head { margin-bottom: 52px; }
.vals-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.val-item {
  background: var(--card); border: 1px solid var(--bdr); border-radius: 10px;
  padding: 40px 36px; display: flex; flex-direction: column; gap: 16px;
  transition: box-shadow .35s, transform .35s var(--ease);
  cursor: default;
}
.val-item:hover { box-shadow: 0 16px 40px rgba(27,67,50,.08); transform: translateY(-3px); }
.vi-n {
  font-family: var(--fm); font-size: 9px; letter-spacing: 2px;
  color: var(--a); text-transform: uppercase;
}
.val-item h3 {
  font-family: var(--fd); font-size: 20px; font-weight: 700;
  color: var(--g); line-height: 1.2; transition: color .3s;
}
.val-item:hover h3 { color: var(--a); }
.val-item p { font-size: 14px; color: var(--ink3); line-height: 1.8; }

/* TRUST SECTION */
.trust-sec { background: var(--card); padding: 110px 0; border-top: 1px solid var(--bdr); }
.trust-head { margin-bottom: 52px; }
.trust-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 52px; }
.tt {
  background: var(--bg); border: 1px solid var(--bdr); border-radius: 10px;
  padding: 36px 30px; transition: box-shadow .35s, transform .35s var(--ease);
  cursor: default; position: relative;
}
.tt:hover { box-shadow: 0 14px 36px rgba(27,67,50,.08); transform: translateY(-3px); }
.tt::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--g), var(--a));
  border-radius: 10px 10px 0 0; transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.tt:hover::before { transform: scaleX(1); }
.tt-q {
  font-family: var(--fd); font-size: 56px; font-weight: 800;
  color: var(--gbg2); line-height: .65; margin-bottom: 16px;
}
.tt p { font-family: var(--fd); font-size: 15px; font-style: italic; color: var(--ink); line-height: 1.65; margin-bottom: 24px; }
.tt-auth { display: flex; align-items: center; gap: 12px; }
.tt-av {
  width: 40px; height: 40px; border-radius: 6px;
  background: var(--gbg); border: 1.5px solid var(--gbg2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-size: 16px; font-weight: 800; color: var(--g);
}
.tt-n { font-size: 13px; font-weight: 700; color: var(--g); }
.tt-c { font-size: 11px; color: var(--a); margin-top: 2px; }
.trust-logos { text-align: center; }
.tl-label {
  font-family: var(--fm); font-size: 9px; letter-spacing: 3px;
  color: var(--mid); text-transform: uppercase; margin-bottom: 24px;
}
.tl-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0;
  border: 1px solid var(--bdr); border-radius: 8px; overflow: hidden;
}
.tl-row span {
  padding: 16px 28px; border-right: 1px solid var(--bdr);
  font-family: var(--fd); font-size: 15px; font-weight: 700;
  color: var(--mid); cursor: default; transition: all .3s;
}
.tl-row span:last-child { border-right: none; }
.tl-row span:hover { background: var(--cardh); color: var(--g); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .team-pillars { grid-template-columns: repeat(3, 1fr); }
  .tp:nth-child(3) { border-right: none; }
  .tp:nth-child(4) { border-right: 1px solid var(--bdr); }
  .trust-testi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .ah-content { grid-template-columns: 1fr; gap: 44px; }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .ah-stat-row { grid-template-columns: repeat(2, 1fr); }
  .vals-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .about-hero { min-height: auto; padding-top: 72px; }
  .ah-h1 { font-size: 38px; }
  .diff-grid { grid-template-columns: 1fr; }
  .team-pillars { grid-template-columns: 1fr; }
  .tp { border-right: none; border-bottom: 1px solid var(--bdr); }
  .trust-testi-grid { grid-template-columns: 1fr; }
  .story-milestones::before { left: 44px; }
  .sm-item { grid-template-columns: 44px 24px 1fr; }

footer .ft-grid { display: grid !important; grid-template-columns: 1.5fr 1fr 1fr 1fr !important; gap: 52px !important; }
footer .ft-bot  { display: flex !important; justify-content: space-between; align-items: center; flex-wrap: wrap; }
}
