.ap-about{ font-family:inherit; background:#ffffff; }

/* ---------- reveal animation ---------- */
.ap-reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);
  transition-delay:var(--ap-delay,0s);
}
.ap-reveal.is-visible{ opacity:1; transform:translateY(0); }

/* ---------- shared bits ---------- */
.ap-eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#e01f2e;
  background:rgba(224,31,46,.08);
  padding:5px 14px;
  border-radius:99px;
  margin-bottom:14px;
}
.ap-eyebrow--light{ color:#ffc400; background:rgba(255,196,0,.12); }
.ap-section-head{ text-align:center; max-width:640px; margin:0 auto 40px; }
.ap-section-title{
  font-size:clamp(24px,3.2vw,36px);
  font-weight:800;
  color:#141414;
  margin:0 0 10px;
  letter-spacing:-0.01em;
}
.ap-section-title--light{ color:#ffffff; }

.ap-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13.5px;
  font-weight:700;
  text-decoration:none;
  border-radius:99px;
  padding:12px 26px;
  transition:transform .2s ease, box-shadow .2s ease;
}
.ap-btn--solid{ background:#e01f2e; color:#ffffff; }
.ap-btn--solid:hover{ transform:translateY(-2px); box-shadow:0 12px 24px rgba(224,31,46,.3); }
.ap-btn--light{ background:#ffc400; color:#141414; }
.ap-btn--light:hover{ transform:translateY(-2px); box-shadow:0 12px 24px rgba(255,196,0,.35); }

.ap-media-placeholder{
  width:100%; height:100%;
  min-height:280px;
  border:2px dashed #d8d8d5;
  border-radius:16px;
  background:#f2f2f0;
  color:#9b9b98;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:10px;
  font-size:13px;
  font-weight:600;
}
.ap-media-placeholder--wide{ min-height:220px; border-radius:0; }

/* ================= HERO ================= */
.ap-hero{
  position:relative;
  padding:64px 5vw 40px;
  overflow:hidden;
  background:#f8f8f6;
}
.ap-hero__glow{
  position:absolute;
  top:-140px; right:-100px;
  width:380px; height:380px;
  border-radius:50%;
  background:rgba(224,31,46,.12);
  filter:blur(80px);
  pointer-events:none;
}
.ap-hero__grid{
  position:relative;
  max-width:1240px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:40px;
  align-items:center;
}
.ap-hero__title{
  font-size:clamp(28px,3.8vw,42px);
  font-weight:800;
  color:#141414;
  line-height:1.2;
  margin:0 0 18px;
  letter-spacing:-0.01em;
}
.ap-hero__lead{ font-size:14.5px; line-height:1.75; color:#3a3a3a; margin:0 0 14px; }
.ap-hero__lead2{ font-size:14px; line-height:1.7; color:#6f6f6f; margin:0 0 22px; }

.ap-hero__pills{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:26px; }
.ap-pill{
  font-size:12.5px;
  font-weight:700;
  color:#141414;
  background:#ffffff;
  border:1px solid #ececec;
  border-radius:99px;
  padding:7px 16px;
}

.ap-hero__media{ aspect-ratio:4/3; }

.ap-hero__stats{
  max-width:1240px;
  margin:44px auto 0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  background:#141414;
  border-radius:16px;
  padding:28px 20px;
}
.ap-hero__stat{ text-align:center; color:#ffffff; }
.ap-hero__stat-num{ display:block; font-size:clamp(24px,2.8vw,30px); font-weight:800; color:#ffc400; }
.ap-hero__stat-label{ font-size:12px; color:#cfcfcf; line-height:1.5; }

/* ================= MISSION & VISION ================= */
.ap-mission{ padding:60px 5vw; background:#ffffff; }
.ap-mission__grid{
  max-width:1240px;
  margin:0 auto;
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:44px;
  align-items:center;
}
.ap-mission__media{ aspect-ratio:4/5; }
.ap-mission__card{
  background:#f8f8f6;
  border-left:3px solid #e01f2e;
  border-radius:12px;
  padding:22px 24px;
  margin-bottom:16px;
}
.ap-mission__grid .ap-mission__card:nth-of-type(2){ border-left-color:#ffc400; }
.ap-mission__card-title{ font-size:16px; font-weight:800; color:#141414; margin:0 0 8px; }
.ap-mission__card-text{ font-size:13.5px; line-height:1.7; color:#6f6f6f; margin:0; }

/* ================= CORE SERVICES ================= */
.ap-services{ padding:60px 5vw; background:#f8f8f6; }
.ap-services__grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.ap-services__card{
  background:#ffffff;
  border-top:4px solid #e01f2e;
  border-radius:14px;
  padding:26px 24px;
  box-shadow:0 8px 22px rgba(20,20,20,.05);
  transition:transform .3s ease, box-shadow .3s ease;
}
.ap-services__grid .ap-services__card:nth-child(2){ border-top-color:#141414; }
.ap-services__grid .ap-services__card:nth-child(3){ border-top-color:#ffc400; }
.ap-services__card:hover{ transform:translateY(-6px); box-shadow:0 18px 34px rgba(20,20,20,.1); }
.ap-services__icon{
  display:inline-flex; align-items:center; justify-content:center;
  width:44px; height:44px;
  border-radius:12px;
  background:#141414;
  color:#ffffff;
  margin-bottom:14px;
}
.ap-services__title{ font-size:16px; font-weight:800; color:#141414; margin:0 0 14px; }
.ap-services__list{ margin:0; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px; }
.ap-services__list li{
  font-size:13px;
  line-height:1.5;
  color:#3a3a3a;
  padding-left:20px;
  position:relative;
}
.ap-services__list li::before{
  content:"";
  position:absolute;
  left:0; top:6px;
  width:8px; height:8px;
  border-radius:50%;
  background:#e01f2e;
}

/* ================= WHY US ================= */
.ap-why{ padding:60px 5vw; background:#ffffff; }
.ap-why__grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.ap-why__card{
  background:#f8f8f6;
  border-radius:14px;
  padding:24px 22px;
  transition:transform .25s ease;
}
.ap-why__card:hover{ transform:translateY(-4px); }
.ap-why__icon{
  display:inline-flex; align-items:center; justify-content:center;
  width:40px; height:40px;
  border-radius:10px;
  background:#ffc400;
  color:#141414;
  margin-bottom:12px;
}
.ap-why__title{ font-size:15px; font-weight:800; color:#141414; margin:0 0 6px; }
.ap-why__text{ font-size:13px; line-height:1.6; color:#6f6f6f; margin:0; }

/* ================= STATS ================= */
.ap-stats{
  position:relative;
  padding:64px 5vw;
  background:#141414;
  overflow:hidden;
}
.ap-stats__glow{
  position:absolute;
  bottom:-120px; left:50%;
  transform:translateX(-50%);
  width:500px; height:300px;
  background:rgba(255,196,0,.1);
  filter:blur(90px);
  border-radius:50%;
  pointer-events:none;
}
.ap-stats__grid{
  position:relative;
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:18px;
}
.ap-stats__item{ text-align:center; }
.ap-stats__num{ display:block; font-size:clamp(24px,2.6vw,32px); font-weight:800; color:#ffc400; margin-bottom:6px; }
.ap-stats__label{ font-size:12px; color:#cfcfcf; line-height:1.4; }

/* ================= BANNER ================= */
.ap-banner{ background:#f8f8f6; }

/* ================= INDUSTRIES ================= */
.ap-industries{ padding:56px 5vw; background:#ffffff; }
.ap-industries__row{
  max-width:1000px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
}
.ap-chip{
  font-size:13px;
  font-weight:600;
  color:#141414;
  background:#f8f8f6;
  border:1px solid #ececec;
  border-radius:99px;
  padding:9px 18px;
  transition:background .2s ease, color .2s ease, border-color .2s ease;
}
.ap-chip:hover{ background:#e01f2e; border-color:#e01f2e; color:#ffffff; }

/* ================= PROCESS ================= */
.ap-process{ padding:60px 5vw 64px; background:#f8f8f6; }
.ap-process__row{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
  position:relative;
}
.ap-process__row::before{
  content:"";
  position:absolute;
  top:24px; left:10%; right:10%;
  height:2px;
  background:repeating-linear-gradient(90deg,#e2e2e0 0 8px,transparent 8px 16px);
  z-index:0;
}
.ap-process__step{ position:relative; z-index:1; text-align:center; }
.ap-process__num{
  display:inline-flex; align-items:center; justify-content:center;
  width:48px; height:48px;
  border-radius:50%;
  background:#e01f2e;
  color:#ffffff;
  font-weight:800;
  font-size:15px;
  margin-bottom:14px;
}
.ap-process__row .ap-process__step:nth-child(2) .ap-process__num{ background:#141414; }
.ap-process__row .ap-process__step:nth-child(3) .ap-process__num{ background:#ffc400; color:#141414; }
.ap-process__row .ap-process__step:nth-child(4) .ap-process__num{ background:#141414; }
.ap-process__row .ap-process__step:nth-child(5) .ap-process__num{ background:#e01f2e; }
.ap-process__title{ font-size:15px; font-weight:800; color:#141414; margin:0 0 6px; }
.ap-process__text{ font-size:12.5px; line-height:1.5; color:#6f6f6f; margin:0; }

/* ================= TESTIMONIALS ================= */
.ap-testimonials{ padding:60px 5vw 64px; background:#ffffff; }
.ap-testimonials__grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.ap-testimonial{
  margin:0;
  background:#f8f8f6;
  border-radius:14px;
  padding:28px 24px 22px;
  position:relative;
}
.ap-testimonial__quote{
  font-size:46px;
  line-height:1;
  font-weight:800;
  color:#e01f2e;
  opacity:.25;
  display:block;
  margin-bottom:6px;
}
.ap-testimonial__text{
  font-size:13.5px;
  line-height:1.7;
  color:#3a3a3a;
  margin:0 0 20px;
}
.ap-testimonial__author{ display:flex; align-items:center; gap:12px; }
.ap-testimonial__avatar{
  width:38px; height:38px;
  border-radius:50%;
  background:#141414;
  color:#ffffff;
  font-weight:800;
  font-size:12.5px;
  display:flex; align-items:center; justify-content:center;
  flex:0 0 auto;
}
.ap-testimonial__name{ display:block; font-size:13.5px; font-weight:800; color:#141414; }
.ap-testimonial__role{ display:block; font-size:11.5px; color:#9b9b98; }

/* ================= PROMISE + CTA ================= */
.ap-promise{ padding:60px 5vw 64px; background:#f8f8f6; }
.ap-promise__grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
}
.ap-promise__list{
  list-style:none;
  margin:20px 0 0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.ap-promise__list li{
  font-size:14px;
  line-height:1.6;
  color:#3a3a3a;
  padding-left:28px;
  position:relative;
}
.ap-promise__list li::before{
  content:"✓";
  position:absolute;
  left:0; top:0;
  width:18px; height:18px;
  border-radius:50%;
  background:#e01f2e;
  color:#ffffff;
  font-size:11px;
  display:flex; align-items:center; justify-content:center;
}

.ap-promise__cta{
  background:#141414;
  border-radius:16px;
  padding:36px 32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.ap-promise__cta-title{ font-size:20px; font-weight:800; color:#ffffff; margin:0 0 12px; line-height:1.3; }
.ap-promise__cta-text{ font-size:13.5px; line-height:1.7; color:#cfcfcf; margin:0 0 22px; }

/* ================= GET IN TOUCH ================= */
.ap-touch{ padding:56px 5vw 64px; background:#ffffff; text-align:center; }
.ap-touch__title{ font-size:clamp(22px,2.6vw,28px); font-weight:800; color:#141414; margin:0 0 30px; }
.ap-touch__row{
  max-width:900px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.ap-touch__item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  text-align:left;
  background:#f8f8f6;
  border-radius:12px;
  padding:18px 16px;
}
.ap-touch__icon{
  flex:0 0 auto;
  width:36px; height:36px;
  border-radius:50%;
  background:#141414;
  color:#ffffff;
  display:flex; align-items:center; justify-content:center;
}
.ap-touch__item strong{ display:block; font-size:13px; color:#141414; margin-bottom:2px; }
.ap-touch__item span, .ap-touch__item a{ font-size:12.5px; color:#6f6f6f; text-decoration:none; }
.ap-touch__item a:hover{ color:#e01f2e; }

.hero-media{
  flex: 1 1 420px;
  max-width: 560px;
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-media img{
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  display: block;
}

/* =====================================================================
   MOBILE DESIGN
   Approach: below 768px this isn't "shrink the desktop grid," it's a
   distinct reading pattern — a vertical scroll broken up by two
   horizontal, swipeable strips (stats + testimonials) so numbers and
   client voices feel like a quick scan, not another wall of stacked
   cards. The process becomes a left-rail timeline (order = meaning,
   so it stays vertical, never a carousel). Touch targets sized to
   44px+, section rhythm tightened so nothing feels like desktop
   content merely narrowed.
   ===================================================================== */

/* ---- tablet (1024px): loosen 3-col grids to 2-col, keep hero side-by-side a bit longer ---- */
@media (max-width:1024px){
  .ap-hero__grid{ grid-template-columns:1fr; gap:32px; }
  .ap-hero__media{ order:-1; aspect-ratio:16/9; }
  .ap-mission__grid{ grid-template-columns:1fr; gap:28px; }
  .ap-mission__media{ aspect-ratio:16/9; order:-1; max-height:320px; overflow:hidden; border-radius:16px; }
  .ap-services__grid, .ap-why__grid{ grid-template-columns:repeat(2,1fr); }
  .ap-stats__grid{ grid-template-columns:repeat(3,1fr); row-gap:28px; }
  .ap-process__row{ grid-template-columns:repeat(3,1fr); row-gap:34px; }
  .ap-process__row::before{ display:none; }
  .ap-testimonials__grid{ grid-template-columns:repeat(2,1fr); }
  .ap-promise__grid{ grid-template-columns:1fr; gap:26px; }
  .ap-touch__row{ grid-template-columns:repeat(3,1fr); }
}

/* ---- mobile (768px and down) ---- */
@media (max-width:768px){

  /* tighter section rhythm + safe side padding */
  .ap-hero{ padding:40px 20px 32px; }
  .ap-mission, .ap-services, .ap-why, .ap-stats, .ap-industries, .ap-process, .ap-testimonials, .ap-promise, .ap-touch{
    padding-left:20px; padding-right:20px;
  }
  .ap-mission{ padding-top:48px; padding-bottom:48px; }
  .ap-services{ padding-top:48px; padding-bottom:48px; }
  .ap-why{ padding-top:48px; padding-bottom:48px; }
  .ap-stats{ padding-top:48px; padding-bottom:48px; }
  .ap-industries{ padding-top:44px; padding-bottom:44px; }
  .ap-process{ padding-top:48px; padding-bottom:52px; }
  .ap-testimonials{ padding-top:48px; padding-bottom:52px; }
  .ap-promise{ padding-top:48px; padding-bottom:52px; }
  .ap-touch{ padding-top:44px; padding-bottom:52px; }

  .ap-section-head{ margin-bottom:28px; }
  .ap-section-title{ font-size:clamp(21px,6vw,26px); }

  /* HERO */
  .ap-hero__glow{ width:260px; height:260px; top:-100px; right:-80px; }
  .ap-hero__title{ font-size:clamp(24px,7vw,30px); margin-bottom:14px; }
  .ap-hero__lead{ font-size:14px; }
  .ap-hero__lead2{ font-size:13.5px; margin-bottom:20px; }
  .ap-hero__pills{ margin-bottom:22px; }
  .ap-btn{ width:100%; justify-content:center; padding:14px 26px; }
  .ap-hero__media{ aspect-ratio:4/3; border-radius:14px; overflow:hidden; }

  /* HERO STATS -> horizontal swipe strip (signature mobile pattern) */
  .ap-hero__stats{
    margin-top:28px;
    display:flex;
    grid-template-columns:none;
    gap:12px;
    padding:18px 16px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }
  .ap-hero__stats::-webkit-scrollbar{ display:none; }
  .ap-hero__stat{
    flex:0 0 auto;
    min-width:150px;
    scroll-snap-align:start;
    text-align:left;
    border-left:2px solid #ffc400;
    padding-left:14px;
  }
  .ap-hero__stat-num{ font-size:24px; }

  /* MISSION */
  .ap-mission__media{ max-height:220px; }
  .ap-mission__card{ padding:18px 20px; }

  /* SERVICES / WHY -> single column, full-width cards */
  .ap-services__grid, .ap-why__grid{ grid-template-columns:1fr; gap:14px; }
  .ap-services__card{ padding:22px 20px; }
  .ap-why__card{ padding:20px 18px; display:flex; gap:14px; align-items:flex-start; text-align:left; }
  .ap-why__icon{ margin-bottom:0; flex:0 0 auto; }

  /* STATS (dark) -> horizontal swipe strip, mirrors hero stats */
  .ap-stats__grid{
    display:flex;
    grid-template-columns:none;
    gap:14px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    margin:0 -20px;
    padding:0 20px;
  }
  .ap-stats__grid::-webkit-scrollbar{ display:none; }
  .ap-stats__item{
    flex:0 0 auto;
    min-width:132px;
    scroll-snap-align:start;
    text-align:left;
    border-left:2px solid rgba(255,196,0,.5);
    padding-left:12px;
  }

  /* INDUSTRIES -> horizontal swipe chip rail instead of wrapped block */
  .ap-industries__row{
    flex-wrap:nowrap;
    justify-content:flex-start;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    margin:0 -20px;
    padding:0 20px;
  }
  .ap-industries__row::-webkit-scrollbar{ display:none; }
  .ap-chip{ flex:0 0 auto; scroll-snap-align:start; white-space:nowrap; }

  /* PROCESS -> vertical left-rail timeline (order matters, so it stays vertical) */
  .ap-process__row{
    grid-template-columns:1fr;
    row-gap:0;
    max-width:440px;
  }
  .ap-process__step{
    display:grid;
    grid-template-columns:48px 1fr;
    column-gap:16px;
    text-align:left;
    padding-bottom:26px;
    position:relative;
  }
  .ap-process__step::before{
    content:"";
    position:absolute;
    left:23px; top:48px; bottom:0;
    width:2px;
    background:repeating-linear-gradient(180deg,#dcdcda 0 6px,transparent 6px 12px);
  }
  .ap-process__step:last-child::before{ display:none; }
  .ap-process__step:last-child{ padding-bottom:0; }
  .ap-process__num{ margin-bottom:0; }
  .ap-process__title{ margin-top:2px; }

  /* TESTIMONIALS -> single-card horizontal swipe */
  .ap-testimonials__grid{
    display:flex;
    grid-template-columns:none;
    gap:14px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    margin:0 -20px;
    padding:0 20px 4px;
  }
  .ap-testimonials__grid::-webkit-scrollbar{ display:none; }
  .ap-testimonial{
    flex:0 0 86%;
    scroll-snap-align:start;
  }

  /* PROMISE + CTA */
  .ap-promise__grid{ gap:24px; }
  .ap-promise__cta{ padding:28px 24px; }
  .ap-promise__cta-title{ font-size:19px; }

  /* GET IN TOUCH -> stacked full-width rows, bigger tap area */
  .ap-touch__title{ text-align:left; margin-bottom:18px; }
  .ap-touch__row{ grid-template-columns:1fr; gap:12px; }
  .ap-touch__item{ padding:16px; }
  .ap-touch__icon{ width:40px; height:40px; }
}

/* ---- small phones (480px and down) ---- */
@media (max-width:480px){
  .ap-hero__stat{ min-width:132px; }
  .ap-stats__item{ min-width:118px; }
  .ap-testimonial{ flex-basis:90%; }
  .ap-promise__list li{ font-size:13.5px; }
  .ap-hero__pills{ gap:8px; }
  .ap-pill{ font-size:12px; padding:6px 13px; }
}

@media (prefers-reduced-motion: reduce){
  .ap-reveal{ transition:none; opacity:1; transform:none; }
  .ap-services__card, .ap-why__card, .ap-btn{ transition:none; }
}