.about-hero{
  min-height:calc(100vh - 88px);
  padding:72px 0 64px;
  color:#fff;
}

.home-page.about-page{
  background-image:none;
  background-color:var(--page-bg);
  background-attachment:initial;
}

.about-hero-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:40px;
  align-items:center;
}

.about-hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.about-hero-media{
  background:rgba(255,255,255,0.08);
  padding:18px;
  border-radius:20px;
  box-shadow:0 18px 40px rgba(0,0,0,0.2);
  border:1px solid rgba(46,125,50,0.2);
}

.about-hero-media img{
  width:100%;
  height:auto;
  display:block;
}

.about-section{
  padding:64px 0;
}

.about-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:32px;
  align-items:center;
}

.about-card{
  background:rgba(255,255,255,0.88);
  border:1px solid rgba(46,125,50,0.18);
  border-radius:18px;
  padding:28px;
  box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

.about-card img{
  width:100%;
  height:auto;
  display:block;
}

.about-card-large p{
  color:var(--muted);
  line-height:1.7;
}

.about-card-media{
  padding:18px;
  background:linear-gradient(160deg, rgba(46,125,50,0.1), rgba(242,169,0,0.06));
}

.about-label{
  text-transform:uppercase;
  letter-spacing:0.16em;
  font-size:0.75rem;
  color:var(--accent-green);
  margin-bottom:10px;
  font-weight:700;
}

.about-title{
  font-size:2rem;
  margin:0 0 16px;
}

.about-section-header{
  margin-bottom:28px;
  max-width:720px;
}

.about-steps{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.about-step{
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:16px;
  padding:24px;
  box-shadow:0 16px 32px rgba(0,0,0,0.06);
  animation:aboutRise 0.8s ease both;
}

.about-step:nth-child(1){ animation-delay:0.05s; }
.about-step:nth-child(2){ animation-delay:0.12s; }
.about-step:nth-child(3){ animation-delay:0.18s; }

.about-step-number{
  font-weight:700;
  font-size:0.9rem;
  color:var(--accent);
  display:inline-flex;
  border-radius:999px;
  padding:4px 10px;
  border:1px solid rgba(242,169,0,0.35);
  margin-bottom:12px;
}

.about-step p{
  color:var(--muted);
  line-height:1.65;
  margin:0;
}

.about-inspection{
  background:
    linear-gradient(120deg, rgba(46,125,50,0.12), rgba(242,169,0,0.08)),
    linear-gradient(0deg, rgba(0,0,0,0.02), rgba(0,0,0,0.02));
}

.about-values{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.about-value{
  padding:24px;
  background:#fff;
  border-radius:16px;
  border:1px solid rgba(46,125,50,0.16);
  box-shadow:0 16px 30px rgba(0,0,0,0.06);
}

.about-value p{
  color:var(--muted);
  line-height:1.65;
  margin:0;
}

.about-cta{
  padding:56px 0;
  background:
    linear-gradient(135deg, rgba(12,13,15,0.9), rgba(12,13,15,0.72)),
    linear-gradient(135deg, rgba(46,125,50,0.18), rgba(242,169,0,0.16)),
    url('../assets/images/wall_image.png');
  background-size:cover;
  background-position:center;
  color:#fff;
  border-top:1px solid rgba(0,0,0,0.08);
}

.about-cta-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}

.about-cta h2{
  color:#fff;
  margin:0 0 8px;
}

.about-cta p{
  color:#e9ecef;
  margin:0;
}

.about-cta-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

@keyframes aboutRise{
  from{opacity:0; transform:translateY(16px);}
  to{opacity:1; transform:translateY(0);}
}

@media (max-width: 992px){
  .about-hero-grid,
  .about-grid{
    grid-template-columns:1fr;
  }

  .about-steps,
  .about-values{
    grid-template-columns:1fr;
  }

  .about-hero{
    min-height:auto;
  }
}

@media (max-width: 600px){
  .about-hero{
    padding:56px 0 48px;
  }

  .about-title{
    font-size:1.7rem;
  }
}

@media (prefers-reduced-motion: reduce){
  .about-step{
    animation:none;
  }
}
