
.about-page{
  --a-navy:#0b3c5d;
  --a-navy-dark:#082a42;
  --a-soft:#e8f0f6;

  --a-bg:#ffffff;
  --a-bg-soft:#f7f8fa;
  --a-border:#e5e7eb;

  --a-text:#111827;
  --a-muted:#6b7280;

  --a-radius:20px;
  --a-shadow:0 10px 25px rgba(0,0,0,.06);
  --a-shadow-2:0 22px 55px rgba(0,0,0,.10);

  --a-ease:cubic-bezier(.2,.8,.2,1);
}

.about-page .container{
  width:min(1120px, calc(100% - 40px));
  margin-inline:auto;
}


.a-hero{
  position:relative;
  padding: 110px 0 90px;
  overflow:hidden;
  color:#ffffff;

  background:
    linear-gradient(110deg, rgba(3,7,18,.78), rgba(3,7,18,.45)),
    url("./about-hero.jpg");
  background-size:cover;
  background-position:center;

  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom{
  from{ background-size:100%; }
  to{ background-size:108%; }
}

.a-hero::before{
  content:"";
  position:absolute;
  width:600px;
  height:600px;
  left:-240px;
  top:-260px;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 60%);
  pointer-events:none;
}
.a-hero::after{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  right:-220px;
  bottom:-260px;
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 60%);
  pointer-events:none;
}

.a-hero-inner{
  position:relative;
  z-index:1;
  max-width: 860px;
}

.a-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #ffffff;
  font-weight: 900;
  font-size: 12.5px;
  margin: 0 0 12px;
}

.a-hero h1{
  margin: 0 0 12px;
  font-size: clamp(34px, 4.8vw, 58px);
  letter-spacing: -0.7px;
  color: #ffffff;
  line-height: 1.05;
}

.a-sub{
  margin:0;
  color: rgba(255,255,255,.90);
  line-height: 1.9;
  max-width: 82ch;
  font-size: 16.2px;
}

.a-actions{
  margin-top: 18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.a-btn{
  text-decoration:none;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  user-select:none;
  transition: transform .2s var(--a-ease), background .2s var(--a-ease), box-shadow .2s var(--a-ease);
}

.a-btn-primary{
  background: var(--a-navy);
  color:#fff;
  box-shadow: 0 14px 30px rgba(11,60,93,.30);
}
.a-btn-primary:hover{
  background: var(--a-navy-dark);
  transform: translateY(-2px);
}

.a-btn-outline{
  background: rgba(255,255,255,.10);
  color: #ffffff;
  border: 1.6px solid rgba(255,255,255,.35);
}
.a-btn-outline:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.16);
}

.a-stats{
  margin-top: 22px;
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
}

.a-stat{
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  border:1px solid rgba(255,255,255,.25);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,.14);
  min-width: 200px;
}

.a-stat-num{
  font-weight: 950;
  font-size: 20px;
  color: #ffffff;
  line-height: 1.1;
}
.a-stat-label{
  margin-top: 4px;
  color: rgba(255,255,255,.85);
  font-size: 13.5px;
  line-height: 1.4;
}


.a-section{
  padding: 64px 0;
  background: var(--a-bg);
  color: var(--a-text);
}

.a-soft{
  background: var(--a-bg-soft);
}

.a-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  align-items: start;
}

.a-card{
  background:#fff;
  border: 1px solid var(--a-border);
  border-radius: var(--a-radius);
  padding: 24px;
  box-shadow: var(--a-shadow);
}

.a-card h2{
  margin:0 0 10px;
  color: var(--a-navy);
  letter-spacing: -0.25px;
  font-size: 24px;
}
.a-card p{
  margin: 10px 0;
  color:#374151;
  line-height: 1.9;
}

.a-highlight{
  margin-top: 14px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
  background: var(--a-soft);
  border: 1px solid rgba(11,60,93,.18);
  border-radius: 16px;
  padding: 14px;
}
.a-highlight i{
  color: var(--a-navy);
  margin-top: 2px;
}

.a-note{
  margin-top: 10px;
  color:#475569;
}

.a-list{
  list-style:none;
  padding:0;
  margin: 12px 0 0;
  display:grid;
  gap: 10px;
}
.a-list li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  line-height: 1.7;
  color:#374151;
}
.a-list i{
  color: var(--a-navy);
  margin-top: 4px;
}

