/* About Hero Section - DFS Construction */
.about-slim-hero { 
  background: linear-gradient(135deg, var(--dfs-black) 0%, var(--dfs-charcoal) 50%, var(--dfs-blue-dark) 100%);
  color: white; 
  position: relative;
  padding: 4rem 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
  border-bottom: 5px solid var(--dfs-blue);
}

.about-slim-hero::before { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(135deg, rgba(30, 92, 175, 0.2), transparent 60%);
  pointer-events: none; 
}

.about-slim-grid { 
  display: grid; 
  gap: clamp(3rem, 5vw, 4rem); 
  align-items: center; 
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 900px) {
  .about-slim-grid { 
    grid-template-columns: 1.2fr 0.8fr; 
  }
}

.about-slim-title { 
  font-size: clamp(2.5rem, 5vw, 4rem); 
  font-weight: 800; 
  margin-bottom: 1.5rem; 
  color: white;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1;
}

.about-slim-lede { 
  font-size: clamp(1.1rem, 2vw, 1.35rem); 
  color: rgba(255,255,255,0.95); 
  margin-bottom: 2rem; 
  max-width: 65ch;
  line-height: 1.7;
  font-weight: 500;
}

.about-slim-points { 
  list-style: none; 
  padding: 0; 
  margin: 2rem 0; 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.about-slim-points li { 
  font-size: 0.9rem; 
  letter-spacing: 1.5px; 
  text-transform: uppercase; 
  font-weight: 700; 
  background: var(--dfs-blue); 
  color: white; 
  padding: 0.875rem 1.25rem; 
  border-radius: 0; 
  border: 2px solid white;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: none;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.about-slim-points li:hover {
  background: white;
  color: var(--dfs-blue);
  transform: translateY(-3px);
  box-shadow: 0 6px 0 var(--dfs-blue);
}

.about-slim-actions { 
  display: flex; 
  gap: 1rem; 
  flex-wrap: wrap; 
  margin-top: 1.5rem;
}

.about-slim-media { 
  aspect-ratio: 4/3; 
  border-radius: 0; 
  overflow: hidden; 
  box-shadow: 12px 12px 0 var(--dfs-blue);
  position: relative;
  border: 4px solid white;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
}

.about-slim-media:hover {
  transform: translate(-4px, -4px);
  box-shadow: 16px 16px 0 var(--dfs-blue);
}

.about-slim-media img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  transition: all 0.3s ease;
}

/* About Summary Section - Construction Theme */
.about-summary { 
  background: linear-gradient(180deg, var(--background-light) 0%, white 100%);
  padding: 5rem 0;
  position: relative;
  border-top: 4px solid var(--dfs-blue);
}

.about-summary::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--dfs-blue), transparent);
}

.summary-inner { 
  display: flex; 
  flex-direction: column; 
  gap: clamp(3rem, 5vw, 4rem); 
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.summary-block { 
  text-align: center; 
  max-width: 75ch; 
  margin: 0 auto;
}

.summary-title { 
  font-size: clamp(2rem, 4vw, 3rem); 
  font-weight: 800; 
  margin-bottom: 1.5rem; 
  color: var(--dfs-black);
  position: relative;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  padding-bottom: 1rem;
}

.summary-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--dfs-blue);
}

.summary-text { 
  color: var(--text-secondary); 
  max-width: 75ch; 
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 500;
}

.summary-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 2rem; 
}

@media (max-width: 1200px) {
  .summary-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .summary-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.summary-item { 
  background: white; 
  border: 3px solid var(--dfs-black); 
  border-radius: 0; 
  padding: 2rem; 
  text-align: center; 
  box-shadow: 6px 6px 0 var(--dfs-blue);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.summary-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--dfs-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.summary-item:hover::before {
  transform: scaleX(1);
}

.summary-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--dfs-blue);
  border-color: var(--dfs-blue);
}

.summary-item h3 { 
  font-size: 1.25rem; 
  font-weight: 800; 
  text-transform: uppercase; 
  letter-spacing: -0.3px; 
  color: var(--dfs-black); 
  margin-bottom: 1rem;
  text-align: center;
  width: 100%;
  display: block;
  transition: color 0.3s ease;
}

