/* ==========================================================
   PRECAST CONCRETE FOUNDATION — Main Stylesheet
   Palette: Charcoal / Concrete Grey / Safety Orange / Steel Blue
   Typefaces: Oswald (display) + Source Sans 3 (body)
   ========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

:root {
  --pf-bg:          #f5f3ef;       /* warm off-white / raw concrete surface */
  --pf-bg-alt:      #eceae5;       /* slightly deeper for alt sections */
  --pf-ink:         #1a1f2b;       /* near-black charcoal */
  --pf-ink-2:       #3d4351;
  --pf-mute:        #6b7280;
  --pf-line:        #d8d4cc;
  --pf-accent:      #e85d04;       /* safety orange — construction energy */
  --pf-accent-2:    #c44e03;
  --pf-steel:       #1e3a5f;       /* deep structural steel blue */
  --pf-steel-light: #2d5a8e;
  --pf-concrete:    #9ca3af;       /* mid concrete grey */
  --pf-radius:      10px;
  --pf-shadow:      0 20px 60px -30px rgba(26,31,43,.20);
  --pf-display:     'Oswald', 'Impact', sans-serif;
  --pf-body:        'Source Sans 3', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--pf-bg);
  color: var(--pf-ink);
  font-family: var(--pf-body);
  font-size: 16px;
}
img { max-width: 100%; display: block; }

/* ── Layout ── */
.pf-container { width: min(1240px, 92%); margin-inline: auto; }
.pf-section   { padding: clamp(64px, 9vw, 120px) 0; }
.pf-section--alt { background: var(--pf-bg-alt); }

/* ── Eyebrow ── */
.pf-eyebrow {
  display: inline-block;
  font-family: var(--pf-body);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--pf-accent);
  margin-bottom: 14px;
}
.pf-eyebrow--light { color: var(--pf-concrete); }

/* ── Headings ── */
.pf-heading {
  font-family: var(--pf-display);
  font-weight: 700;
  letter-spacing: .03em;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.04;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: var(--pf-ink);
}
.pf-heading--light { color: #fff; }

.pf-text {
  color: var(--pf-ink-2);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 22px;
  max-width: 60ch;
}
.pf-text--center { margin-inline: auto; text-align: center; }

.pf-section__head { text-align: center; margin-bottom: 56px; }

/* ── Buttons ── */
.pf-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--pf-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s, background .25s, color .25s, box-shadow .25s;
}
.pf-btn i { transition: transform .25s; }
.pf-btn:hover i { transform: translateX(4px); }
.pf-btn--primary {
  background: var(--pf-accent);
  color: #fff;
}
.pf-btn--primary:hover {
  background: var(--pf-accent-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(232,93,4,.45);
}
.pf-btn--ghost {
  background: transparent;
  color: var(--pf-steel);
  border-color: var(--pf-steel);
}
.pf-btn--ghost:hover {
  background: var(--pf-steel);
  color: #fff;
}
.pf-btn--accent {
  background: var(--pf-accent);
  color: #fff;
  border-color: var(--pf-accent);
}
.pf-btn--accent:hover {
  background: #fff;
  color: var(--pf-accent);
}

/* ── Checklist ── */
.pf-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 11px;
}
.pf-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--pf-ink);
  font-size: .97rem;
}
.pf-checklist i {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--pf-accent);
  display: grid;
  place-items: center;
  font-size: .7rem;
  color: #fff;
  flex-shrink: 0;
}
.pf-checklist--2col {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px !important;
}

/* =============================================================
   HEADER
   ============================================================= */
