/* =====================================================================
   FIRST BASE — About Us / Company Overview page
   Reuses global tokens (--ink, --gold, --gold-dark, --line, --cream)
   and shared classes (.calc-page-banner, .calc-crumb, .eyebrow,
   .stat-card, .process/.step-card, .btn-dark-custom) from style.css
   and calculator.css. This file only covers sections unique to this page.
   ===================================================================== */

/* ---------- Intro / Who We Are ---------- */
.about-intro{
  padding:90px 0;
  background:var(--white);
}
.about-intro-grid{
  display:grid;
  grid-template-columns:0.95fr 1.05fr;
  gap:64px;
  align-items:center;
}
.about-intro-img{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  min-height:460px;
}
.about-intro-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  min-height:460px;
}
.about-intro-badge{
  position:absolute;
  left:24px;
  bottom:24px;
  background:var(--white);
  border-radius:16px;
  padding:18px 22px;
  box-shadow:0 20px 40px rgba(10,10,10,0.18);
  display:flex;
  align-items:center;
  gap:14px;
}
.about-intro-badge .num{
  font-size:32px;
  font-weight:800;
  color:var(--ink);
  line-height:1;
}
.about-intro-badge .label{
  font-size:12.5px;
  color:#6b6459;
  line-height:1.4;
  max-width:120px;
}
.about-intro-text h2{
  font-size:36px;
  font-weight:600;
  letter-spacing:-0.5px;
  line-height:1.2;
  margin-bottom:18px;
  color:var(--ink);
}
.about-intro-text p{
  font-size:15.5px;
  line-height:1.75;
  color:#5b564c;
  margin-bottom:16px;
}
.about-intro-list{
  list-style:none;
  padding:0;
  margin:26px 0 30px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px 20px;
}
.about-intro-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14.5px;
  color:var(--ink);
  font-weight:500;
  line-height:1.4;
}
.about-intro-list li svg{
  width:18px;
  height:18px;
  flex-shrink:0;
  margin-top:1px;
  color:var(--gold-dark);
}

@media (max-width:991px){
  .about-intro-grid{ grid-template-columns:1fr; gap:40px; }
  .about-intro-img, .about-intro-img img{ min-height:320px; }
  .about-intro-text h2{ font-size:28px; }
  .about-intro-list{ grid-template-columns:1fr; }
}

/* ---------- Mission / Vision / Values ---------- */
.about-mv{
  background:var(--cream);
  padding:90px 0;
}
.about-mv-head{
  text-align:center;
  max-width:640px;
  margin:0 auto 48px;
}
.about-mv-head h2{
  font-size:34px;
  font-weight:600;
  letter-spacing:-0.5px;
  color:var(--ink);
  margin-bottom:12px;
}
.about-mv-head p{
  font-size:15px;
  color:#6b6459;
  line-height:1.6;
}
.about-mv-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
  margin-bottom:24px;
}
.about-mv-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:20px;
  padding:38px 34px;
}
.about-mv-card .mv-icon{
  width:56px;
  height:56px;
  border-radius:14px;
  background:linear-gradient(160deg, #0a0a0a 0%, #1a1610 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold);
  margin-bottom:22px;
}
.about-mv-card .mv-icon svg{ width:26px; height:26px; }
.about-mv-card h3{
  font-size:20px;
  font-weight:700;
  color:var(--ink);
  margin-bottom:10px;
}
.about-mv-card p{
  font-size:14.5px;
  line-height:1.7;
  color:#6b6459;
  margin:0;
}

.about-values-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}
.about-value-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:18px;
  padding:28px 22px;
  text-align:center;
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}
.about-value-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 34px rgba(10,10,10,0.08);
}
.about-value-card .v-icon{
  width:48px;
  height:48px;
  margin:0 auto 16px;
  border-radius:12px;
  background:rgba(201,162,74,0.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold-dark);
}
.about-value-card .v-icon svg{ width:22px; height:22px; }
.about-value-card h4{
  font-size:15.5px;
  font-weight:700;
  color:var(--ink);
  margin-bottom:8px;
}
.about-value-card p{
  font-size:13px;
  line-height:1.6;
  color:#6b6459;
  margin:0;
}

@media (max-width:991px){
  .about-mv-grid{ grid-template-columns:1fr; }
  .about-values-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:576px){
  .about-values-grid{ grid-template-columns:1fr; }
  .about-mv-head h2{ font-size:26px; }
}

/* ---------- CTA band ---------- */
.about-cta{
  background:linear-gradient(120deg, #0a0a0a 0%, #1a1610 100%);
  padding:64px 0;
}
.about-cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.about-cta-inner h2{
  color:var(--white);
  font-size:28px;
  font-weight:600;
  letter-spacing:-0.4px;
  margin:0;
  max-width:520px;
}
.about-cta-inner p{
  color:rgba(255,255,255,0.65);
  font-size:14.5px;
  margin:8px 0 0;
  max-width:480px;
}
.about-cta-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.about-cta-actions .btn-outline-light{
  border:1px solid rgba(255,255,255,0.3);
  color:var(--white);
  padding:14px 26px;
  border-radius:8px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  transition:border-color 0.2s ease, background 0.2s ease;
}
.about-cta-actions .btn-outline-light:hover{
  background:rgba(255,255,255,0.08);
  border-color:rgba(255,255,255,0.5);
}

@media (max-width:767px){
  .about-cta-inner{ flex-direction:column; align-items:flex-start; }
}