.a-title-row{
  margin-bottom: 18px;
}
.a-title-row h2{
  margin:0 0 6px;
  font-size: 26px;
  color: var(--a-navy);
  letter-spacing: -0.3px;
}
.a-title-row p{
  margin:0;
  color: var(--a-muted);
  line-height: 1.85;
}

.a-values{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}

.a-value{
  background:#fff;
  border: 1px solid var(--a-border);
  border-radius: var(--a-radius);
  padding: 20px;
  box-shadow: var(--a-shadow);
  transition: transform .2s var(--a-ease), box-shadow .2s var(--a-ease);
}
.a-value:hover{
  transform: translateY(-3px);
  box-shadow: var(--a-shadow-2);
}
.a-ico{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: var(--a-soft);
  color: var(--a-navy);
  margin-bottom: 12px;
}
.a-value h3{
  margin: 0 0 8px;
  color: var(--a-navy);
}
.a-value p{
  margin:0;
  color:#4b5563;
  line-height: 1.85;
}

.a-steps{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}

.a-step{
  background:#fff;
  border: 1px solid var(--a-border);
  border-radius: var(--a-radius);
  padding: 20px;
  box-shadow: var(--a-shadow);
  transition: transform .2s var(--a-ease), box-shadow .2s var(--a-ease);
}
.a-step:hover{
  transform: translateY(-3px);
  box-shadow: var(--a-shadow-2);
}

.a-step-top{
  display:flex;
  gap: 10px;
  align-items:center;
  margin-bottom: 8px;
}
.a-step-num{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--a-navy);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight: 950;
}
.a-step h3{
  margin:0;
  color: var(--a-navy);
  font-size: 16px;
}
.a-step p{
  margin:0;
  color:#4b5563;
  line-height: 1.85;
}

.a-split{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}

.a-split-card{
  background:#fff;
  border: 1px solid var(--a-border);
  border-radius: var(--a-radius);
  padding: 22px;
  box-shadow: var(--a-shadow);
}
.a-split-card h3{
  margin:0 0 10px;
  color: var(--a-navy);
}
.a-split-card p{
  margin:0;
  color:#4b5563;
  line-height: 1.85;
}

.a-chip-row{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.a-chip{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11,60,93,.18);
  background: rgba(11,60,93,.06);
  color: var(--a-navy);
  font-weight: 900;
  font-size: 12.5px;
}

.a-faq{
  display:grid;
  gap: 14px;
  margin-top: 14px;
}

.a-faq-item{
  background:#fff;
  border: 1px solid var(--a-border);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--a-shadow);
}
.a-faq-item summary{
  cursor:pointer;
  font-weight: 950;
  color: var(--a-navy);
}
.a-faq-item p{
  margin: 10px 0 0;
  color:#4b5563;
  line-height: 1.9;
}

.a-cta{
  margin-top: 22px;
  padding: 22px;
  border-radius: var(--a-radius);
  background: var(--a-navy);
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 14px;
  flex-wrap:wrap;
  box-shadow: var(--a-shadow-2);
}
.a-cta h3{ margin:0 0 6px; }
.a-cta p{ margin:0; color: rgba(255,255,255,.9); line-height: 1.85; }

.a-cta-actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.a-cta .a-btn-primary{ background:#fff; color: var(--a-navy); }
.a-cta .a-btn-primary:hover{ background: var(--a-soft); }
.a-cta .a-btn-outline{
  background: rgba(255,255,255,.10);
  border: 1.6px solid rgba(255,255,255,.40);
  color:#fff;
}

/* animation */
.reveal{
  opacity:0;
  transform: translateY(16px);
  transition: opacity .7s var(--a-ease), transform .7s var(--a-ease);
  will-change: opacity, transform;
}
.reveal.in-view{
  opacity:1;
  transform: translateY(0);
}
.reveal.d1{ transition-delay: .06s; }
.reveal.d2{ transition-delay: .12s; }
.reveal.d3{ transition-delay: .18s; }
.reveal.d4{ transition-delay: .24s; }

/* Responsive */
@media (max-width: 980px){
  .a-values{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .a-steps{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 820px){
  .a-grid{ grid-template-columns: 1fr; }
  .a-split{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .a-btn{ width: 100%; }
  .a-stat{ width: 100%; }
  .a-hero{ padding: 96px 0 70px; }
}


@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; animation:none !important; }
  .reveal{ opacity:1 !important; transform:none !important; }
}