.pf-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--pf-bg);
  border-top: 4px solid var(--pf-accent);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
  transition: box-shadow .3s;
}
.pf-header--shrunk { box-shadow: 0 4px 24px -8px rgba(26,31,43,.15); }
.pf-header__bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 14px clamp(20px, 4vw, 60px);
}
.pf-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--pf-ink);
  font-family: var(--pf-display);
}
.pf-logo__icon {
  width: 48px; height: 48px;
  background: var(--pf-steel);
  border-radius: 6px;
  display: grid; place-items: center;
  color: var(--pf-accent);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.pf-logo__text { font-size: 1.6rem; font-weight: 700; letter-spacing: .04em; line-height: 1; }
.pf-logo__text span { color: var(--pf-accent); }
.pf-logo__sub {
  font-size: .58rem;
  font-family: var(--pf-body);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pf-mute);
  display: block;
  margin-top: 2px;
}
.pf-nav { justify-self: center; }
.pf-nav__list {
  display: flex; gap: 32px;
  list-style: none; margin: 0; padding: 0;
  font-weight: 600; font-size: .92rem;
}
.pf-nav__list a {
  color: var(--pf-ink);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.pf-nav__list a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--pf-accent);
  transition: right .3s;
}
.pf-nav__list a:hover { color: var(--pf-accent); }
.pf-nav__list a:hover::after { right: 0; }
.pf-header__actions { display: flex; align-items: center; gap: 10px; }
.pf-icon-btn {
  width: 44px; height: 44px;
  border-radius: 4px; border: 1.5px solid var(--pf-line);
  background: var(--pf-bg); color: var(--pf-ink);
  display: grid; place-items: center; cursor: pointer;
  transition: .25s; padding: 0;
}
.pf-icon-btn:hover { background: var(--pf-accent); border-color: var(--pf-accent); color: #fff; }
.pf-icon-btn--menu { display: none; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.pf-icon-btn--menu span { width: 18px; height: 2px; background: var(--pf-ink); display: block; }
.pf-mobile-nav {
  display: none; position: fixed;
  inset: auto 0 auto 0; top: 74px;
  background: var(--pf-steel); padding: 20px; z-index: 99;
}
.pf-mobile-nav.is-open { display: block; }
.pf-mobile-nav ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.pf-mobile-nav a { color: #fff; text-decoration: none; font-family: var(--pf-display); font-size: 1.4rem; text-transform: uppercase; }
.pf-mobile-nav a:hover { color: var(--pf-accent); }
@media (max-width: 900px) {
  .pf-nav { display: none; }
  .pf-icon-btn--menu { display: flex; }
}

/* =============================================================
   HERO
   ============================================================= */
.pf-hero {
  background: var(--pf-ink);
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}
/* Subtle concrete texture overlay */
.pf-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,.015) 2px,
      rgba(255,255,255,.015) 4px
    );
  pointer-events: none; z-index: 1;
}

.pf-hero__slides { position: relative; min-height: min(80vh, 760px); }
.pf-hero__slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .7s ease, transform .7s ease;
  transform: translateY(12px); z-index: 0;
}
.pf-hero__slide.is-active {
  position: relative;
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0); z-index: 2;
}

.pf-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: min(80vh, 760px);
  padding: clamp(60px,7vw,100px) clamp(24px,5vw,80px) clamp(40px,5vw,80px);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.pf-hero__title {
  font-family: var(--pf-display);
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .98;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 24px;
}
.pf-hero__title-accent { color: var(--pf-accent); }

.pf-hero__lede {
  color: var(--pf-concrete);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 32px;
  max-width: 44ch;
}
.pf-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Spec card — right side signature element */
.pf-hero__spec-card {
  background: #fff;
  border-radius: var(--pf-radius);
  padding: 32px;
  box-shadow: 0 32px 80px -24px rgba(0,0,0,.5);
  position: relative;
  overflow: hidden;
}
.pf-spec-card__label {
  font-family: var(--pf-body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--pf-mute);
  margin-bottom: 8px;
}
.pf-spec-card__value {
  font-family: var(--pf-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--pf-steel);
  line-height: 1;
  margin-bottom: 20px;
}
.pf-spec-card__value span {
  font-size: 1.6rem;
  color: var(--pf-mute);
}
.pf-spec-card__divider {
  height: 2px;
  background: linear-gradient(90deg, var(--pf-accent), transparent);
  margin-bottom: 20px;
}
.pf-spec-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.pf-spec-row__item {
  text-align: center;
  background: var(--pf-bg-alt);
  border-radius: 6px;
  padding: 12px 8px;
}
.pf-spec-row__item strong {
  display: block;
  font-family: var(--pf-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pf-steel);
  line-height: 1;
}
.pf-spec-row__item span {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--pf-mute);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px;
}
.pf-spec-card__img {
  width: calc(100% + 64px);
  margin: 0 -32px -32px;
  height: 200px;
  background: #555 center/cover no-repeat;
}

