
/* ─── About Page Custom Styles ──────────────────────────────────────────
   Shared design-system components (eyebrow, headings, body copy,
   buttons, image layouts, section utilities) live in general.css.
   This file contains only styles unique to the About page.
─────────────────────────────────────────────────────────────────────── */

/* Dark milestone band */
.ws-milestone-band {
  background: #0a0a0a;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.ws-milestone-band::before {
  content: '2021';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Teko', sans-serif;
  font-size: clamp(10rem, 25vw, 18rem);
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}
.ws-milestone-band .milestone-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #CB6015;
  margin-bottom: 12px;
}
.ws-milestone-band h2 {
  font-family: 'Teko', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}
.ws-milestone-band p {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  max-width: 640px;
}
.ws-milestone-band .milestone-year {
  font-family: 'Teko', sans-serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700;
  color: #CB6015;
  line-height: 1;
  display: block;
}
.ws-milestone-band .milestone-divider {
  width: 60px;
  height: 3px;
  background: #0047BB;
  margin: 28px 0;
}

/* Audience cards (Homeowner / Commercial) */
.ws-audience-card {
  border-left: 4px solid #0047BB;
  padding: 36px 32px;
  background: #fff;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  height: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.ws-audience-card:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.13);
  transform: translateY(-4px);
}
.ws-audience-card.orange-border {
  border-left-color: #CB6015;
}
.ws-audience-card .card-icon {
  width: 52px;
  height: 52px;
  background: #0047BB;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.ws-audience-card.orange-border .card-icon {
  background: #CB6015;
}
.ws-audience-card .card-icon i {
  font-size: 1.5rem;
  color: #fff;
}
.ws-audience-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0a0a0a;
  margin-bottom: 14px;
}

/* Logistics cards */
.ws-logistics-card {
  background: #f7f8fa;
  padding: 40px 36px;
  border-top: 3px solid #0047BB;
  height: 100%;
}
.ws-logistics-card.orange {
  border-top-color: #CB6015;
}
.ws-logistics-card .logistics-icon {
  font-size: 2.4rem;
  color: #0047BB;
  margin-bottom: 18px;
  display: block;
}
.ws-logistics-card.orange .logistics-icon {
  color: #CB6015;
}
.ws-logistics-card h3 {
  font-family: 'Teko', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #0a0a0a;
  margin-bottom: 14px;
}

/* Quality section */
.ws-quality-section {
  background: #f2f4f7;
  padding: 100px 0;
}

/* CTA Banner */
.ws-about-cta {
  background: #0047BB;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.ws-about-cta::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  background: rgba(0,0,0,0.12);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
.ws-about-cta h2 {
  font-family: 'Teko', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 18px;
}
.ws-about-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
}

/* Buttons and section utilities are now in general.css */