.about-hero{
  position:relative;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 38%, rgba(255,255,255,.48) 100%),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  min-height:560px;
  display:flex;
  align-items:center;
}
.about-hero::before{
  content:"";
  position:absolute;
  right:-100px;
  top:40px;
  width:520px;
  height:520px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(214,0,28,.08), rgba(214,0,28,0));
  pointer-events:none;
}
.about-hero-inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:40px;
  align-items:center;
  width:100%;
  padding:70px 0;
}
.about-hero-copy h1{
  font-size:60px;
  line-height:1.05;
  font-weight:900;
  margin-bottom:18px;
  color:#111;
}
.about-hero-copy h1 strong{
  color:var(--red);
}
.about-hero-copy p{
  color:#4d4d4d;
  font-size:18px;
  max-width:680px;
  margin-bottom:28px;
}
.about-hero-card{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.06);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(8px);
}
.about-hero-card img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:18px;
  margin-bottom:18px;
}
.about-hero-card h3{
  font-size:28px;
  font-weight:900;
  color:#111;
  margin-bottom:10px;
}
.about-hero-card p{
  color:#555;
  font-size:15px;
}

.about-story{
  background:#fff;
}
.about-story-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.about-story-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:30px;
  box-shadow:0 6px 20px rgba(0,0,0,.03);
}
.about-story-card h3{
  font-size:28px;
  font-weight:900;
  margin-bottom:14px;
  color:#111;
}
.about-story-card p{
  color:#555;
  margin-bottom:14px;
}
.about-story-card:last-child{
  background:#fafafa;
}

.value-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.value-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:26px 22px;
  transition:.25s ease;
  box-shadow:0 6px 20px rgba(0,0,0,.03);
}
.value-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
  border-color:#f0c2c8;
}
.value-icon{
  width:54px;
  height:54px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff4f5;
  color:var(--red);
  font-size:24px;
  margin-bottom:16px;
}
.value-card h3{
  font-size:22px;
  font-weight:900;
  color:#111;
  margin-bottom:10px;
}
.value-card p{
  color:#666;
  font-size:14px;
}

.about-capacity{
  background:#fafafa;
}
.capacity-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
}
.capacity-main,
.capacity-side{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 6px 20px rgba(0,0,0,.03);
}
.capacity-main-media{
  height:360px;
  overflow:hidden;
}
.capacity-main-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.capacity-main-body{
  padding:28px;
}
.capacity-main-body h3{
  font-size:30px;
  font-weight:900;
  margin-bottom:12px;
  color:#111;
}
.capacity-main-body p{
  color:#666;
  margin-bottom:18px;
}
.capacity-list{
  display:grid;
  gap:14px;
}
.capacity-item{
  background:#fafafa;
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px 18px;
}
.capacity-item strong{
  display:block;
  font-size:18px;
  color:#111;
  margin-bottom:6px;
}
.capacity-item span{
  color:#666;
  font-size:14px;
}

.about-process{
  background:#fff;
}
.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.process-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:24px;
  box-shadow:0 6px 20px rgba(0,0,0,.03);
  transition:.25s ease;
}
.process-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}
.process-num{
  width:44px;
  height:44px;
  border-radius:50%;
  background:var(--red);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  margin-bottom:16px;
}
.process-card h3{
  font-size:22px;
  font-weight:900;
  margin-bottom:10px;
  color:#111;
}
.process-card p{
  color:#666;
  font-size:14px;
}

.about-cta{
  background:#fafafa;
  padding-top:0;
}
.about-cta-box{
  background:#111;
  color:#fff;
  border-radius:28px;
  padding:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.about-cta-box h3{
  font-size:34px;
  line-height:1.15;
  font-weight:900;
  margin-bottom:12px;
}
.about-cta-box p{
  color:rgba(255,255,255,.78);
  max-width:760px;
}
.about-cta-box .btn-outline{
  border-color:rgba(255,255,255,.28);
  color:#fff;
  background:transparent;
}
.about-cta-box .btn-outline:hover{
  border-color:#fff;
  color:#fff;
}

@media (max-width:1200px){
  .value-grid,
  .process-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .about-hero-inner,
  .capacity-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width:992px){
  .about-hero-copy h1{
    font-size:46px;
  }
  .about-story-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width:768px){
  .value-grid,
  .process-grid{
    grid-template-columns:1fr;
  }
  .about-hero{
    min-height:auto;
    background-position:center;
  }
  .about-hero-copy h1{
    font-size:38px;
  }
  .about-cta-box{
    padding:28px;
    flex-direction:column;
    align-items:flex-start;
  }
}