/* Hero arrows */
.pf-hero__arrow {
  position: absolute !important; top: 50% !important; transform: translateY(-50%) !important;
  width: 46px !important; height: 46px !important; border-radius: 4px !important;
  background: rgba(255,255,255,.1) !important; color: #fff !important; border: 1px solid rgba(255,255,255,.2) !important;
  cursor: pointer; z-index: 20; display: grid !important; place-items: center !important;
  transition: background .25s; padding: 0 !important;
}
.pf-hero__arrow:hover { background: var(--pf-accent) !important; border-color: var(--pf-accent) !important; }
.pf-hero__arrow--prev { left: 20px !important; }
.pf-hero__arrow--next { right: 20px !important; }
/* Dots */
.pf-hero__dots {
  position: absolute; bottom: 260px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.pf-hero__dot {
  width: 36px; height: 36px; border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,.2);
  background: transparent; color: rgba(255,255,255,.6);
  font-family: var(--pf-display); font-size: .7rem; font-weight: 600;
  cursor: pointer; transition: all .25s; display: grid; place-items: center; padding: 0;
}
.pf-hero__dot.is-active { background: var(--pf-accent); border-color: var(--pf-accent); color: #fff; }

/* Feature strip */
.pf-hero__strip {
  display: grid; grid-template-columns: repeat(3,1fr);
  background: var(--pf-steel);
  border-top: 3px solid var(--pf-accent);
  max-width: 100%; position: relative; z-index: 2;
}
.pf-strip-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 26px 28px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.pf-strip-item:last-child { border-right: 0; }
.pf-strip-item__icon {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 4px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--pf-accent);
  display: grid; place-items: center;
  font-size: 1.2rem;
}
.pf-strip-item h4 { margin: 0 0 5px; font-weight: 700; font-size: .95rem; color: #fff; }
.pf-strip-item p  { margin: 0; color: var(--pf-concrete); font-size: .85rem; line-height: 1.55; }

/* =============================================================
   TICKER
   ============================================================= */
.pf-ticker {
  background: var(--pf-accent);
  overflow: hidden;
  padding: 14px 0;
}
.pf-ticker__track {
  display: flex; gap: 32px;
  white-space: nowrap;
  animation: pf-tick 32s linear infinite;
  font-family: var(--pf-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  align-items: center;
}
.pf-ticker__sep { color: rgba(255,255,255,.5); font-size: .8rem; }

/* =============================================================
   ABOUT
   ============================================================= */
.pf-about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.pf-about__visual { position: relative; height: 560px; }
.pf-about__img {
  position: absolute; border-radius: var(--pf-radius);
  box-shadow: var(--pf-shadow); overflow: hidden;
  background-size: cover !important; background-position: center !important;
}
.pf-about__img--a { inset: 0 30% 25% 0; background: var(--pf-steel) center/cover no-repeat; }
.pf-about__img--b { inset: 32% 0 0 30%; background: var(--pf-accent) center/cover no-repeat; }
.pf-about__badge {
  position: absolute; left: 28%; top: 48%;
  transform: translate(-50%,-50%);
  width: 140px; height: 140px; border-radius: 50%;
  background: var(--pf-steel);
  display: grid; place-items: center; text-align: center;
  font-family: var(--pf-display); color: #fff;
  box-shadow: 0 20px 40px -12px rgba(30,58,95,.5);
}
.pf-about__badge strong { font-size: 2.2rem; line-height: 1; display: block; }
.pf-about__badge span   { font-size: .68rem; letter-spacing: .16em; color: var(--pf-accent); }

/* =============================================================
   CAPABILITIES
   ============================================================= */
.pf-caps__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.pf-caps__visual { position: relative; }
.pf-caps__img-main {
  width: 100%; aspect-ratio: 4/5; max-height: 580px;
  background: #ddd center/cover no-repeat;
  border-radius: var(--pf-radius); box-shadow: var(--pf-shadow);
}
.pf-caps__overlay-card {
  position: absolute; bottom: -28px; right: -28px; z-index: 3;
  animation: pf-floatIn 1s .5s cubic-bezier(.34,1.56,.64,1) both;
}
.pf-caps__skills-card {
  background: #fff; border-radius: var(--pf-radius);
  padding: 28px 30px 24px;
  box-shadow: 0 24px 64px -20px rgba(26,31,43,.25);
  min-width: 300px;
  border: 1px solid var(--pf-line);
}
.pf-caps__skills-title {
  font-family: var(--pf-display); font-size: 1.1rem; font-weight: 700;
  text-transform: uppercase; color: var(--pf-ink);
  margin: 0 0 4px; padding-bottom: 12px; border-bottom: 2px solid var(--pf-line);
}
.pf-skill-bar__wrap { display: grid; gap: 14px; margin-top: 16px; }
.pf-skill-bar__label { display: flex; justify-content: space-between; align-items: center; font-size: .86rem; font-weight: 600; color: var(--pf-ink); margin-bottom: 7px; }
.pf-skill-bar__pct { color: var(--pf-accent); font-family: var(--pf-display); font-weight: 700; font-size: .95rem; }
.pf-skill-bar__track { height: 5px; background: var(--pf-bg-alt); border-radius: 99px; overflow: hidden; }
.pf-skill-bar__fill { height: 100%; width: 0; border-radius: 99px; background: linear-gradient(90deg, var(--pf-steel) 0%, var(--pf-accent) 100%); transition: width 1.4s cubic-bezier(.4,0,.2,1); }
.pf-caps__content { padding-left: 20px; }

/* Stats row */
.pf-stats-row { display: flex; gap: 28px; margin-bottom: 32px; flex-wrap: wrap; }
.pf-stat { border-left: 3px solid var(--pf-accent); padding: 6px 0 6px 16px; }
.pf-stat strong { font-family: var(--pf-display); font-size: 2rem; display: block; line-height: 1; color: var(--pf-steel); }
.pf-stat span   { color: var(--pf-mute); font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; }

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.pf-testimonials { background: var(--pf-bg); }
.pf-tslider { position: relative; overflow: hidden; }
.pf-tslider__slide { display: none; animation: pf-fadeUp .6s ease both; }
.pf-tslider__slide.is-active { display: block; }
.pf-tslider__inner {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 0; border-radius: var(--pf-radius); overflow: hidden;
  box-shadow: var(--pf-shadow); border: 1px solid var(--pf-line);
  min-height: 340px;
}
.pf-tslider__photo { background: #ddd center/cover no-repeat; min-height: 340px; }
.pf-tslider__content {
  padding: 48px 48px 40px; background: #fff;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
}
.pf-tslider__content::before {
  content: '\201C';
  position: absolute; top: 14px; left: 28px;
  font-family: var(--pf-display); font-size: 6rem; line-height: 1;
  color: var(--pf-steel); opacity: .06; pointer-events: none;
}
.pf-tslider__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; gap: 16px; }
.pf-tslider__cat { font-family: var(--pf-display); font-size: 1.2rem; font-weight: 700; text-transform: uppercase; color: var(--pf-ink); margin: 0; }
.pf-tslider__stars { display: flex; gap: 4px; }
.pf-tslider__stars i { color: var(--pf-accent); font-size: 1rem; }
.pf-tslider__quote { font-size: 1.05rem; line-height: 1.75; color: var(--pf-ink-2); font-style: italic; margin: 0 0 30px; }
.pf-tslider__footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; border-top: 1px solid var(--pf-line); padding-top: 22px; }
.pf-tslider__footer strong { font-family: var(--pf-display); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; display: block; color: var(--pf-ink); }
.pf-tslider__footer span   { font-size: .86rem; color: var(--pf-mute); display: block; margin-top: 2px; }
.pf-tslider__nav { display: flex; gap: 10px; flex-shrink: 0; }
.pf-tslider__btn {
  width: 44px; height: 44px; border-radius: 4px;
  border: 1.5px solid var(--pf-line); background: #fff;
  color: var(--pf-ink); display: grid; place-items: center;
  cursor: pointer; transition: background .25s, border-color .25s;
}
.pf-tslider__btn:hover { background: var(--pf-accent); border-color: var(--pf-accent); color: #fff; }
.pf-tslider-progress { height: 3px; background: var(--pf-line); border-radius: 99px; margin-top: 22px; overflow: hidden; }
.pf-tslider-progress__bar { height: 100%; width: 0; border-radius: 99px; background: linear-gradient(90deg, var(--pf-steel), var(--pf-accent)); }
.pf-tslider__dots { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }
.pf-tslider__idot { width: 10px; height: 10px; border-radius: 50%; background: var(--pf-line); border: none; cursor: pointer; padding: 0; transition: background .3s, width .3s; flex-shrink: 0; }
.pf-tslider__idot.is-active { background: var(--pf-accent); width: 26px; border-radius: 99px; }

/* Testimonial active animations */
.pf-tslider__slide.is-active .pf-tslider__cat    { animation: pf-fadeUp .5s .08s ease both; }
.pf-tslider__slide.is-active .pf-tslider__quote  { animation: pf-fadeUp .6s .22s ease both; }
.pf-tslider__slide.is-active .pf-tslider__footer { animation: pf-fadeUp .6s .40s ease both; }
.pf-tslider__slide.is-active .pf-tslider__stars i { animation: pf-starPop .4s cubic-bezier(.34,1.56,.64,1) both; }
.pf-tslider__slide.is-active .pf-tslider__stars i:nth-child(1) { animation-delay: .28s; }
.pf-tslider__slide.is-active .pf-tslider__stars i:nth-child(2) { animation-delay: .36s; }
.pf-tslider__slide.is-active .pf-tslider__stars i:nth-child(3) { animation-delay: .44s; }
.pf-tslider__slide.is-active .pf-tslider__stars i:nth-child(4) { animation-delay: .52s; }
.pf-tslider__slide.is-active .pf-tslider__stars i:nth-child(5) { animation-delay: .60s; }

/* =============================================================
   PRODUCTS
   ============================================================= */
.pf-products { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.pf-product {
  background: #fff; border: 1px solid var(--pf-line);
  border-radius: var(--pf-radius); overflow: hidden;
  transition: .35s ease; display: flex; flex-direction: column;
}
.pf-product:hover { transform: translateY(-7px); box-shadow: var(--pf-shadow); border-color: transparent; }
.pf-product__media { aspect-ratio: 4/3; background: #ddd center/cover no-repeat; transition: transform .6s; }
.pf-product:hover .pf-product__media { transform: scale(1.04); }
.pf-product__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.pf-product__num { font-family: var(--pf-display); font-size: 1.5rem; color: var(--pf-accent); font-weight: 700; letter-spacing: .04em; display: block; margin-bottom: 6px; }
.pf-product__title { font-family: var(--pf-display); text-transform: uppercase; font-size: 1.2rem; margin: 0 0 10px; line-height: 1.1; color: var(--pf-ink); }
.pf-product p { color: var(--pf-mute); font-size: .93rem; line-height: 1.65; margin: 0 0 16px; flex: 1; }
.pf-product__link { font-weight: 700; text-transform: uppercase; font-size: .76rem; letter-spacing: .18em; color: var(--pf-steel); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.pf-product__link:hover { color: var(--pf-accent); }

/* =============================================================
   IMPACT
   ============================================================= */
.pf-impact__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.pf-impact__media { position: relative; height: 520px; }
.pf-impact__img { position: absolute; inset: 0 25% 20% 0; border-radius: var(--pf-radius); background: #ddd center/cover no-repeat; box-shadow: var(--pf-shadow); }
.pf-impact__img--b { inset: 30% 0 0 30%; }
.pf-impact__stat { position: absolute; left: 0; bottom: 0; background: var(--pf-steel); color: #fff; padding: 20px 26px; border-radius: var(--pf-radius); box-shadow: var(--pf-shadow); z-index: 2; }
.pf-impact__stat strong { font-family: var(--pf-display); font-size: 2.4rem; display: block; line-height: 1; color: var(--pf-accent); }
.pf-impact__stat span   { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; }
.pf-impact__content h3  { font-family: var(--pf-display); text-transform: uppercase; font-size: 1.9rem; line-height: 1.1; margin: 0 0 16px; color: var(--pf-ink); }
.pf-impact__content p   { color: var(--pf-ink-2); line-height: 1.72; margin: 0 0 20px; }

/* =============================================================
   WHY PRECAST — reasons grid
   ============================================================= */
.pf-reasons { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.pf-reason {
  background: #fff; border-radius: var(--pf-radius);
  padding: 32px 26px; border: 1px solid var(--pf-line);
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.pf-reason::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--pf-accent); transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.pf-reason:hover { transform: translateY(-6px); box-shadow: var(--pf-shadow); }
.pf-reason:hover::after { transform: scaleX(1); }
.pf-reason__icon {
  display: block; width: 52px; height: 52px;
  border-radius: 6px; background: var(--pf-bg-alt);
  border: 2px solid var(--pf-line);
  color: var(--pf-steel); display: grid; place-items: center;
  font-size: 1.3rem; margin-bottom: 18px;
  transition: background .25s, border-color .25s, color .25s;
}
.pf-reason:hover .pf-reason__icon { background: var(--pf-accent); border-color: var(--pf-accent); color: #fff; }
.pf-reason h3 { font-family: var(--pf-display); text-transform: uppercase; font-size: 1.15rem; margin: 0 0 10px; color: var(--pf-ink); }
.pf-reason p  { color: var(--pf-mute); font-size: .93rem; line-height: 1.6; margin: 0; }

/* =============================================================
   CTA STRIP
   ============================================================= */
.pf-cta { background: var(--pf-ink); color: #fff; padding: 70px 0; }
.pf-cta__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; align-items: center; }
.pf-cta__actions { text-align: right; }

/* =============================================================
   PROJECTS
   ============================================================= */
.pf-projects { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pf-project {
  position: relative; border-radius: var(--pf-radius); overflow: hidden;
  text-decoration: none; color: #fff;
  aspect-ratio: 4/5; display: block;
  box-shadow: var(--pf-shadow); isolation: isolate;
  transition: transform .4s;
}
.pf-project:hover { transform: translateY(-6px); }
.pf-project__media {
  position: absolute; inset: 0; z-index: 0;
  transition: transform .6s;
  background-size: cover !important; background-position: center !important;
  background-color: #2a3040; min-height: 340px;
}
.pf-project:hover .pf-project__media { transform: scale(1.07); }
.pf-project::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.88) 100%);
}
.pf-project__body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px 24px 26px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
  z-index: 2;
}
.pf-project__cat { color: var(--pf-accent); font-size: .73rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; display: block; margin-bottom: 6px; }
.pf-project__title { font-family: var(--pf-display); font-size: 1.25rem; margin: 0 0 6px; text-transform: uppercase; }
.pf-project__meta  { display: block; font-size: .78rem; color: rgba(255,255,255,.65); }
.pf-project__arrow {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--pf-accent); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
  transform: translateY(8px); opacity: 0; transition: .35s;
}
.pf-project:hover .pf-project__arrow { transform: translateY(0); opacity: 1; }

/* =============================================================
   BLOG
   ============================================================= */
.pf-blog { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.pf-post { background: #fff; border-radius: var(--pf-radius); overflow: hidden; border: 1px solid var(--pf-line); transition: .3s; }
.pf-post:hover { transform: translateY(-6px); box-shadow: var(--pf-shadow); }
.pf-post__media { aspect-ratio: 16/10; background: #ddd center/cover no-repeat; }
.pf-post__body  { padding: 24px 24px 26px; }
.pf-post__date  { display: inline-block; background: var(--pf-steel); color: #fff; padding: 5px 11px; font-weight: 700; font-size: .72rem; letter-spacing: .14em; border-radius: 3px; }
.pf-post__title { font-family: var(--pf-display); text-transform: uppercase; font-size: 1.15rem; margin: 12px 0 10px; line-height: 1.15; color: var(--pf-ink); }
.pf-post p      { color: var(--pf-mute); font-size: .93rem; line-height: 1.6; margin: 0 0 14px; }
.pf-post__link  { font-weight: 700; letter-spacing: .16em; font-size: .76rem; text-transform: uppercase; color: var(--pf-steel); text-decoration: none; display: inline-flex; gap: 8px; align-items: center; }
.pf-post__link:hover { color: var(--pf-accent); }

/* =============================================================
   CONTACT
   ============================================================= */
.pf-contact__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.pf-contact__list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 13px; }
.pf-contact__list li { display: flex; align-items: center; gap: 14px; color: var(--pf-ink); }
.pf-contact__list a  { color: var(--pf-ink); text-decoration: none; }
.pf-contact__list a:hover { color: var(--pf-accent); }
.pf-contact__list i  { width: 36px; height: 36px; border-radius: 4px; background: var(--pf-steel); display: grid; place-items: center; color: var(--pf-accent); flex-shrink: 0; }
.pf-contact__form {
  background: #fff; border: 1px solid var(--pf-line);
  border-radius: var(--pf-radius); padding: 34px;
  box-shadow: var(--pf-shadow); display: grid; gap: 16px;
}
.pf-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pf-contact__form label { display: grid; gap: 6px; font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--pf-ink-2); }
.pf-contact__form input,
.pf-contact__form select,
.pf-contact__form textarea {
  padding: 13px 15px; border: 1.5px solid var(--pf-line);
  border-radius: 4px; font-family: inherit; font-size: .98rem;
  background: var(--pf-bg); transition: border-color .2s; color: var(--pf-ink);
}
.pf-contact__form input:focus,
.pf-contact__form select:focus,
.pf-contact__form textarea:focus { outline: none; border-color: var(--pf-steel); background: #fff; }

/* =============================================================
   FOOTER
   ============================================================= */
.pf-footer { background: var(--pf-ink); color: #8a929e; padding: 80px 0 0; }
.pf-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 60px; }
.pf-footer__logo { font-family: var(--pf-display); font-size: 2.2rem; margin: 0 0 14px; color: #fff; letter-spacing: .06em; }
.pf-footer__logo span { color: var(--pf-accent); }
.pf-footer h4 { font-family: var(--pf-display); text-transform: uppercase; color: #fff; font-size: 1rem; margin: 0 0 16px; letter-spacing: .1em; }
.pf-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; font-size: .93rem; }
.pf-footer ul li { cursor: pointer; transition: color .2s, padding-left .2s; }
.pf-footer ul li:hover { color: var(--pf-accent); padding-left: 6px; }
.pf-social { display: flex; gap: 10px; margin-top: 18px; }
.pf-social a { width: 38px; height: 38px; border-radius: 4px; background: rgba(255,255,255,.07); color: #fff; display: grid; place-items: center; text-decoration: none; transition: .25s; }
.pf-social a:hover { background: var(--pf-accent); color: #fff; }
.pf-footer__bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 22px 0; font-size: .83rem; color: #4a5260; }

/* =============================================================
   TICKER ANIMATION
   ============================================================= */
@keyframes pf-tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================================
   REVEALS & UTILITY ANIMATIONS
   ============================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-36px); transition: opacity .9s ease, transform .9s ease; }
.reveal-right { opacity: 0; transform: translateX(36px);  transition: opacity .9s ease, transform .9s ease; }
.reveal-left.is-visible, .reveal-right.is-visible { opacity: 1; transform: none; }

.pf-checklist li { opacity: 0; transform: translateX(-14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible .pf-checklist li,
.reveal-right.is-visible .pf-checklist li,
.reveal-left.is-visible .pf-checklist li { opacity: 1; transform: none; }
.pf-checklist li:nth-child(1) { transition-delay: .1s; }
.pf-checklist li:nth-child(2) { transition-delay: .22s; }
.pf-checklist li:nth-child(3) { transition-delay: .34s; }
.pf-checklist li:nth-child(4) { transition-delay: .46s; }

.pf-skill-bar { opacity: 0; transform: translateX(12px); transition: opacity .45s ease, transform .45s ease; }
.pf-skill-bar.is-in-view { opacity: 1; transform: none; }

@keyframes pf-fadeUp    { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes pf-starPop   { 0% { transform: scale(0) rotate(-30deg); opacity: 0; } 70% { transform: scale(1.3) rotate(6deg); opacity: 1; } 100% { transform: scale(1) rotate(0); } }
@keyframes pf-floatIn   { 0% { opacity: 0; transform: translate(16px,16px) scale(.84) rotate(-4deg); } 60% { transform: translate(-2px,-2px) scale(1.02) rotate(1deg); } 100% { opacity: 1; transform: none; } }
@keyframes pf-pulse     { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); } 50% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } }

/* WhatsApp float */
.pf-whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9000;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center; font-size: 1.5rem;
  box-shadow: 0 8px 24px -6px rgba(37,211,102,.5);
  text-decoration: none;
  animation: pf-pulse 2.5s ease-in-out infinite;
  transition: transform .25s;
}
.pf-whatsapp-float:hover { transform: scale(1.1); }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1080px) {
  .pf-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .pf-hero__dots  { bottom: auto; position: relative; transform: none; left: auto; justify-content: center; margin: 16px 0; }
  .pf-hero__strip { grid-template-columns: 1fr; }
  .pf-strip-item  { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .pf-strip-item:last-child { border-bottom: 0; }
  .pf-about__grid, .pf-contact__grid, .pf-cta__grid, .pf-impact__grid { grid-template-columns: 1fr; }
  .pf-products, .pf-projects, .pf-blog { grid-template-columns: repeat(2,1fr); }
  .pf-reasons     { grid-template-columns: repeat(2,1fr); }
  .pf-caps__grid  { grid-template-columns: 1fr; }
  .pf-footer__grid { grid-template-columns: 1fr 1fr; }
  .pf-tslider__inner { grid-template-columns: 1fr; }
  .pf-tslider__photo { min-height: 220px; aspect-ratio: 16/7; }
  .pf-cta__actions { text-align: left; }
  .pf-caps__overlay-card { position: static; margin-top: 24px; animation: none; }
  .pf-about__visual { height: 420px; }
}
@media (max-width: 640px) {
  .pf-products, .pf-projects, .pf-blog, .pf-reasons { grid-template-columns: 1fr; }
  .pf-field-row   { grid-template-columns: 1fr; }
  .pf-footer__grid { grid-template-columns: 1fr; }
  .pf-checklist--2col { grid-template-columns: 1fr !important; }
  .pf-tslider__content { padding: 26px 20px 22px; }
  .pf-hero__title { font-size: clamp(2.4rem,11vw,4rem); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}