.summary-item:hover h3 {
  color: var(--dfs-blue);
}

.summary-item p { 
  color: var(--text-secondary); 
  font-size: 1rem; 
  line-height: 1.6; 
  margin: 0;
  text-align: center;
  width: 100%;
  font-weight: 500;
}

/* About Process Section - Industrial Design */
.about-process-lite { 
  background: linear-gradient(135deg, var(--dfs-black) 0%, var(--dfs-charcoal) 50%, var(--dfs-blue-dark) 100%);
  color: white; 
  padding: 5rem 0;
  position: relative;
  border-top: 4px solid var(--dfs-blue);
}

.about-process-lite::before { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  background: radial-gradient(circle at 75% 30%, rgba(30, 92, 175, 0.2), transparent 65%);
  pointer-events: none; 
}

.process-lite-inner { 
  max-width: 1200px; 
  margin: 0 auto; 
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.process-lite-head { 
  text-align: center; 
  max-width: 75ch; 
  margin: 0 auto 3rem;
}

.process-lite-title { 
  font-size: clamp(2rem, 4vw, 3rem); 
  font-weight: 800; 
  margin-bottom: 1rem; 
  color: white;
  position: relative;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  padding-bottom: 1rem;
}

.process-lite-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--dfs-blue);
}

.process-lite-lede { 
  color: rgba(255,255,255,0.95); 
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 500;
}

.process-lite { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
  gap: 2rem;
}

.phase-item { 
  display: flex; 
  gap: 1.5rem; 
  align-items: flex-start; 
  background: rgba(26, 26, 26, 0.8); 
  border: 3px solid var(--dfs-blue); 
  border-radius: 0; 
  padding: 2rem; 
  box-shadow: 8px 8px 0 rgba(30, 92, 175, 0.3);
  transition: all 0.4s ease;
  backdrop-filter: none;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.phase-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--dfs-blue);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.phase-item:hover::before {
  transform: scaleX(1);
}

.phase-item:hover { 
  transform: translate(-4px, -4px); 
  box-shadow: 12px 12px 0 var(--dfs-blue);
  background: rgba(30, 92, 175, 0.1);
  border-color: white;
}

.phase-number { 
  flex: 0 0 auto; 
  width: 50px; 
  height: 50px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 1.2rem; 
  font-weight: 800; 
  background: var(--dfs-blue); 
  color: white; 
  border-radius: 0; 
  box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  border: 2px solid white;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.phase-item:hover .phase-number {
  background: white;
  color: var(--dfs-blue);
  transform: rotate(5deg);
}

.phase-body { 
  flex: 1;
}

.phase-name { 
  font-size: 1.15rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  color: white; 
  margin-bottom: 0.75rem;
}

.phase-desc { 
  color: rgba(255,255,255,0.85); 
  font-size: 1rem; 
  line-height: 1.6; 
  margin: 0;
  font-weight: 400;
}

/* Mobile Responsiveness - Construction Optimized */
@media (max-width: 768px) {
  .about-slim-hero {
    min-height: 60vh;
    padding: 3rem 0;
  }
  
  .about-slim-grid { 
    grid-template-columns: 1fr; 
    text-align: center;
    gap: 2rem;
  }
  
  .about-slim-media { 
    order: -1; 
    max-width: 400px; 
    margin: 0 auto;
    box-shadow: 8px 8px 0 var(--dfs-blue);
  }
  
  .summary-grid { 
    grid-template-columns: 1fr; 
  }
  
  .summary-item {
    box-shadow: 5px 5px 0 var(--dfs-blue);
  }
  
  .process-lite { 
    grid-template-columns: 1fr; 
  }
  
  .phase-item { 
    flex-direction: column; 
    text-align: center;
    gap: 1rem;
    box-shadow: 6px 6px 0 rgba(30, 92, 175, 0.3);
  }
  
  .about-slim-actions { 
    justify-content: center;
  }
  
  .about-summary,
  .about-process-lite {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .about-slim-points { 
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .phase-number { 
    width: 45px; 
    height: 45px; 
    font-size: 1rem;
  }
  
  .summary-item,
  .phase-item {
    padding: 1.5rem;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }
  
  .about-slim-media {
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  }
}