/* ===========================================================
   Landing-page layout system (derived from the PLJ Carpentry
   Elementor build). Structure only — every colour and font is a
   custom property, so a theme file can restyle the whole page
   without touching this one. See css/lp-prc.css for the PRC skin.
   Scoped to .plj so it never leaks into the rest of the site.
   =========================================================== */

.plj {
  --plj-yellow: #FFE200;
  --plj-yellow-2: #F9D801;
  --plj-amber: #F9B601;
  --plj-dark: #202020;
  --plj-darker: #131313;
  --plj-ink: #2F2F2F;
  --plj-gray: #B8B8B8;
  --plj-blue-ink: #163470;
  --plj-alt-bg: #F8F9FC;
  --plj-btn-ink: #202020;      /* text drawn on top of the accent */
  --plj-accent-head: var(--plj-yellow); /* headings on dark bands */
  --plj-head: "Arvo", Georgia, serif;
  --plj-body: "Poppins", system-ui, sans-serif;
  --plj-alt: "Montserrat", system-ui, sans-serif;
  --plj-wrap: 1600px;
  --plj-shadow: 0 9px 85px -45px rgba(4, 40, 183, .2);

  font-family: var(--plj-body);
  color: var(--plj-ink);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

.plj *, .plj *::before, .plj *::after { box-sizing: border-box; }
.plj h1, .plj h2, .plj h3, .plj h4 { font-family: var(--plj-head); line-height: 1.15; margin: 0; }
.plj p { margin: 0 0 1em; }
.plj p:last-child { margin-bottom: 0; }
.plj img { max-width: 100%; display: block; }
.plj a { color: inherit; text-decoration: none; }
.plj ul { list-style: none; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
.plj [id] { scroll-margin-top: 110px; }
.plj-wrap { width: 100%; max-width: var(--plj-wrap); margin: 0 auto; padding: 0 2rem; }
.plj-wrap--md { max-width: 1400px; }
.plj-wrap--sm { max-width: 1300px; }

/* Yellow rule used under every heading (faixa-amarela.svg) */
.plj-rule { width: 170px; height: 8px; border-radius: 4px; background: linear-gradient(100deg, var(--plj-amber), var(--plj-yellow)); margin: 1rem 0; }
.plj-rule--center { margin-inline: auto; }
.plj-rule--dark { background: linear-gradient(100deg, #3a3a3a, var(--plj-dark)); }

.plj-eyebrow { font-family: var(--plj-body); font-size: 1.2em; font-weight: 400; text-transform: uppercase; letter-spacing: 5.7px; color: var(--plj-dark); text-align: center; }
.plj-h2 { font-size: 2.4rem; font-weight: 700; letter-spacing: -.8px; color: var(--plj-dark); }
.plj-h3 { font-size: 2.6rem; font-weight: 600; letter-spacing: -2.7px; }
.plj-lead { font-size: 1rem; font-weight: 600; line-height: 1.7em; letter-spacing: -.1px; }

/* Scroll-entrance animations, applied by js/lp-layout.js. */
.plj [data-anim] { opacity: 0; will-change: opacity, transform; }
.plj [data-anim="up"] { transform: translate3d(0, 30px, 0); }
.plj [data-anim="left"] { transform: translate3d(-42px, 0, 0); }
.plj [data-anim="right"] { transform: translate3d(42px, 0, 0); }
.plj [data-anim="zoom"] { transform: scale(.93); }
.plj [data-anim].is-inview {
  opacity: 1; transform: none;
  transition: opacity .8s ease, transform .8s cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--anim-delay, 0ms);
}

/* ===== Buttons ===== */
.plj .plj-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--plj-body); font-weight: 700; font-size: 1rem;
  padding: .85rem 1.7rem; border: 1px solid rgba(0, 0, 0, .08); border-radius: 5px;
  color: var(--plj-btn-ink); background-image: linear-gradient(130deg, var(--plj-amber) 0%, var(--plj-yellow) 100%);
  cursor: pointer; transition: transform .25s ease, background-image .25s ease;
}
.plj .plj-btn:hover { background-image: linear-gradient(180deg, #FCEB79 0%, var(--plj-yellow) 100%); transform: scale(1.1); }
.plj-btn--upper { text-transform: uppercase; font-weight: 600; }

/* ===== Topbar ===== */
.plj-topbar { background: var(--plj-dark); padding: .7rem 0; box-shadow: 0 16px 41px -23px rgba(55, 73, 141, .21); position: relative; z-index: 99; }
.plj-topbar__inner { display: flex; justify-content: space-between; align-items: center; }
.plj-topbar a { display: inline-flex; align-items: center; gap: .6rem; color: #fff; font-family: var(--plj-alt); font-size: 14px; font-weight: 500; letter-spacing: .9px; }
.plj-topbar svg { width: 14px; height: 14px; fill: var(--plj-yellow); }

/* ===== Header ===== */
.plj-header { transition: padding .3s ease, box-shadow .3s ease; position: sticky; top: 0; z-index: 98; background: #fff; padding: .3rem 2rem; box-shadow: 0 16px 41px -23px rgba(55, 73, 141, .21); animation: pljSlideDown .5s ease backwards; }
.plj-header.is-stuck { padding-top: 0; padding-bottom: 0; box-shadow: 0 12px 30px -14px rgba(0, 0, 0, .35); }
.plj-brand img, .plj-brand svg, .plj-brand .plj-ph { transition: transform .3s ease, max-height .3s ease; transform-origin: left center; }
.plj-header.is-stuck .plj-brand img,
.plj-header.is-stuck .plj-brand svg,
.plj-header.is-stuck .plj-brand .plj-ph { transform: scale(.86); }

@keyframes pljSlideDown { from { transform: translate3d(0, -100%, 0); } to { transform: none; } }
.plj-header__inner { max-width: var(--plj-wrap); margin: 0 auto; display: flex; align-items: center; gap: 1rem; }
.plj-brand { flex: 0 0 12%; display: flex; align-items: center; }
.plj-nav { flex: 1; display: flex; justify-content: center; gap: .2rem; }
.plj-nav a { position: relative; font-family: var(--plj-head); font-weight: 700; font-size: .95rem; color: var(--plj-dark); padding: 1.4rem .95rem; }
.plj-nav a::after { content: ""; position: absolute; left: .95rem; right: .95rem; bottom: 1rem; height: 3px; background: var(--plj-yellow-2); transform: scaleX(0); transform-origin: center; transition: transform .25s ease; }
.plj-nav a:hover::after, .plj-nav a.is-active::after { transform: scaleX(1); }
.plj-header__cta { flex: 0 0 auto; }
.plj-burger { display: none; width: 45px; height: 40px; border: 0; border-radius: 3px; background: transparent; padding: 8px; cursor: pointer; }
.plj-burger span { display: block; height: 3px; margin: 4px 0; border-radius: 2px; background: rgba(0, 0, 0, .5); transition: transform .25s ease, opacity .25s ease; }
.plj-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.plj-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.plj-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile sticky call / text bar */
.plj-actionbar { display: none; position: sticky; top: 86px; z-index: 97; }
.plj-actionbar a { flex: 1 1 50%; min-height: 46px; display: flex; align-items: center; justify-content: center; gap: .5rem; font-family: var(--plj-body); font-weight: 600; font-size: 16px; }
.plj-actionbar__text { background: var(--plj-dark); color: #fff; }
.plj-actionbar__text svg { fill: var(--plj-yellow); }
.plj-actionbar__call { background: var(--plj-yellow-2); color: var(--plj-btn-ink); }
.plj-actionbar__call svg { fill: currentColor; }
.plj-actionbar svg { width: 20px; height: 20px; }

/* ===== Hero ===== */
.plj-hero { position: relative; min-height: 65vh; display: flex; align-items: center; padding: 3rem 5rem; overflow: hidden; z-index: 1; }
.plj-hero__media { position: absolute; inset: 0; z-index: -2; }
.plj-hero__media video, .plj-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.plj-hero::before { content: ""; position: absolute; inset: 0; background: var(--plj-dark); opacity: .57; z-index: -1; }
.plj-hero__inner { width: 100%; max-width: var(--plj-wrap); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem 0; }
.plj-hero__main { flex: 1 1 100%; display: flex; flex-direction: column; gap: 25px; }
.plj-hero__aside { flex: 0 0 60%; margin-left: auto; display: flex; align-items: flex-end; justify-content: flex-end; gap: 1rem; }
.plj-hero__badge { flex: 0 0 auto; }
.plj-hero h1 { font-family: var(--plj-head); font-size: 3rem; font-weight: 500; letter-spacing: -2.4px; color: #fff; }
.plj-hero h2 { font-size: 2.4rem; font-weight: 400; line-height: 1.2em; letter-spacing: -1px; color: #fff; text-shadow: 0 0 6px rgba(0, 0, 0, .3); }
.plj-hero h3 { font-size: 1.5rem; font-weight: 400; line-height: 1.2em; letter-spacing: -1px; color: #fff; text-shadow: 0 0 6px rgba(0, 0, 0, .3); }

/* Rotating headline */
.plj-rotator { display: inline-block; position: relative; vertical-align: bottom; transition: width .45s ease; }
.plj-rotator span { display: inline-block; font-weight: 900; letter-spacing: -1.7px; color: var(--plj-yellow); white-space: nowrap; }
.plj-rotator span:not(.is-active) { position: absolute; left: 0; top: 0; opacity: 0; pointer-events: none; }
.plj-rotator i { display: inline-block; font-style: normal; white-space: pre; backface-visibility: hidden; }
.plj-rotator span.is-active i { animation: pljLetterIn .5s cubic-bezier(.2, .6, .3, 1) both; animation-delay: calc(var(--i) * 50ms); }
.plj-rotator span.is-out i { animation: pljLetterOut .38s ease both; animation-delay: calc(var(--i) * 32ms); }
@keyframes pljLetterIn { from { opacity: 0; transform: rotateY(180deg) translateY(-.25em); } to { opacity: 1; transform: none; } }
@keyframes pljLetterOut { from { opacity: 1; transform: none; } to { opacity: 0; transform: rotateY(-180deg) translateY(.25em); } }
/* Fallback for the no-letters case (reduced motion). */
.plj-rotator span.is-active { animation: pljSwirl .6s ease both; }
@keyframes pljSwirl { from { opacity: 0; transform: rotateY(90deg) translateY(-10px); } to { opacity: 1; transform: none; } }

/* Typing headline (second section) */
.plj-typer { color: var(--plj-dark); font-weight: 900; letter-spacing: -1.7px; border-right: 3px solid var(--plj-amber); padding-right: 2px; }

/* ===== Multi-step form ===== */
.plj-glass { background: rgba(255, 255, 255, .10); box-shadow: 0 8px 32px rgba(31, 38, 135, .37); backdrop-filter: blur(9.5px); -webkit-backdrop-filter: blur(14.5px); border-radius: 20px; border: 1px solid rgba(255, 255, 255, .18); }
.plj-formwrap { width: 76%; }
.plj-form { padding: 4% 3% 3%; }
.plj-steps { display: flex; align-items: center; gap: 41px; margin-bottom: 1rem; }
.plj-steps__item { color: #fff; font-size: 15px; opacity: .55; white-space: nowrap; }
.plj-steps__item.is-active { opacity: 1; font-weight: 700; }
.plj-steps__sep { flex: 1; height: 2px; background: rgba(255, 255, 255, .55); }
.plj-form label { display: block; margin-bottom: 1em; font-size: 1.1em; color: #fff; }
.plj-form .plj-field { margin-bottom: 6px; }
.plj-form input[type="text"], .plj-form input[type="email"], .plj-form input[type="tel"], .plj-form select {
  width: 100%; padding: .75rem .9rem; font-family: var(--plj-body); font-size: 1rem; color: #252525;
  background: #fff; border: 1px solid #D1D1D1; border-radius: 5px;
}
.plj-form input:focus, .plj-form select:focus { outline: 2px solid var(--plj-yellow-2); outline-offset: 1px; }
.plj-form__hint { color: #fff; font-weight: 600; padding-bottom: .35rem; }
.plj-consent { display: flex; gap: .6rem; align-items: flex-start; color: #fff; font-size: .8rem; line-height: 1.5; }
.plj-consent input { margin-top: .35rem; flex: 0 0 auto; }
.plj-consent a { text-decoration: underline; }
.plj-form__buttons { display: flex; gap: 14px; margin-top: 1rem; }
.plj-form__btn--submit { transition: transform .3s ease, background .2s ease, color .2s ease; }
.plj-form__btn--submit:hover { transform: scale(.93); }
.plj-form__btn { flex: 1; padding: .95rem 1.2rem; border: 0; border-radius: 5px; font-family: var(--plj-body); font-size: 17px; font-weight: 600; cursor: pointer; transition: background .2s ease, color .2s ease; }
.plj-form__btn--next, .plj-form__btn--submit { background: var(--plj-yellow-2); color: var(--plj-btn-ink); }
.plj-form__btn--next:hover, .plj-form__btn--submit:hover { color: #fff; }
.plj-form__btn--prev { background: #7D7D7D; color: #fff; flex: 0 0 35%; }
.plj-form__btn--prev:hover { background: #424242; }
.plj-form__step[hidden] { display: none; }
.plj-form__status { margin-top: .75rem; color: #fff; font-size: .9rem; min-height: 1.2em; }
.plj-form__status.is-error { color: #FFB4AB; }
.plj-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Rating strip */
.plj-rating { display: flex; align-items: center; justify-content: center; gap: 15px; flex-wrap: wrap; }
.plj-stars { color: var(--plj-yellow); font-size: 16px; letter-spacing: 1px; }
.plj-rating p { color: #fff; font-size: 15px; font-weight: 600; margin: 0; text-shadow: 0 1px 17px rgba(5, 39, 62, .65); }

/* ===== What we build ===== */
.plj-build { background: var(--plj-alt-bg); padding: 6% 2% 5%; text-align: center; }
.plj-build__intro { max-width: 60%; margin: 1rem auto; }
.plj-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1329px; margin: 0 auto; }
.plj-cards--3 { grid-template-columns: repeat(3, 1fr); max-width: 1180px; }
.plj-card { background: #fff; border-radius: 20px; box-shadow: var(--plj-shadow); padding: 1.5em 1em; display: flex; flex-direction: column; align-items: center; gap: 1rem; transition: transform .35s ease, box-shadow .35s ease; }
.plj-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px -28px rgba(0, 0, 0, .45); }
.plj-card__icon { width: 84px; height: 84px; display: grid; place-items: center; }
.plj-card__icon svg { width: 100%; height: 100%; fill: none; stroke: var(--plj-dark); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.plj-card h3 { font-size: 1.7rem; font-weight: 800; letter-spacing: -1px; text-transform: capitalize; color: var(--plj-dark); }
.plj-card p { color: var(--plj-blue-ink); font-family: var(--plj-alt); font-size: 17px; line-height: 22px; letter-spacing: .6px; }

/* ===== Split sections ===== */
.plj-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; padding: 6% 4%; max-width: 1400px; margin: 0 auto; }
.plj-split__media img { width: 100%; border-radius: 12px; }
.plj-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 1.5rem; }
.plj-checklist li { display: flex; gap: 5px; align-items: flex-start; font-family: var(--plj-head); font-size: 1.3rem; font-weight: 700; line-height: 1.4em; letter-spacing: -1.2px; color: var(--plj-dark); }
.plj-checklist svg { flex: 0 0 22px; width: 22px; height: 22px; margin-top: .35rem; fill: var(--plj-yellow); }

/* Trust / choose */
.plj-trust { display: grid; grid-template-columns: 37% 1fr; gap: 11%; align-items: stretch; padding: 6rem 0; background: #fff; }
.plj-trust__badges { display: flex; flex-direction: column; justify-content: center; gap: 1.2em; }
.plj-trust__row { display: flex; align-items: center; justify-content: center; gap: 1.2em; }
.plj-trust__body { display: flex; flex-direction: column; justify-content: center; gap: 26px; }

/* Dark expert section */
.plj-expert { position: relative; background-image: linear-gradient(220deg, var(--plj-dark) 0%, #232323 100%); padding: 2rem 0 11rem; color: #fff; }
.plj-expert .plj-split { padding-bottom: 0; }
.plj-expert h3 { color: var(--plj-accent-head); }
.plj-expert p { color: #fff; }
.plj-expert__badges img, .plj-expert__badges .plj-ph,
.plj-trust__badges img, .plj-trust__badges .plj-ph,
.plj-brand img, .plj-brand .plj-ph { max-width: 220px; }
.plj-brand .plj-ph, .plj-brand img { max-height: 74px; }
.plj-expert__badges { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin: 1rem 0; }
.plj-expert::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 161px; background: #fff; clip-path: polygon(0 100%, 0 0, 50% 95%, 100% 0, 100% 100%); pointer-events: none; }

/* ===== Services carousel ===== */
.plj-services { padding: 4rem 0 2rem; text-align: center; }
.plj-carousel { position: relative; margin-top: 2rem; }
.plj-carousel__viewport { overflow: hidden; }
.plj-carousel__track { display: flex; gap: 10px; transition: transform .5s ease; }
.plj-slide { position: relative; flex: 0 0 calc((100% - 20px) / 3); min-height: 500px; border-radius: 4px; overflow: hidden; display: flex; align-items: flex-end; text-align: left; background-size: cover; background-position: center; }
.plj-slide::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(180deg, rgba(0,0,0,.2) 54%, #030303 100%); }
.plj-slide__body { position: relative; padding: 7%; }
.plj-slide h3 { font-size: 33px; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.plj-slide p { font-family: var(--plj-body); font-size: 17px; font-weight: 400; line-height: 1.4em; color: #fff; }
.plj-carousel__btn { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(0, 0, 0, .5); color: #fff; font-size: 22px; line-height: 1; cursor: pointer; z-index: 2; }
.plj-carousel__btn:hover { background: var(--plj-yellow); color: var(--plj-dark); }
.plj-carousel__btn--prev { left: 26px; }
.plj-carousel__btn--next { right: 26px; }
.plj-dots { display: flex; justify-content: center; gap: 8px; margin-top: 1.25rem; }
.plj-dots button { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 50%; background: #d4d4d4; cursor: pointer; }
.plj-dots button.is-active { background: var(--plj-dark); }

/* ===== Portfolio ===== */
.plj-portfolio { padding: 4% 2%; text-align: center; }
.plj-portfolio__note { font-family: "Lora", Georgia, serif; font-size: 23px; font-weight: 600; margin: 1rem 0 2rem; }
.plj-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 2rem; }
.plj-filters button { position: relative; border: 0; background: none; padding: .5rem 0; font-family: var(--plj-head); font-weight: 700; font-size: 1rem; color: #686868; cursor: pointer; }
.plj-filters button::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--plj-amber); transform: scaleX(0); transition: transform .3s ease; }
.plj-filters button.is-active { color: var(--plj-dark); }
.plj-filters button.is-active::after, .plj-filters button:hover::after { transform: scaleX(1); }
.plj-gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.plj-gallery--3 { grid-template-columns: repeat(3, 1fr); max-width: 1180px; }
.plj-gallery__item { position: relative; aspect-ratio: 3 / 2; border-radius: 4px; overflow: hidden; border: 0; padding: 0; cursor: zoom-in; background: #e9e9e9; }
.plj-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.plj-gallery__item::after { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, .5); opacity: 0; transition: opacity .8s ease; }
.plj-gallery__item:hover::after, .plj-gallery__item:focus-visible::after { opacity: 1; }
.plj-gallery__item:hover img { transform: scale(1.1); }
.plj-gallery__cap { position: absolute; inset: auto 0 0; z-index: 2; padding: 20px; color: #fff; font-size: .85rem; text-align: center; opacity: 0; transition: opacity .8s ease .2s; }
.plj-gallery__item:hover .plj-gallery__cap, .plj-gallery__item:focus-visible .plj-gallery__cap { opacity: 1; }

/* Lightbox */
.plj-lightbox { position: fixed; inset: 0; z-index: 999; display: none; place-items: center; background: rgba(0, 0, 0, .92); padding: 2rem; }
.plj-lightbox[open], .plj-lightbox.is-open { display: grid; }
.plj-lightbox img { max-width: min(1100px, 92vw); max-height: 82vh; object-fit: contain; }
.plj-lightbox__cap { color: #fff; text-align: center; margin-top: 1rem; font-size: .9rem; }
.plj-lightbox button { position: absolute; border: 0; background: rgba(255, 255, 255, .12); color: #fff; width: 46px; height: 46px; border-radius: 50%; font-size: 24px; cursor: pointer; }
.plj-lightbox__close { top: 1.5rem; right: 1.5rem; }
.plj-lightbox__prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.plj-lightbox__next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ===== Testimonials ===== */
.plj-testimonials { background: #F2F2F2; padding: 40px 40px 0; text-align: center; }
.plj-reviews { background: #F2F2F2; padding: 2% 2% 4%; }
.plj-reviews__inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 260px 1fr; gap: 2rem; align-items: start; }
.plj-reviews__summary { text-align: center; background: #fff; border-radius: 10px; padding: 1.5rem; box-shadow: 0 4px 18px rgba(0, 0, 0, .07); }
.plj-reviews__summary strong { display: block; font-family: var(--plj-head); font-size: 1.35rem; text-transform: uppercase; }
.plj-reviews__summary .plj-stars { font-size: 22px; }
.plj-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.plj-review { background: #fff; border-radius: 10px; padding: 1.25rem; box-shadow: 0 4px 18px rgba(0, 0, 0, .07); text-align: left; }
.plj-review__head { display: flex; align-items: center; gap: .7rem; margin-bottom: .5rem; }
.plj-review__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--plj-dark); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--plj-head); flex: 0 0 auto; }
.plj-review__name { font-weight: 600; font-size: .95rem; }
.plj-review p { font-size: .88rem; line-height: 1.55; color: #444; margin: .5rem 0 0; }
.plj-review__more { border: 0; background: none; padding: 0; margin-top: .5rem; color: #1a73e8; font-size: .85rem; cursor: pointer; }
.plj-review__text.is-clamped { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }

/* ===== About ===== */
.plj-about { background: #fff; box-shadow: 0 42px 100px rgba(49, 92, 203, .5); padding: 6rem 6rem 8rem; position: relative; }
.plj-about__inner { max-width: 1300px; margin: 0 auto; text-align: center; }
.plj-about p { text-align: justify; font-size: 1.2rem; color: var(--plj-dark); }
.plj-about h4 { font-size: 2.3rem; font-weight: 700; letter-spacing: -.8px; color: var(--plj-dark); }
.plj-about::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 106px; background: #0E0E0E; clip-path: polygon(0 0, 50% 92%, 100% 0, 100% 100%, 0 100%); }

/* ===== Contact ===== */
.plj-contact { background: var(--plj-darker); padding: 6rem 6rem 8rem; }
.plj-contact__inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 55.8% 1fr; gap: 2rem; align-items: center; }
.plj-contact h4 { font-size: 1.9vw; font-weight: 700; letter-spacing: -.8px; color: var(--plj-accent-head); margin-bottom: 1rem; }
.plj-contact__list li { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: 1rem; font-family: var(--plj-alt); font-size: 21px; font-weight: 600; line-height: 1.6em; letter-spacing: -.3px; color: #fff; }
.plj-contact__list svg { flex: 0 0 22px; width: 22px; height: 22px; margin-top: .45rem; fill: var(--plj-yellow); }
.plj-contact__card { margin-top: -10%; padding: 0 7% 0 0; }
.plj-contact__card h4 { font-family: var(--plj-alt); font-size: 26px; font-weight: 700; text-transform: capitalize; line-height: 1.4em; letter-spacing: -1.5px; color: #fff; text-align: center; }
.plj-contact .plj-formwrap { width: 100%; }
.plj-contact .plj-rating { justify-content: flex-start; margin-top: .5rem; }

/* ===== Map ===== */
.plj-map iframe { display: block; width: 100%; height: 400px; border: 0; filter: brightness(58%) contrast(200%) saturate(0%); }

/* ===== Final CTA ===== */
.plj-cta { position: relative; background: #fff; padding: 2rem 0 5rem; text-align: center; overflow: hidden; }
.plj-cta__saw { width: 51%; max-width: 640px; margin: 0 auto; opacity: .9; }
.plj-cta__saw svg { width: 100%; height: auto; transform: translateY(var(--saw-y, 0px)) rotate(var(--saw-r, 0deg)); }
.plj-cta__box { position: relative; z-index: 5; max-width: 50%; margin: -8% auto 0; padding: 2rem; border-radius: 20px; background-image: linear-gradient(180deg, var(--plj-yellow) 0%, var(--plj-amber) 100%); }
.plj-cta__box h2 { font-size: 2.3rem; font-weight: 800; letter-spacing: -.8px; color: var(--plj-btn-ink); }

/* ===== Footer ===== */
.plj-footer { background: var(--plj-dark); background-image: radial-gradient(120% 100% at 50% 100%, #2c2c2c 0%, var(--plj-dark) 60%); color: #fff; padding: 6rem 2rem 3rem; }
.plj-footer__inner { max-width: 1280px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-around; gap: 8px; }
.plj-footer__col { display: flex; flex-direction: column; gap: 16px; }
.plj-footer__col--brand { flex: 0 0 20%; }
.plj-footer__col--phone { flex: 0 0 20%; }
.plj-footer__col--office { flex: 0 0 30%; }
.plj-footer__col--hours { flex: 0 0 30%; }
.plj-footer h2 { font-family: var(--plj-head); font-size: 1.3rem; font-weight: 700; color: var(--plj-accent-head); }
.plj-footer p, .plj-footer li { font-family: var(--plj-body); font-size: 14px; color: #fff; }
.plj-footer__line { display: flex; flex-wrap: wrap; gap: 10px; padding-bottom: 1rem; }
.plj-footer__line span, .plj-footer__line a { font-size: 1rem; font-weight: 500; line-height: 1.7em; color: #fff; }
.plj-footer__row { display: flex; justify-content: space-between; gap: 10px; }
.plj-social { display: flex; gap: 5px; }
.plj-social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--plj-dark); border: 1px solid rgba(255,255,255,.2); }
.plj-social a:nth-child(2) { background: #FF2253; }
.plj-social a:nth-child(3) { background: #00D4FF; }
.plj-social svg { width: 23px; height: 23px; fill: #fff; }
.plj-copyright { background: #FFCB28; padding: 1rem 2rem; text-align: center; }
.plj-copyright a { font-family: var(--plj-head); font-size: 1rem; font-weight: 700; color: var(--plj-btn-ink); }

/* Placeholder blocks for the imagery that ships with the real site */
.plj-ph { position: relative; display: grid; place-items: center; width: 100%; aspect-ratio: 16 / 10; border-radius: 12px; background: repeating-linear-gradient(45deg, #ececec 0 12px, #f6f6f6 12px 24px); color: #8a8a8a; font-family: var(--plj-alt); font-size: .78rem; letter-spacing: .5px; text-align: center; padding: 1rem; }
.plj-ph--badge { aspect-ratio: 3 / 2; max-width: 220px; background: repeating-linear-gradient(45deg, #f3f3f3 0 12px, #fafafa 12px 24px); }
.plj-ph--dark { background: repeating-linear-gradient(45deg, #2b2b2b 0 12px, #333 12px 24px); color: #9d9d9d; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .plj-topbar { display: none; }
  .plj-nav {
    display: flex; flex-direction: column; align-items: stretch;
    position: fixed; top: 0; left: 0; bottom: 0; width: min(350px, 84vw);
    background: var(--plj-dark); padding: 4.5rem 0 1rem; z-index: 120;
    transform: translate3d(-100%, 0, 0); transition: transform .35s cubic-bezier(.22, .61, .36, 1);
    overflow-y: auto; visibility: hidden;
  }
  .plj-nav.is-open { transform: none; visibility: visible; }
  .plj-navclose {
    position: absolute; top: 12px; right: 12px; width: 45px; height: 45px;
    display: grid; place-items: center; border: 0; border-radius: 3px;
    background: rgba(255, 255, 255, .1); color: var(--plj-yellow);
    font-size: 25px; line-height: 1; cursor: pointer;
  }
  .plj-navoverlay {
    position: fixed; inset: 0; z-index: 110; background: rgba(0, 0, 0, .55);
    opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s;
  }
  .plj-navoverlay.is-open { opacity: 1; visibility: visible; }
  .plj-nav a { color: rgba(255, 226, 0, .68); font-size: 17px; line-height: 2.2em; padding: .5rem 1.5rem; }
  .plj-nav a:hover { color: var(--plj-yellow); }
  .plj-nav a::after { display: none; }
  .plj-header { position: sticky; padding: 6px 1rem; }
  .plj-header__inner { justify-content: space-between; }
  .plj-brand { flex: 0 0 35%; }
  .plj-burger { display: block; order: 3; }
  .plj-header__cta .plj-btn { font-size: .8rem; padding: .7rem 1rem; }
  .plj-actionbar { display: flex; }
  .plj-hero { min-height: 550px; padding: 5%; }
  .plj-hero__inner { flex-wrap: wrap; justify-content: center; }
  .plj-hero__main { align-items: center; text-align: center; }
  .plj-hero h1, .plj-hero h2, .plj-hero h3 { text-align: center; }
  .plj-hero h1 { font-size: 2.4rem; }
  .plj-hero__aside { flex: 1 1 100%; margin-left: 0; flex-wrap: wrap; justify-content: center; align-items: center; }
  .plj-formwrap { width: 80%; }
  .plj-build__intro { max-width: 731px; }
  .plj-cards, .plj-cards--3 { grid-template-columns: repeat(2, 1fr); }
  .plj-split { grid-template-columns: 1fr; padding: 0 4% 4%; }
  .plj-trust { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 2rem 0; }
  .plj-slide { flex-basis: calc((100% - 10px) / 2); }
  .plj-gallery, .plj-gallery--3 { grid-template-columns: repeat(2, 1fr); }
  .plj-reviews__inner { grid-template-columns: 1fr; }
  .plj-reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .plj-about, .plj-contact { padding: 3rem 2rem 7rem; }
  .plj-contact__inner { grid-template-columns: 1fr; }
  .plj-contact h4 { font-size: 2rem; }
  .plj-contact__card { margin-top: 0; padding: 0; }
  .plj-cta__box { max-width: none; margin: -5rem 4rem 0; padding: 3rem; }
  .plj-footer__col { flex: 0 0 47%; }
}

@media (max-width: 767px) {
  .plj-wrap { padding: 0 1rem; }
  .plj-hero { min-height: 625px; padding: 6% 0 16%; }
  .plj-hero h1 { font-size: 2rem; }
  .plj-hero h2, .plj-hero h3 { font-size: 1.2rem; letter-spacing: -.4px; }
  .plj-formwrap { width: 100%; }
  .plj-form { padding: 1rem; }
  .plj-rating { gap: 8px; }
  .plj-rating p { font-size: 13px; }
  .plj-hero__badge { flex: 0 1 46%; }
  .plj-expert__badges img, .plj-expert__badges .plj-ph,
  .plj-trust__badges img, .plj-trust__badges .plj-ph,
  .plj-hero__badge img, .plj-hero__badge .plj-ph { max-width: 100%; }
  .plj-steps { gap: 12px; }
  .plj-form__btn { font-size: 15px; }
  .plj-build { padding: 3rem 0; }
  .plj-build__intro { max-width: none; padding: 1rem 2rem; font-size: .9rem; line-height: 1.5em; }
  .plj-h2 { font-size: 1.6rem; }
  .plj-h3 { font-size: 2.2rem; letter-spacing: -.7px; }
  .plj-checklist { grid-template-columns: 1fr; }
  .plj-checklist li { font-size: 1.1rem; letter-spacing: 0; }
  .plj-slide { flex-basis: 100%; min-height: 360px; }
  .plj-gallery, .plj-gallery--3 { grid-template-columns: 1fr; }
  .plj-reviews__grid { grid-template-columns: 1fr; }
  .plj-about, .plj-contact { padding: 20px 20px 50px; }
  .plj-about p { font-size: .9rem; }
  .plj-contact__list li { font-size: 15px; }
  .plj-cta { padding-bottom: 6rem; }
  .plj-cta__saw { width: 90%; }
  .plj-cta__box { margin: -5rem 0 0; padding: 30px; }
  .plj-cta__box h2 { font-size: 1.6rem; }
  .plj-footer { padding: 3rem 1rem 1rem; }
  .plj-footer__col { flex: 0 0 100%; }
  .plj-copyright a { font-size: .9rem; line-height: 1.4em; }
}

@media (prefers-reduced-motion: reduce) {
  .plj-cta__saw svg, .plj-rotator span.is-active, .plj-rotator i, .plj-header { animation: none; }
  .plj [data-anim] { opacity: 1; transform: none; }
  .plj-nav { transition: none; }
  .plj-carousel__track { transition: none; }
}
