@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700&family=DM+Sans:wght@400;500;700&display=swap");
@import url("./design-tokens.css");

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--px-black);
  color: var(--px-white-tint);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  --curtain-reveal-duration: 3.4s;
  --curtain-reveal-delay: 0.38s;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100dvh;
  background:
    radial-gradient(circle at 18% 12%, rgba(233, 155, 64, 0.23), transparent 34rem),
    radial-gradient(circle at 78% 8%, rgba(233, 155, 64, 0.12), transparent 22rem),
    linear-gradient(145deg, #222021 0%, #2C2017 46%, #222021 100%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  transition: background 220ms var(--ease-out), border-color 220ms var(--ease-out), backdrop-filter 220ms var(--ease-out);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(253, 253, 253, 0.08);
  background: rgba(34, 32, 33, 0.86);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(100% - 32px, 1320px);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 276px;
  height: 76px;
  padding: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #FDFDFD, #DCDBDB);
  box-shadow: 0 12px 28px rgba(233, 155, 64, 0.20);
  overflow: hidden;
  text-decoration: none;
}

.brand-link img {
  width: 276px;
  height: 76px;
  object-fit: cover;
  object-position: center 50%;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.075em;
}

.main-nav a,
.services-trigger {
  color: rgba(253, 253, 253, 0.76);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.main-nav a:hover,
.services-menu:hover .services-trigger,
.main-nav a:focus-visible,
.services-trigger:focus-visible {
  color: var(--px-white-tint);
  outline: none;
}

.main-nav a:active,
.services-trigger:active {
  transform: translateY(1px);
}

.services-menu {
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.services-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -22px;
  width: 340px;
  height: 16px;
}

.services-trigger {
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  padding: 12px 0;
}

.services-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: -18px;
  width: 320px;
  max-height: min(70dvh, 460px);
  display: grid;
  gap: 2px;
  padding: 12px;
  margin-top: 0;
  border: 1px solid rgba(253, 253, 253, 0.12);
  border-radius: var(--radius-md);
  background: rgba(34, 32, 33, 0.96);
  box-shadow: var(--shadow-dark);
  opacity: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
  z-index: 50;
}

.services-menu:hover .services-dropdown,
.services-menu:focus-within .services-dropdown,
.services-menu.is-open .services-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.services-dropdown::-webkit-scrollbar {
  width: 8px;
}

.services-dropdown::-webkit-scrollbar-track {
  background: rgba(253, 253, 253, 0.06);
}

.services-dropdown::-webkit-scrollbar-thumb {
  background: rgba(233, 155, 64, 0.62);
  border-radius: 999px;
}

.services-dropdown a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: rgba(253, 253, 253, 0.78);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.services-dropdown a:hover,
.services-dropdown a:focus-visible {
  background: rgba(233, 155, 64, 0.16);
  color: var(--px-white-tint);
}

.header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  flex: 0 0 auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgba(253, 253, 253, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(34, 32, 33, 0.26);
  color: rgba(253, 253, 253, 0.82);
  font-family: var(--font-display);
  font-size: 0;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  transition: transform 190ms var(--ease-out), border-color 190ms var(--ease-out), background 190ms var(--ease-out), color 190ms var(--ease-out);
}

.phone-link::before {
  content: "CALL NOW";
  color: #F5A623;
  font-size: 14px;
  letter-spacing: 0.09em;
}

.phone-link::after {
  content: "0433 947 048";
  color: var(--px-white-tint);
  font-size: 18px;
  letter-spacing: 0.055em;
}

.phone-link:hover,
.phone-link:focus-visible {
  border-color: rgba(245, 166, 35, 0.72);
  background: rgba(245, 166, 35, 0.10);
  outline: none;
  transform: translateY(-1px);
}

.phone-link:active {
  transform: translateY(1px) scale(0.99);
}

.cta-button,
.ghost-button,
.emergency-button {
  flex: 0 0 auto;
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 190ms var(--ease-out), background 190ms var(--ease-out), border-color 190ms var(--ease-out), color 190ms var(--ease-out);
}

.cta-button {
  border: 1px solid rgba(233, 155, 64, 0.84);
  background: var(--px-blue);
  color: #2C2017;
  box-shadow: var(--shadow-blue);
}

.header-actions .cta-button {
  min-width: 196px;
  min-height: 52px;
  padding: 15px 22px;
  font-size: 18px;
  letter-spacing: 0.075em;
}

.cta-button:hover,
.cta-button:focus-visible {
  background: #E99B40;
  outline: none;
  transform: translateY(-2px);
}

.cta-button:active,
.ghost-button:active,
.emergency-button:active {
  transform: translateY(1px) scale(0.99);
}

.mobile-nav-call-btn {
  display: none;
}

.ghost-button {
  border: 1px solid rgba(253, 253, 253, 0.20);
  color: var(--px-white-tint);
  background: rgba(253, 253, 253, 0.04);
}

.ghost-button:hover,
.ghost-button:focus-visible {
  border-color: rgba(233, 155, 64, 0.72);
  color: var(--px-amber);
  outline: none;
  transform: translateY(-2px);
}

.emergency-button {
  isolation: isolate;
  overflow: visible;
  border: 1px solid rgba(253, 253, 253, 0.22);
  background:
    linear-gradient(135deg, rgba(248, 72, 50, 0.98), rgba(128, 27, 24, 0.98)),
    #B3261E;
  color: var(--px-white-tint);
  box-shadow:
    inset 0 1px 0 rgba(253, 253, 253, 0.18),
    0 18px 42px rgba(179, 38, 30, 0.28),
    0 0 0 1px rgba(179, 38, 30, 0.16);
}

.emergency-button::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--px-white-tint);
  box-shadow: 0 0 0 5px rgba(253, 253, 253, 0.12);
}

.emergency-button::after {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 1px solid rgba(248, 72, 50, 0.58);
  border-radius: inherit;
  opacity: 0.54;
  animation: emergency-pulse 1.55s var(--ease-out) infinite;
  pointer-events: none;
}

.emergency-button:hover,
.emergency-button:focus-visible {
  background:
    linear-gradient(135deg, rgba(255, 89, 64, 0.98), rgba(150, 31, 26, 0.98)),
    #B3261E;
  border-color: rgba(253, 253, 253, 0.34);
  color: var(--px-white-tint);
  outline: none;
  transform: translateY(-2px);
}

.switchboard-emergency-button {
  border-color: #B91C1C;
  background: #B91C1C;
  color: var(--px-white-tint);
  box-shadow:
    inset 0 1px 0 rgba(253, 253, 253, 0.16),
    0 18px 42px rgba(185, 28, 28, 0.28);
}

.switchboard-emergency-button::before {
  background: #EF4444;
  box-shadow:
    0 0 0 2px rgba(253, 253, 253, 0.88),
    0 0 0 6px rgba(239, 68, 68, 0.22);
}

.switchboard-emergency-button:hover,
.switchboard-emergency-button:focus-visible {
  border-color: #B91C1C;
  background: #B91C1C;
  color: var(--px-white-tint);
}

@keyframes emergency-pulse {
  0% {
    opacity: 0.54;
    transform: scale(0.98);
  }
  72%,
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(253, 253, 253, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(253, 253, 253, 0.05);
  color: var(--px-white-tint);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100dvh;
  padding: 112px 0 72px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(34, 32, 33, 0.84) 0%, rgba(34, 32, 33, 0.62) 32%, rgba(44, 32, 23, 0.10) 60%, rgba(34, 32, 33, 0.18) 100%),
    radial-gradient(circle at 70% 24%, rgba(233, 155, 64, 0.08), transparent 30rem),
    linear-gradient(180deg, rgba(34, 32, 33, 0.08), rgba(34, 32, 33, 0.34));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: linear-gradient(rgba(253, 253, 253, 0.010) 1px, transparent 1px), linear-gradient(90deg, rgba(253, 253, 253, 0.008) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 84%);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: saturate(1.04) contrast(1.02) brightness(1);
}

.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.08;
  mix-blend-mode: soft-light;
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, 1320px);
  min-height: calc(100dvh - 184px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.30fr);
  align-items: start;
  gap: clamp(36px, 6vw, 92px);
}

.hero-copy {
  align-self: start;
  padding: 24px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--px-amber);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(54px, 7vw, 104px);
  font-weight: 700;
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--px-blue);
}

#pain-title span,
#process-title span,
#offer-title span,
#testimonials-title span,
#about-title span,
#projects-title span,
#final-cta-title span {
  color: var(--px-blue);
}

.hero-lede {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(253, 253, 253, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 940px);
  margin-top: 38px;
  border-top: 1px solid rgba(253, 253, 253, 0.20);
  border-bottom: 1px solid rgba(253, 253, 253, 0.14);
  background: transparent;
}

.proof-item {
  position: relative;
  min-height: 104px;
  padding: 20px 24px 19px;
  border-right: 1px solid rgba(253, 253, 253, 0.16);
  background: transparent;
  transition: background 220ms var(--ease-out);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item:hover {
  background: rgba(253, 253, 253, 0.055);
}

.proof-value {
  display: block;
  color: var(--px-amber);
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
}

.proof-label {
  display: block;
  max-width: 18ch;
  margin-top: 12px;
  color: rgba(253, 253, 253, 0.74);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.42;
}

.odometer {
  overflow: hidden;
  height: 1.08em;
  display: inline-flex;
  align-items: flex-start;
}

.proof-value.odometer {
  display: inline-flex;
}

.stats-grid strong.odometer {
  display: inline-flex;
}

.odo-digit {
  display: inline-block;
  height: 1.08em;
  overflow: hidden;
}

.odo-strip {
  display: flex;
  flex-direction: column;
  transition: transform 1.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.odo-strip span {
  display: block;
  height: 1.08em;
  line-height: 1.08;
}

.stat-suffix {
  display: inline-block;
  height: 1.08em;
  line-height: 1.08;
}

.curtain-left,
.curtain-right {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 60;
  width: 50%;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(245, 166, 35, 0.11), transparent 22rem),
    radial-gradient(circle at 50% 50%, rgba(253, 253, 253, 0.045), transparent 18rem),
    linear-gradient(145deg, #0C0C0B 0%, #151311 48%, #080808 100%);
  overflow: hidden;
  pointer-events: none;
  animation-duration: var(--curtain-reveal-duration);
  animation-delay: var(--curtain-reveal-delay);
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: forwards;
}

.curtain-left::before,
.curtain-right::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(90deg, rgba(253, 253, 253, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(253, 253, 253, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mix-blend-mode: screen;
}

.curtain-left::after,
.curtain-right::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.curtain-left {
  left: 0;
  justify-content: flex-end;
  border-right: 1px solid rgba(245, 166, 35, 0.24);
  animation-name: curtain-open-left;
}

.curtain-right {
  right: 0;
  justify-content: flex-start;
  border-left: 1px solid rgba(245, 166, 35, 0.24);
  animation-name: curtain-open-right;
}

.curtain-visual {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 28px;
}

.curtain-logo-wrap {
  position: relative;
  width: min(360px, 58vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  filter:
    drop-shadow(0 20px 42px rgba(0, 0, 0, 0.46))
    drop-shadow(0 0 26px rgba(245, 166, 35, 0.10));
}

.curtain-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(245, 166, 35, 0.22), rgba(245, 166, 35, 0.075) 34%, transparent 68%);
  opacity: 0;
  transform: scale(0.86);
  animation: curtain-power-glow var(--curtain-reveal-duration) cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.curtain-logo-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.96);
  animation: curtain-logo-power var(--curtain-reveal-duration) cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.curtain-current {
  position: absolute;
  z-index: 2;
  top: 47%;
  left: 48%;
  width: 42%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(253, 253, 253, 0.88) 34%, #F5A623 58%, transparent 100%);
  box-shadow:
    0 0 10px rgba(253, 253, 253, 0.70),
    0 0 22px rgba(245, 166, 35, 0.74),
    0 0 46px rgba(245, 166, 35, 0.28);
  opacity: 0;
  transform: translateX(-44%) rotate(-25deg) scaleX(0.08);
  transform-origin: left center;
  animation: curtain-current-pass 2.25s cubic-bezier(0.16, 1, 0.3, 1) var(--curtain-reveal-delay) forwards;
}

.curtain-spark {
  position: absolute;
  z-index: 2;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #F5A623;
  box-shadow:
    0 0 10px rgba(253, 253, 253, 0.68),
    0 0 18px rgba(245, 166, 35, 0.88);
  opacity: 0;
  transform: scale(0.4);
  animation: curtain-spark-pop 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.spark-one {
  top: 35%;
  left: 71%;
  animation-delay: 0.72s;
}

.spark-two {
  top: 51%;
  left: 80%;
  animation-delay: 0.92s;
}

.spark-three {
  top: 61%;
  left: 66%;
  animation-delay: 1.08s;
}

@media (max-width: 720px) {
  .curtain-visual {
    padding: 20px;
  }

  .curtain-logo-wrap {
    width: min(280px, 70vw);
  }

  .curtain-current {
    height: 2px;
  }
}

.particle,
.ring {
  position: fixed;
  pointer-events: none;
}

.particle {
  z-index: 70;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.ring {
  z-index: 69;
  border-radius: 50%;
  border: 2px solid var(--px-blue);
}

.next-band {
  position: relative;
  z-index: 3;
  padding: 28px 0;
  border-top: 1px solid rgba(253, 253, 253, 0.10);
  border-bottom: 1px solid rgba(253, 253, 253, 0.10);
  background: #222021;
  overflow: hidden;
}

.danger-band {
  background: #B91C1C;
  border-top-color: rgba(255, 255, 255, 0.18);
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.danger-band .marquee-track span {
  color: #FFFFFF;
}

.wide-wrap {
  width: min(100% - 32px, 1320px);
  margin: 0 auto;
}

.section-pad {
  padding: clamp(82px, 10vw, 152px) 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--px-amber);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-kicker::before {
  content: none;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) auto;
  align-items: end;
  gap: 28px;
  margin-bottom: 48px;
}

.section-head.compact {
  display: block;
  max-width: 780px;
}

.section-head h2,
.pain-grid h2,
.process-grid h2,
.testimonial-grid h2,
.about-grid h2,
.final-cta h2 {
  margin: 0;
  color: var(--px-white-tint);
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--px-blue);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--px-amber);
  outline: none;
  transform: translateX(4px);
}

.pain-section {
  background: var(--px-paper);
  color: var(--px-ink);
}

.pain-section.section-pad {
  padding-top: 0;
  padding-bottom: 0;
}

.pain-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: stretch;
  min-height: clamp(640px, 58vw, 820px);
}

.pain-grid h2 {
  color: var(--px-ink);
}

.pain-visual {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--px-black);
}

.pain-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.pain-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(34, 32, 33, 0.02), rgba(34, 32, 33, 0.22)),
    linear-gradient(90deg, rgba(44, 32, 23, 0.12), transparent 48%);
  pointer-events: none;
}

.pain-visual figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: #C8956C;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
}

.pain-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(76px, 8vw, 128px) 0;
}

.pain-copy {
  display: grid;
  gap: 18px;
  max-width: 610px;
  padding-top: clamp(22px, 4vw, 42px);
}

.pain-copy p,
.about-grid p,
.final-cta p {
  margin: 0;
  color: var(--px-muted-dark);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.7;
}

.pain-copy .pain-cta-line {
  color: var(--px-ink);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.services-section,
.process-section,
.testimonials-section,
.final-cta {
  background: var(--px-black);
}

.services-section .section-head {
  display: block;
  max-width: 1160px;
  margin-right: auto;
  margin-bottom: 62px;
  margin-left: auto;
  text-align: center;
}

.services-section .section-head .section-kicker {
  justify-content: center;
}

.services-section .section-head h2 {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}

.services-section .section-head h2 span {
  color: var(--px-blue);
}

.services-section .section-head .text-link {
  display: inline-flex;
  margin-top: 28px;
}

.service-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.service-panel {
  position: sticky;
  top: 100px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(253, 253, 253, 0.12);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 100% 0%, rgba(233, 155, 64, 0.18), transparent 12rem),
    linear-gradient(145deg, #2C2017, #222021);
  box-shadow: 0 22px 56px rgba(44, 32, 23, 0.28);
}

.service-panel:nth-child(3n + 2) {
  top: 126px;
}

.service-panel:nth-child(3n) {
  top: 152px;
}

.service-panel span,
.process-steps span,
.project-row span,
.testimonial-stack span {
  color: var(--px-amber);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-panel h3,
.process-steps h3,
.project-row h3 {
  margin: 28px 0 12px;
  color: var(--px-white-tint);
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.service-panel p,
.process-steps p,
.testimonial-stack p {
  margin: 0;
  color: rgba(253, 253, 253, 0.72);
  font-size: 16px;
  line-height: 1.65;
}

.service-panel a {
  width: max-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  color: var(--px-blue);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: start;
}

.process-sticky {
  position: sticky;
  top: 116px;
}

.process-line {
  width: min(100%, 520px);
  margin-top: 34px;
}

.process-line path,
.process-line circle {
  fill: none;
  stroke: var(--px-blue);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-line circle {
  fill: var(--px-blue);
  stroke: var(--px-amber);
}

.process-steps {
  display: grid;
  gap: 22px;
}

.process-steps article {
  padding: 30px;
  border: 1px solid rgba(253, 253, 253, 0.12);
  border-radius: var(--radius-md);
  background: rgba(253, 253, 253, 0.045);
  box-shadow: 0 0 0 0 transparent;
  transition: box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-steps article.step-active {
  box-shadow:
    0 0 32px 6px rgba(245, 166, 35, 0.28),
    0 0 64px 16px rgba(245, 166, 35, 0.12),
    inset 0 0 0 1px rgba(245, 166, 35, 0.35);
  border-color: rgba(245, 166, 35, 0.4);
}

.stats-section {
  background:
    linear-gradient(180deg, rgba(233, 155, 64, 0.14), transparent 42%),
    var(--px-paper);
  color: var(--px-ink);
}

.switchboard-page-offer,
.emergency-page-offer {
  background: var(--px-paper);
  color: var(--px-ink);
}

.switchboard-page-offer .offer-wrap,
.emergency-page-offer .offer-wrap {
  position: relative;
  max-width: min(100% - 64px, 1280px);
  padding: clamp(34px, 5vw, 62px) clamp(36px, 6vw, 88px);
  border: 1px solid rgba(245, 166, 35, 0.32);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 166, 35, 0.18), transparent 34rem),
    #222021;
  box-shadow:
    0 34px 90px rgba(245, 166, 35, 0.18),
    0 22px 70px rgba(12, 10, 9, 0.26),
    inset 0 1px 0 rgba(253, 253, 253, 0.08);
  transform: perspective(1100px) rotateX(2deg);
  transform-origin: center;
}

.switchboard-page-offer .offer-wrap::before,
.emergency-page-offer .offer-wrap::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 6%, rgba(245, 166, 35, 0.48), transparent 46%);
  filter: blur(24px);
  opacity: 0.72;
}

.switchboard-page-offer .section-kicker,
.emergency-page-offer .section-kicker {
  color: var(--px-amber);
}

.switchboard-page-offer .offer-wrap h2,
.emergency-page-offer .offer-wrap h2 {
  color: var(--px-white-tint);
  white-space: nowrap;
}

.switchboard-page-offer .offer-copy,
.emergency-page-offer .offer-copy {
  color: rgba(253, 253, 253, 0.78);
}

.switchboard-page-offer .offer-trust,
.emergency-page-offer .offer-trust {
  color: rgba(253, 253, 253, 0.52);
}

.rental-page-offer .offer-wrap h2 {
  font-size: clamp(28px, 3.8vw, 50px);
  white-space: nowrap;
}

.led-page-offer .offer-wrap h2 {
  font-size: clamp(22px, 2.4vw, 34px);
}

.kitchen-page-offer .offer-wrap h2 {
  font-size: clamp(26px, 3.2vw, 46px);
}


.rental-page-offer .offer-primary-button,
.rental-page-offer .offer-emergency-button {
  min-height: 44px;
  padding: 12px 20px;
  font-size: 15px;
}

.stats-section .section-head h2 {
  color: var(--px-ink);
}

.offer-wrap {
  max-width: 960px;
  text-align: center;
}

.offer-wrap .section-kicker {
  justify-content: center;
}

.offer-wrap h2 {
  margin: 0;
  color: var(--px-ink);
  font-family: var(--font-display);
  font-size: clamp(58px, 9vw, 124px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 0.95;
  text-transform: uppercase;
  transform-origin: center;
}

.offer-copy {
  max-width: 780px;
  margin: 28px auto 0;
  color: var(--px-muted-dark);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.65;
}

.offer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.offer-primary-button,
.offer-emergency-button {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 190ms var(--ease-out), filter 190ms var(--ease-out);
}

.offer-primary-button {
  border: 1px solid rgba(44, 32, 23, 0.14);
  background: #F5A623;
  color: #2C2017;
}

.offer-emergency-button {
  border: 1px solid rgba(185, 28, 28, 0.32);
  background: #B91C1C;
  color: #FFFFFF;
}

.offer-emergency-button span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 2px solid #FFFFFF;
  background: #B91C1C;
  box-shadow: 0 0 0 0 rgba(185, 28, 28, 0.46);
  animation: offer-dot-pulse 1.45s var(--ease-out) infinite;
}

.offer-primary-button:hover,
.offer-primary-button:focus-visible,
.offer-emergency-button:hover,
.offer-emergency-button:focus-visible {
  filter: brightness(1.04);
  outline: none;
  transform: translateY(-2px);
}

.offer-primary-button:active,
.offer-emergency-button:active {
  transform: translateY(1px) scale(0.99);
}

.offer-trust {
  margin: 26px auto 0;
  color: rgba(44, 32, 23, 0.62);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-transform: uppercase;
}

@keyframes offer-dot-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(185, 28, 28, 0.46);
  }

  72%,
  100% {
    box-shadow: 0 0 0 9px rgba(185, 28, 28, 0);
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--px-line-dark);
  background: rgba(34, 32, 33, 0.10);
}

.stats-grid article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background: rgba(248, 248, 248, 0.82);
}

.stats-grid article + article {
  border-left: 1px solid var(--px-line-dark);
}

.stats-grid strong {
  display: block;
  color: var(--px-blue-dark);
  font-family: var(--font-display);
  font-size: clamp(54px, 7vw, 98px);
  font-weight: 700;
  line-height: 0.92;
}

.stats-grid article > span {
  margin-top: 14px;
  color: var(--px-muted-dark);
  font-size: 15px;
}

.testimonial-grid {
  display: block;
  overflow: hidden;
}

.testimonial-head {
  max-width: 860px;
  margin: 0 auto clamp(42px, 6vw, 74px);
  text-align: center;
}

.testimonial-head .section-kicker {
  justify-content: center;
}

.testimonial-stack {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: testimonial-marquee 74s linear infinite;
  will-change: transform;
}

.testimonial-ticker {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.testimonial-ticker:hover .testimonial-stack {
  animation-play-state: paused;
}

.testimonial-stack article {
  position: relative;
  top: 0;
  width: min(78vw, 520px);
  min-height: 250px;
  flex: 0 0 min(78vw, 520px);
  padding: 34px;
  border: 1px solid rgba(253, 253, 253, 0.14);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 100% 0%, rgba(233, 155, 64, 0.10), transparent 12rem),
    #2C2017;
  box-shadow: var(--shadow-dark);
}

.testimonial-stack article:nth-child(2) {
  top: 0;
}

.testimonial-stack article:nth-child(3) {
  top: 0;
}

.testimonial-stack p {
  color: var(--px-white-tint);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.45;
}

.testimonial-stack span {
  display: block;
  margin-top: 22px;
}

@keyframes testimonial-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes testimonial-marquee-reverse {
  from {
    transform: translateX(calc(-50% - 9px));
  }

  to {
    transform: translateX(0);
  }
}

.testimonial-stack-reverse {
  animation-name: testimonial-marquee-reverse;
}

.reviews-band .testimonial-stack b {
  display: block;
  margin-bottom: 12px;
  color: var(--px-amber);
  line-height: 1;
}

.about-teaser,
.projects-teaser {
  background: var(--px-paper);
  color: var(--px-ink);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: center;
}

.about-grid h2,
.projects-teaser .section-head h2 {
  color: var(--px-ink);
}

.projects-teaser .section-head {
  display: block;
  max-width: 980px;
  margin-right: auto;
  margin-bottom: 54px;
  margin-left: auto;
  text-align: center;
}

.projects-teaser .section-head .section-kicker {
  justify-content: center;
}

.projects-teaser .section-head h2 {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

.projects-teaser .section-head .text-link {
  display: inline-flex;
  margin-top: 26px;
}

.about-grid p + p {
  margin-top: 18px;
}

.about-grid .ghost-button {
  margin-top: 28px;
  color: var(--px-ink);
  border-color: rgba(34, 32, 33, 0.22);
}

.about-story-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(245, 166, 35, 0.10), transparent 28rem),
    var(--px-paper);
}

.about-values-section {
  background: var(--px-paper);
  padding-top: clamp(40px, 4vw, 64px);
}

.about-page-offer {
  padding-top: clamp(40px, 4vw, 64px);
}

.about-page-offer .offer-wrap h2 {
  font-size: clamp(22px, 2.8vw, 42px);
}

.about-values-section .section-kicker {
  display: flex;
  justify-content: center;
}

.values-headline {
  text-align: center;
}

.values-headline {
  margin: 8px 0 32px;
  color: var(--px-white-tint);
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(253, 253, 253, 0.12);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 100% 0%, rgba(233, 155, 64, 0.18), transparent 12rem),
    #2C2017;
  box-shadow: 0 22px 56px rgba(44, 32, 23, 0.28);
  transition: border-color 600ms ease, box-shadow 600ms ease;
}

.value-card.value-active {
  border-color: rgba(245, 166, 35, 1);
  box-shadow:
    0 22px 56px rgba(44, 32, 23, 0.28),
    0 0 0 2px rgba(245, 166, 35, 0.70),
    0 0 28px rgba(245, 166, 35, 0.75),
    0 0 70px rgba(245, 166, 35, 0.45),
    0 0 130px rgba(245, 166, 35, 0.22),
    0 0 200px rgba(245, 166, 35, 0.10),
    inset 0 0 50px rgba(245, 166, 35, 0.16);
}

.value-card h3 {
  margin: 0 0 14px;
  color: var(--px-white-tint);
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
}

.value-card p {
  margin: 0;
  color: rgba(253, 253, 253, 0.72);
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .about-values-section .values-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .about-values-section .value-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 28px 22px;
    align-items: center;
    text-align: center;
    position: sticky;
  }

  .about-values-section .value-card.value-active {
    border-color: rgba(253, 253, 253, 0.12);
    box-shadow: 0 22px 56px rgba(44, 32, 23, 0.28);
  }

  .about-values-section .values-grid .value-card:nth-child(1) { top: 72px; z-index: 1; }
  .about-values-section .values-grid .value-card:nth-child(2) { top: 84px; z-index: 2; }
  .about-values-section .values-grid .value-card:nth-child(3) { top: 96px; z-index: 3; }
  .about-values-section .values-grid .value-card:nth-child(4) { top: 108px; z-index: 4; }
  .about-values-section .values-grid .value-card:nth-child(5) { top: 120px; z-index: 5; }
  .about-values-section .values-grid .value-card:nth-child(6) { top: 132px; z-index: 6; }

  .about-values-section .value-card h3 {
    max-width: 15em;
    margin: 0 auto 14px;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1;
    overflow-wrap: normal;
    word-break: normal;
  }

  .about-values-section .value-card p {
    max-width: 28ch;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
  }
}

.about-stats-section {
  background: #0F0F0F;
  padding-top: clamp(60px, 6vw, 96px);
  padding-bottom: clamp(60px, 6vw, 96px);
}

.about-stats-section .hero-proof {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(253, 253, 253, 0.10);
  border-radius: var(--radius-md);
}

.about-stats-section .proof-value {
  font-size: clamp(54px, 7vw, 96px);
  line-height: 0.9;
}

.about-stats-section .proof-label {
  font-size: 16px;
  color: rgba(253, 253, 253, 0.82);
}

.about-stats-section .proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

@media (max-width: 720px) {
  .about-stats-section .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stats-section .proof-item {
    padding: 28px 16px;
    border-top: 1px solid rgba(253, 253, 253, 0.10);
    border-right: 1px solid rgba(253, 253, 253, 0.10);
  }

  .about-stats-section .proof-item:nth-child(-n + 2) {
    border-top: 0;
  }

  .about-stats-section .proof-item:nth-child(2n) {
    border-right: 0;
  }
}

.about-story-grid {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
}

.about-story-head {
  text-align: center;
  margin-bottom: 40px;
}

.about-story-headline {
  margin: 8px 0 0;
  color: var(--px-ink);
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.02;
}

.about-story-copy .section-kicker {
  margin: 0 0 16px;
}

.about-story-copy h2,
.about-story-copy p {
  max-width: 760px;
}

.about-promise {
  color: var(--px-ink) !important;
  font-weight: 700;
}

.about-founder-card {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  border: 1px solid rgba(245, 166, 35, 0.26);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(34, 32, 33, 0.04), rgba(34, 32, 33, 0.52)),
    url("Images%26Videos/electman.webp") center top / cover no-repeat;
  box-shadow:
    0 30px 70px rgba(44, 32, 23, 0.16),
    inset 0 1px 0 rgba(253, 253, 253, 0.06);
  overflow: hidden;
}

.about-founder-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(245, 166, 35, 0.24);
}

.about-founder-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 38%, rgba(245, 166, 35, 0.14) 39%, transparent 56%),
    repeating-linear-gradient(90deg, rgba(253, 253, 253, 0.04) 0 1px, transparent 1px 72px);
  opacity: 0.52;
}

.about-founder-card-inner {
  position: relative;
  z-index: 1;
  max-width: 330px;
  padding: 22px;
  border: 1px solid rgba(253, 253, 253, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(34, 32, 33, 0.72);
}

.about-founder-card-inner:empty {
  display: none;
}

.about-founder-card-inner span,
.about-founder-card-inner strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-founder-card-inner span {
  color: var(--px-amber);
  font-size: 16px;
}

.about-founder-card-inner strong {
  margin-top: 8px;
  color: var(--px-white-tint);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.95;
}

.about-founder-card-inner p {
  margin: 14px 0 0;
  color: rgba(253, 253, 253, 0.76);
  font-size: 16px;
  line-height: 1.55;
}

.about-image,
.project-row article {
  position: relative;
  min-height: 540px;
  border: 1px solid rgba(34, 32, 33, 0.14);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(34, 32, 33, 0.05), rgba(34, 32, 33, 0.80)),
    radial-gradient(circle at 60% 24%, rgba(233, 155, 64, 0.34), transparent 16rem),
    #222021;
  overflow: hidden;
}

.about-image::after,
.project-row article::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(233, 155, 64, 0.26);
}

.project-row {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.project-row article {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.project-row h3,
.project-row span {
  position: relative;
  z-index: 2;
}

.project-row h3 {
  margin-bottom: 0;
  color: var(--px-white-tint);
}

.final-cta-box {
  position: relative;
  padding: clamp(42px, 7vw, 92px);
  border: 1px solid rgba(233, 155, 64, 0.32);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 80% 18%, rgba(233, 155, 64, 0.28), transparent 28rem),
    linear-gradient(145deg, #2C2017, #222021);
  box-shadow: var(--shadow-dark);
  overflow: hidden;
  text-align: center;
}

.final-cta-box .section-kicker {
  max-width: 760px;
  justify-content: center;
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
  color: var(--px-amber);
  font-size: 20px;
  line-height: 1.25;
  text-shadow: 0 1px 14px rgba(245, 166, 35, 0.22);
}

.final-cta-box h2 {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1;
}

.final-cta-box p:not(.section-kicker) {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(253, 253, 253, 0.76);
}

.final-cta-box .hero-actions {
  justify-content: center;
  margin-top: 30px;
}

.emergency-page-offer .offer-trust {
  max-width: 920px;
  color: rgba(253, 253, 253, 0.52);
}

.emergency-page-offer .offer-wrap h2 {
  font-size: clamp(48px, 6.8vw, 104px);
}

.ev-page-offer .offer-wrap {
  max-width: min(100% - 72px, 1080px);
  padding: clamp(28px, 4vw, 48px) clamp(30px, 5vw, 68px);
}

.ev-page-offer .offer-wrap h2 {
  max-width: 860px;
  margin-inline: auto;
  font-size: clamp(42px, 5.4vw, 82px);
  line-height: 0.98;
  white-space: normal;
}

.rewiring-page-offer .offer-wrap {
  max-width: min(100% - 72px, 1040px);
  padding: clamp(28px, 4vw, 46px) clamp(30px, 5vw, 64px);
}

.rewiring-page-offer .offer-wrap h2 {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: 0.98;
  white-space: normal;
}

.site-footer {
  padding: 64px 0;
  border-top: 1px solid rgba(253, 253, 253, 0.12);
  background: #222021;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.05fr) minmax(260px, 1.15fr) minmax(150px, 0.7fr) minmax(150px, 0.7fr);
  gap: 34px;
}

.footer-logo {
  margin-bottom: 20px;
}

.site-footer p {
  max-width: 330px;
  color: var(--px-muted);
  line-height: 1.65;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--px-white-tint);
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer nav a {
  color: rgba(253, 253, 253, 0.68);
  text-decoration: none;
  transition: color 180ms var(--ease-out);
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--px-blue);
  outline: none;
}

.scroll-top-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(253, 253, 253, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(34, 32, 33, 0.82);
  color: var(--px-amber);
  box-shadow: 0 16px 38px rgba(12, 10, 9, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out), background 220ms var(--ease-out), color 220ms var(--ease-out);
  cursor: pointer;
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-button:hover,
.scroll-top-button:focus-visible {
  background: var(--px-amber);
  color: var(--px-ink);
  outline: none;
}

.scroll-top-button:active {
  transform: translateY(2px);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 56s linear infinite;
}

.reverse-marquee {
  animation-name: marquee-reverse;
  animation-duration: 72s;
}

.marquee-track span {
  padding-right: 42px;
  color: var(--px-white-tint);
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-reverse {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes curtain-open-left {
  to {
    transform: translateX(-100%);
  }
}

@keyframes curtain-open-right {
  to {
    transform: translateX(100%);
  }
}

@keyframes curtain-logo-power {
  0% {
    opacity: 0;
    transform: scale(0.96);
    filter: brightness(0.72) saturate(0.82);
  }

  26% {
    opacity: 1;
  }

  48% {
    filter: brightness(1.28) saturate(1.12);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1.02) saturate(1);
  }
}

@keyframes curtain-power-glow {
  0%, 18% {
    opacity: 0;
    transform: scale(0.82);
  }

  48% {
    opacity: 0.94;
    transform: scale(1.02);
  }

  100% {
    opacity: 0.18;
    transform: scale(1.18);
  }
}

@keyframes curtain-current-pass {
  0% {
    opacity: 0;
    transform: translateX(-56%) rotate(-25deg) scaleX(0.08);
  }

  18% {
    opacity: 1;
  }

  62% {
    opacity: 1;
    transform: translateX(-4%) rotate(-25deg) scaleX(1);
  }

  100% {
    opacity: 0;
    transform: translateX(18%) rotate(-25deg) scaleX(0.24);
  }
}

@keyframes curtain-spark-pop {
  0%, 18% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.35);
  }

  38% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate3d(7px, -9px, 0) scale(0.28);
  }
}

@media (max-width: 1060px) {
  .main-nav,
  .header-actions .phone-link {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header.nav-is-open {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 9999;
    background: #1a1815;
    overflow-y: auto;
  }

  .site-header.nav-is-open .nav-wrap {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    gap: 0;
    padding: 0 0 24px;
  }

  .site-header.nav-is-open .brand-link {
    display: none;
  }

  .site-header.nav-is-open .header-actions {
    order: -1;
    display: flex;
    justify-content: flex-end;
    padding: 18px 0 0;
  }

  .site-header.nav-is-open .header-actions .cta-button {
    display: none;
  }

  .site-header.nav-is-open .main-nav {
    display: flex;
    flex-direction: column;
    position: static;
    padding: 8px 0 48px;
    overflow-y: visible;
    gap: 4px;
  }

  .site-header.nav-is-open .main-nav a {
    font-family: var(--font-display);
    font-size: clamp(28px, 7vw, 40px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--px-white-tint);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(253, 253, 253, 0.07);
    transition: color 0.15s;
  }

  .site-header.nav-is-open .main-nav a:hover {
    color: var(--px-amber);
  }

  .site-header.nav-is-open .services-menu {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(253, 253, 253, 0.07);
  }

  .site-header.nav-is-open .services-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-family: var(--font-display);
    font-size: clamp(28px, 7vw, 40px);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--px-white-tint);
    padding: 10px 0;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.15s;
  }

  .site-header.nav-is-open .services-trigger:hover {
    color: var(--px-amber);
  }

  .site-header.nav-is-open .services-trigger::after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: rotate(45deg) translate(-2px, -4px);
    transition: transform 0.25s;
    flex-shrink: 0;
    margin-left: 14px;
  }

  .site-header.nav-is-open .services-menu.is-open .services-trigger::after {
    transform: rotate(-135deg) translate(-2px, 2px);
  }

  .site-header.nav-is-open .services-dropdown {
    display: none;
    flex-direction: column;
    position: static;
    width: 100%;
    max-height: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 4px 0 14px 24px;
    gap: 0;
  }

  .site-header.nav-is-open .services-menu.is-open .services-dropdown {
    display: flex;
  }

  .site-header.nav-is-open .services-dropdown a {
    font-family: var(--font-display);
    font-size: clamp(16px, 4.5vw, 22px);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: rgba(253, 253, 253, 0.55);
    padding: 8px 0;
    min-height: auto;
    border-bottom: 1px solid rgba(253, 253, 253, 0.04);
    border-radius: 0;
    background: none;
    transition: color 0.15s;
  }

  .site-header.nav-is-open .services-dropdown a:hover {
    background: none;
    color: var(--px-amber);
  }

  .mobile-nav-call-btn {
    display: none;
  }

  .site-header.nav-is-open .mobile-nav-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding: 18px 24px;
    background: var(--px-amber);
    color: var(--px-black) !important;
    font-family: var(--font-display);
    font-size: clamp(20px, 5vw, 26px);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    border-bottom: none !important;
    transition: background 0.15s, color 0.15s;
  }

  .site-header.nav-is-open .mobile-nav-call-btn:hover {
    background: #f5a623;
    color: var(--px-black) !important;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .service-stack,
  .stats-grid,
  .project-row,
  .project-proof-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pain-grid,
  .process-grid,
  .testimonial-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .pain-grid {
    min-height: auto;
  }

  .pain-visual {
    min-height: 420px;
  }

  .pain-content {
    padding: 0 0 clamp(64px, 12vw, 96px);
  }

  .process-sticky {
    position: relative;
    top: 0;
  }
}

@media (min-width: 1061px) and (max-width: 1260px) {
  .nav-wrap {
    width: min(100% - 24px, 1320px);
    gap: 16px;
  }

  .brand-link {
    width: 230px;
    height: 64px;
  }

  .brand-link img {
    width: 230px;
    height: 64px;
  }

  .main-nav {
    gap: 14px;
    font-size: 18px;
    letter-spacing: 0.055em;
  }

  .main-nav a,
  .services-trigger {
    font-size: 18px;
    letter-spacing: 0.055em;
  }

  .header-actions {
    gap: 10px;
  }

  .phone-link {
    padding: 8px 10px;
  }

  .phone-link::before {
    font-size: 13px;
    letter-spacing: 0.07em;
  }

  .phone-link::after {
    font-size: 17px;
    letter-spacing: 0.04em;
  }

  .header-actions .cta-button {
    min-width: 178px;
    min-height: 48px;
    padding: 14px 18px;
    font-size: 17px;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 720px) {
  .nav-wrap {
    width: min(100% - 24px, 1320px);
    min-height: 68px;
  }

  .brand-link img {
    width: 184px;
    height: 58px;
  }

  .brand-link {
    width: 184px;
    height: 58px;
  }

  .header-actions .cta-button {
    display: none;
  }

  .switchboard-page-offer .offer-wrap,
  .emergency-page-offer .offer-wrap {
    max-width: min(100% - 28px, 1280px);
  }

  .switchboard-page-offer .offer-wrap h2,
  .emergency-page-offer .offer-wrap h2 {
    white-space: normal;
  }

  .ev-page-offer .offer-wrap {
    max-width: min(100% - 28px, 1080px);
    padding: 30px 22px;
  }

  .ev-page-offer .offer-wrap h2 {
    font-size: clamp(38px, 11.5vw, 58px);
  }

  .rewiring-page-offer .offer-wrap {
    max-width: min(100% - 28px, 1040px);
    padding: 30px 22px;
  }

  .rewiring-page-offer .offer-wrap h2 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .emergency-hero {
    background:
      linear-gradient(180deg, rgba(34, 32, 33, 0.56) 0%, rgba(34, 32, 33, 0.42) 52%, rgba(34, 32, 33, 0.68) 100%),
      url("../../Images%26Videos/emergency-electricianbannerimge.webp") 62% center / cover no-repeat;
  }

  .ev-charger-hero {
    background:
      linear-gradient(180deg, rgba(34, 32, 33, 0.42) 0%, rgba(34, 32, 33, 0.22) 48%, rgba(34, 32, 33, 0.58) 100%),
      url("Images%26Videos/ev-charger-installation%3ABannerimage.webp") 62% center / cover no-repeat;
  }

  .house-rewiring-hero {
    background:
      linear-gradient(180deg, rgba(34, 32, 33, 0.48) 0%, rgba(34, 32, 33, 0.28) 48%, rgba(34, 32, 33, 0.62) 100%),
      url("Images%26Videos/Restoreoldhomes.webp") 58% center / cover no-repeat;
  }

  .scroll-top-button {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }

  .hero {
    padding: 82px 0 54px;
  }

  .hero-grid {
    width: min(100% - 28px, 1320px);
    gap: 32px;
    min-height: calc(100dvh - 136px);
  }

  .hero-copy {
    padding: 10px 0 22px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .sub-hero h1 {
    font-size: clamp(50px, 16vw, 72px);
  }

  .hero-actions {
    display: grid;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .proof-item {
    min-height: 96px;
    padding: 18px 18px 17px;
    border-top: 1px solid rgba(253, 253, 253, 0.10);
  }

  .proof-item:nth-child(-n + 2) {
    border-top: 0;
  }

  .proof-item:nth-child(2n) {
    border-right: 0;
  }

  .section-head,
  .service-stack,
  .stats-grid,
  .project-row,
  .project-proof-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-panel,
  .testimonial-stack article {
    position: relative;
    top: 0;
  }

  .stats-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--px-line-dark);
  }

  .about-image,
  .project-row article {
    min-height: 360px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

.subpage-main {
  background: var(--px-black);
}

.sub-hero {
  position: relative;
  min-height: 72dvh;
  display: flex;
  align-items: flex-start;
  padding: 112px 0 76px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 20%, rgba(233, 155, 64, 0.26), transparent 30rem),
    linear-gradient(145deg, #2C2017, #222021);
}

.switchboard-hero {
  align-items: flex-start;
  padding: 112px 0 56px;
  background:
    linear-gradient(90deg, rgba(34, 32, 33, 0.86) 0%, rgba(34, 32, 33, 0.64) 43%, rgba(34, 32, 33, 0.18) 100%),
    linear-gradient(180deg, rgba(34, 32, 33, 0.12), rgba(34, 32, 33, 0.48)),
    url("../../Images%26Videos/Switchboardbanner.webp") center right / cover no-repeat;
}

.switchboard-hero h1 span,
.commercial-hero h1 span,
.data-hero h1 span,
.contact-hero h1 span,
.blog-hero h1 span,
.careers-hero h1 span,
.about-hero h1 span {
  color: var(--px-amber);
}

.ev-charger-hero h1 span {
  color: var(--px-amber);
}

.ev-charger-hero {
  background:
    linear-gradient(90deg, rgba(34, 32, 33, 0.58) 0%, rgba(34, 32, 33, 0.34) 39%, rgba(34, 32, 33, 0.04) 68%),
    linear-gradient(180deg, rgba(34, 32, 33, 0.02), rgba(34, 32, 33, 0.18)),
    url("Images%26Videos/ev-charger-installation%3ABannerimage.webp") center right / cover no-repeat;
}

.house-rewiring-hero {
  background:
    linear-gradient(90deg, rgba(34, 32, 33, 0.66) 0%, rgba(34, 32, 33, 0.42) 42%, rgba(34, 32, 33, 0.08) 72%),
    linear-gradient(180deg, rgba(34, 32, 33, 0.03), rgba(34, 32, 33, 0.22)),
    url("Images%26Videos/Restoreoldhomes.webp") center right / cover no-repeat;
}

.house-rewiring-hero h1 span {
  color: var(--px-amber);
}

.emergency-hero {
  background:
    linear-gradient(90deg, rgba(34, 32, 33, 0.72) 0%, rgba(34, 32, 33, 0.50) 45%, rgba(34, 32, 33, 0.10) 100%),
    linear-gradient(180deg, rgba(34, 32, 33, 0.04), rgba(34, 32, 33, 0.28)),
    url("../../Images%26Videos/emergency-electricianbannerimge.webp") center right / cover no-repeat;
}

.rental-hero h1 span {
  color: var(--px-amber);
}

.rental-hero {
  background:
    linear-gradient(90deg, rgba(34, 32, 33, 0.82) 0%, rgba(34, 32, 33, 0.58) 44%, rgba(34, 32, 33, 0.14) 100%),
    linear-gradient(180deg, rgba(34, 32, 33, 0.06), rgba(34, 32, 33, 0.32)),
    url("../../Images%26Videos/RentalPower.webp") center right / cover no-repeat;
}

.led-hero h1 span {
  color: var(--px-amber);
}

.led-hero {
  background:
    linear-gradient(90deg, rgba(34, 32, 33, 0.80) 0%, rgba(34, 32, 33, 0.56) 44%, rgba(34, 32, 33, 0.12) 100%),
    linear-gradient(180deg, rgba(34, 32, 33, 0.06), rgba(34, 32, 33, 0.30)),
    url("../../Images%26Videos/LedLighting.webp") center right / cover no-repeat;
}

.induction-hero {
  background:
    linear-gradient(90deg, rgba(34, 32, 33, 0.62) 0%, rgba(34, 32, 33, 0.32) 44%, rgba(34, 32, 33, 0.02) 100%),
    url("Images%26Videos/Kitchenbenchele.webp") center right / cover no-repeat;
}

.induction-hero h1 span {
  color: var(--px-amber);
}

.commercial-hero {
  background: url("Images%26Videos/datacentre.webp") center center / cover no-repeat;
}

@media (min-width: 721px) {
  .commercial-hero .section-kicker {
    font-size: 14px;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
}

.data-hero {
  background: url("Images%26Videos/CCTVInstall.webp") center center / cover no-repeat;
}

.about-hero {
  background:
    linear-gradient(180deg, rgba(34, 32, 33, 0.52) 0%, rgba(34, 32, 33, 0.32) 50%, rgba(34, 32, 33, 0.62) 100%),
    url("Images%26Videos/caronabout.webp") center center / cover no-repeat;
}

.about-hero .wide-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-hero .section-kicker {
  display: flex;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
}

.about-hero h1 {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(44px, 5.6vw, 88px);
  text-align: center;
}

.about-hero .sub-hero-actions {
  width: 100%;
  justify-content: center;
}

.projects-hero {
  min-height: 64dvh;
  padding-bottom: 56px;
  background:
    linear-gradient(180deg, rgba(34, 32, 33, 0.38) 0%, rgba(34, 32, 33, 0.22) 46%, rgba(34, 32, 33, 0.58) 100%),
    url("Images%26Videos/Projectsbanner.webp") center center / cover no-repeat;
}

.careers-hero {
  background:
    linear-gradient(90deg, rgba(34, 32, 33, 0.72) 0%, rgba(34, 32, 33, 0.42) 48%, rgba(34, 32, 33, 0.12) 100%),
    url("Images%26Videos/unpackingvan.webp") center center / cover no-repeat;
}

.blog-hero {
  background:
    linear-gradient(90deg, rgba(34, 32, 33, 0.72) 0%, rgba(34, 32, 33, 0.42) 48%, rgba(34, 32, 33, 0.12) 100%),
    url("Images%26Videos/downlightsblog.webp") center center / cover no-repeat;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(34, 32, 33, 0.72) 0%, rgba(34, 32, 33, 0.42) 48%, rgba(34, 32, 33, 0.12) 100%),
    url("Images%26Videos/Contactpagebanner.webp") center center / cover no-repeat;
}

.service-areas-hero {
  background:
    linear-gradient(90deg, rgba(34, 32, 33, 0.72) 0%, rgba(34, 32, 33, 0.42) 48%, rgba(34, 32, 33, 0.12) 100%),
    url("Images%26Videos/Servicearea.webp") center center / cover no-repeat;
}

.service-areas-band {
  background: #B91C1C;
  color: #FFFFFF;
}

.sa-intro {
  text-align: center;
  background: #DCDBDB;
  padding-bottom: clamp(40px, 4vw, 60px);
}

.sa-intro-eyebrow {
  font-family: var(--font-display);
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F5A623;
  margin: 0 0 16px;
}

.sa-intro-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  color: #0F0F0F;
  line-height: 1;
  margin: 0 0 20px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.sa-intro-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(15, 15, 15, 0.65);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 36px;
}

.sa-intro-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.sa-faq-section {
  text-align: center;
}

.sa-faq-eyebrow {
  font-family: var(--font-display);
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F5A623;
  margin: 0 0 16px;
  display: block;
}

.sa-faq-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--px-ink);
  line-height: 1;
  margin: 0 0 40px;
}

.sa-faq-section .faq-grid {
  text-align: left;
}

.projects-hero-centred {
  justify-content: center;
  text-align: center;
}

.projects-hero-centred .wide-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.projects-hero-centred h1 {
  max-width: 940px;
  margin-inline: auto;
  font-size: clamp(36px, 4.2vw, 64px);
}

.projects-hero-lede {
  max-width: 740px;
  margin-right: auto;
  margin-left: auto;
}

.projects-hero-centred .sub-hero-actions {
  justify-content: center;
}

.projects-hero-centred h1 span {
  color: var(--px-amber);
}

@media (max-width: 720px) {
  .projects-hero-centred h1 {
    font-size: clamp(32px, 10vw, 50px);
    overflow-wrap: break-word;
  }

  .projects-hero-lede {
    text-align: center;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .projects-hero-centred .sub-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .project-proof-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .project-report-card {
    width: 100%;
    max-width: 100%;
    position: sticky;
  }

  .project-proof-grid .project-report-card:nth-child(1) { top: 72px; z-index: 1; }
  .project-proof-grid .project-report-card:nth-child(2) { top: 84px; z-index: 2; }
  .project-proof-grid .project-report-card:nth-child(3) { top: 96px; z-index: 3; }
  .project-proof-grid .project-report-card:nth-child(4) { top: 108px; z-index: 4; }
  .project-proof-grid .project-report-card:nth-child(5) { top: 120px; z-index: 5; }
  .project-proof-grid .project-report-card:nth-child(6) { top: 132px; z-index: 6; }
  .project-proof-grid .project-report-card:nth-child(7) { top: 144px; z-index: 7; }
  .project-proof-grid .project-report-card:nth-child(8) { top: 156px; z-index: 8; }

  .project-report-body {
    padding: 16px;
  }

  .project-report-body p,
  .project-report-body h3 {
    overflow-wrap: break-word;
  }

  .project-report-meta {
    flex-wrap: wrap;
    gap: 8px;
  }
}

.emergency-hero h1 span {
  color: var(--px-amber);
}

.emergency-hero h1 .emergency-red {
  color: #B91C1C;
}

.sub-hero h1 {
  max-width: 850px;
  margin: 0;
  color: var(--px-white-tint);
  font-family: var(--font-display);
  font-size: clamp(54px, 7vw, 104px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sub-hero p {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(253, 253, 253, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.sub-hero .section-kicker {
  color: var(--px-amber);
}

.sub-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hub-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(253, 253, 253, 0.12);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 100% 0%, rgba(233, 155, 64, 0.18), transparent 12rem),
    #2C2017;
  text-decoration: none;
  transition: transform 190ms var(--ease-out), border-color 190ms var(--ease-out);
}

.hub-card:hover,
.hub-card:focus-visible {
  border-color: rgba(233, 155, 64, 0.72);
  outline: none;
  transform: translateY(-4px);
}

.hub-card span,
.sales-letter .mini-label,
.faq-item span {
  color: var(--px-amber);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hub-card h2 {
  margin: 28px 0 12px;
  color: var(--px-white-tint);
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hub-card p {
  margin: 0;
  color: rgba(253, 253, 253, 0.72);
  font-size: 16px;
  line-height: 1.65;
}

.sales-letter,
.plain-page {
  background: var(--px-paper);
  color: var(--px-ink);
}

.sa-intro + .plain-page {
  padding-top: clamp(40px, 4vw, 60px);
}

.plain-page + .sa-faq-section {
  padding-top: clamp(40px, 4vw, 60px);
}

.plain-page:has(+ .sa-faq-section) {
  padding-bottom: clamp(40px, 4vw, 60px);
}

.plain-page .section-kicker {
  display: flex;
  justify-content: center;
}

.sales-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.52fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: start;
}

.sales-copy {
  display: grid;
  gap: 34px;
}

.sales-copy section {
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(34, 32, 33, 0.12);
}

.sales-copy h2,
.faq-block h2,
.plain-copy h2 {
  margin: 10px 0 14px;
  color: var(--px-ink);
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0;
}

.sales-copy p,
.sales-copy li,
.offer-card p,
.faq-item p,
.plain-copy p {
  color: var(--px-muted-dark);
  font-size: 18px;
  line-height: 1.7;
}

.sales-copy ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
}

.offer-card {
  position: sticky;
  top: 112px;
  padding: 30px;
  border: 1px solid rgba(233, 155, 64, 0.34);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 82% 12%, rgba(233, 155, 64, 0.22), transparent 18rem),
    #2C2017;
  box-shadow: var(--shadow-dark);
}

.offer-card:has(.emergency-card-button) {
  text-align: center;
}

.switchboard-quote-card {
  text-align: center;
}

.ev-quote-card {
  text-align: center;
}

.rewiring-quote-card {
  text-align: center;
}

.led-quote-card {
  text-align: center;
}

.kitchen-quote-card {
  text-align: center;
}

.led-quote-card h2 {
  font-size: 32px;
}

.rental-quote-card {
  text-align: center;
}

.commercial-quote-card {
  text-align: center;
}

.data-quote-card {
  text-align: center;
}

.reviews-band {
  background: #0F0F0F;
  padding: 72px 0 0;
  overflow: hidden;
}

.reviews-band-head {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-band-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--px-white-tint);
  margin: 12px 0 0;
  line-height: 1.05;
}

.reviews-marquee-wrap {
  background: #1A1A1A;
  overflow: hidden;
  padding: 20px 0;
}

.reviews-band .marquee-track span {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(253, 253, 253, 0.82);
  white-space: nowrap;
  padding-right: 0;
}

.reviews-band .marquee-track b {
  color: var(--px-amber);
  font-weight: 700;
}

.projects-proof {
  background:
    radial-gradient(circle at 15% 8%, rgba(245, 166, 35, 0.10), transparent 28rem),
    #F8F8F8;
  color: var(--px-ink);
}

.projects-proof-head {
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}

.projects-proof-head .section-kicker {
  justify-content: center;
}

.projects-proof-head h2 {
  margin: 0;
  color: var(--px-ink);
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
}

.projects-proof-head p {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--px-muted-dark);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}

.project-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-proof-grid article {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(44, 32, 23, 0.12);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 90% 0%, rgba(245, 166, 35, 0.14), transparent 15rem),
    rgba(253, 253, 253, 0.76);
  box-shadow:
    0 20px 48px rgba(44, 32, 23, 0.08),
    inset 0 1px 0 rgba(253, 253, 253, 0.72);
}

.project-proof-grid article > span {
  color: var(--px-amber);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-proof-grid h3 {
  margin: 12px 0 16px;
  color: var(--px-ink);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
}

.project-proof-grid dl {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
}

.project-proof-grid dt {
  color: var(--px-ink);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-proof-grid dd {
  margin: 0 0 10px;
  color: var(--px-muted-dark);
  font-size: 14px;
  line-height: 1.55;
}

.project-proof-grid .project-report-card {
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 4%, rgba(245, 166, 35, 0.12), transparent 14rem),
    rgba(253, 253, 253, 0.94);
}

.project-report-media {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--px-ink);
}

.project-report-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
  transition: transform 420ms var(--ease-out);
}

.project-report-card:hover .project-report-media img {
  transform: scale(1.035);
}

.project-report-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.project-report-pill {
  align-self: flex-start;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(44, 32, 23, 0.08);
  color: rgba(44, 32, 23, 0.68);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.project-proof-grid .project-report-card h3 {
  margin: 17px 0 10px;
}

.project-report-body p {
  margin: 0;
  color: var(--px-muted-dark);
  font-size: 14px;
  line-height: 1.55;
}

.project-report-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  color: rgba(44, 32, 23, 0.58);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-report-meta strong {
  color: var(--px-ink);
  font-weight: 700;
}

@media (max-width: 720px) {
  .projects-proof .project-proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .projects-proof .project-report-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .projects-proof .project-report-media {
    aspect-ratio: 16 / 10;
  }

  .projects-proof .project-report-body {
    padding: 20px;
    align-items: center;
    text-align: center;
  }

  .projects-proof .project-report-pill {
    align-self: center;
  }

  .projects-proof .project-report-card h3 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 0.95;
    overflow-wrap: normal;
    word-break: normal;
  }

  .projects-proof .project-report-body p {
    font-size: 16px;
    line-height: 1.6;
  }

  .projects-proof .project-report-meta {
    align-items: center;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

.projects-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
}

.projects-empty h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--px-ink);
  margin: 0 0 16px;
}

.projects-empty p {
  font-size: 18px;
  color: var(--px-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.project-row article ~ .projects-empty {
  display: none;
}

.commercial-quote-card h2 {
  font-size: 28px;
}

.commercial-page-offer .offer-wrap h2 {
  font-size: clamp(20px, 2.2vw, 32px);
}

.data-page-offer .offer-wrap h2 {
  font-size: clamp(22px, 2.6vw, 38px);
}

.offer-card h2 {
  margin: 0 0 16px;
  color: var(--px-white-tint);
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 0.95;
  text-transform: uppercase;
}

.offer-card p {
  color: rgba(253, 253, 253, 0.76);
}

.emergency-card-button {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border: 1px solid rgba(185, 28, 28, 0.32);
  border-radius: var(--radius-sm);
  background: #B91C1C;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 190ms var(--ease-out), filter 190ms var(--ease-out);
}

.emergency-card-button span {
  width: 9px;
  height: 9px;
  border: 2px solid #FFFFFF;
  border-radius: 999px;
  background: #B91C1C;
  box-shadow: 0 0 0 0 rgba(185, 28, 28, 0.46);
  animation: offer-dot-pulse 1.45s var(--ease-out) infinite;
}

.emergency-card-button:hover,
.emergency-card-button:focus-visible {
  filter: brightness(1.04);
  outline: none;
  transform: translateY(-2px);
}

.emergency-card-button:active {
  transform: translateY(1px) scale(0.99);
}

.faq-block {
  margin-top: 54px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  padding: 24px;
  border: 1px solid rgba(34, 32, 33, 0.12);
  border-radius: var(--radius-md);
  background: rgba(34, 32, 33, 0.035);
}

.faq-item h3 {
  margin: 12px 0 8px;
  color: var(--px-ink);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.plain-copy {
  max-width: 900px;
}

.plain-copy h2 {
  margin-top: 42px;
}

.contact-grid,
.areas-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.54fr);
  gap: clamp(34px, 7vw, 98px);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--px-ink);
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  min-height: 50px;
  width: 100%;
  border: 1px solid rgba(34, 32, 33, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(253, 253, 253, 0.78);
  color: var(--px-ink);
  font: inherit;
  padding: 13px 14px;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.suburb-list {
  columns: 4 180px;
  column-gap: 28px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.suburb-list li {
  break-inside: avoid;
  padding: 7px 0;
  color: var(--px-muted-dark);
}

@media (max-width: 1060px) {
  .hub-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sales-grid,
  .contact-grid,
  .areas-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    position: relative;
    top: 0;
  }
}

@media (max-width: 720px) {
  .sub-hero {
    min-height: auto;
    padding: 82px 0 42px;
  }

  .switchboard-hero {
    padding: 82px 0 42px;
  }

  .hub-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .commercial-page .sub-hero {
    text-align: center;
  }

  .commercial-page .sub-hero h1,
  .commercial-page .sub-hero p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .commercial-page .sub-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .commercial-page .sales-copy section {
    text-align: center;
  }

  .commercial-page .sales-copy h2 {
    white-space: normal;
    overflow-wrap: break-word;
  }

  .commercial-page .sales-copy ul {
    display: inline-block;
    text-align: left;
  }

  .commercial-page .faq-block {
    text-align: center;
  }

  .commercial-page .faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .commercial-page .faq-item {
    position: sticky;
    text-align: center;
    background: #2A2826;
    border: 1px solid rgba(233, 155, 64, 0.12);
  }

  .commercial-page .faq-item h3 {
    color: var(--px-white-tint);
  }

  .commercial-page .faq-item p {
    color: rgba(253, 253, 253, 0.7);
  }

  .commercial-page .faq-item:nth-child(1) { top: 72px; z-index: 1; }
  .commercial-page .faq-item:nth-child(2) { top: 82px; z-index: 2; }
  .commercial-page .faq-item:nth-child(3) { top: 92px; z-index: 3; }
  .commercial-page .faq-item:nth-child(4) { top: 102px; z-index: 4; }

  .commercial-page .testimonial-head {
    text-align: center;
  }

  .commercial-page .offer-wrap {
    text-align: center;
  }

  .commercial-page .offer-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 720px) {
  .service-page .sub-hero {
    text-align: center;
  }

  .service-page .sub-hero h1,
  .service-page .sub-hero p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .emergency-hero h1 {
    font-size: clamp(30px, 8vw, 44px);
  }

  .service-page .sub-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .service-page .sales-copy section {
    text-align: center;
  }

  .service-page .sales-copy h2 {
    white-space: normal;
    overflow-wrap: break-word;
  }

  .service-page .sales-copy ul {
    display: inline-block;
    text-align: left;
  }

  .service-page .faq-block {
    text-align: center;
  }

  .service-page .faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .service-page .faq-item {
    position: sticky;
    text-align: center;
    background: #2A2826;
    border: 1px solid rgba(233, 155, 64, 0.12);
  }

  .service-page .faq-item h3 {
    color: var(--px-white-tint);
  }

  .service-page .faq-item p {
    color: rgba(253, 253, 253, 0.7);
  }

  .service-page .faq-item:nth-child(1) { top: 72px; z-index: 1; }
  .service-page .faq-item:nth-child(2) { top: 82px; z-index: 2; }
  .service-page .faq-item:nth-child(3) { top: 92px; z-index: 3; }
  .service-page .faq-item:nth-child(4) { top: 102px; z-index: 4; }

  .service-page .mini-label {
    display: block;
    text-align: center;
  }

  .service-page .testimonial-head {
    text-align: center;
  }

  .service-page .offer-wrap {
    text-align: center;
  }

  .service-page .offer-actions {
    flex-direction: column;
    align-items: center;
  }

  .service-page .offer-card {
    text-align: center;
  }

  .service-page .offer-card ul {
    display: inline-block;
    text-align: left;
  }
}

/* =====================================================
   CAREERS PAGE
   ===================================================== */

/* WHO WE ARE */
.careers-who {
  background: #0F0F0F;
  text-align: center;
  padding-bottom: clamp(40px, 4vw, 60px);
}

.careers-who + .careers-timeline-section {
  padding-top: clamp(40px, 4vw, 60px);
}

.careers-who .section-kicker {
  justify-content: center;
}

.careers-who .wide-wrap {
  max-width: min(100% - 48px, 1180px);
}

.careers-section-headline {
  max-width: 900px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--px-white-tint);
  margin: 16px auto 36px;
}

.careers-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 56px;
  max-width: 1040px;
  margin: 0 auto;
}

.careers-who-grid p {
  color: rgba(253, 253, 253, 0.72);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
  margin: 0;
  text-align: center;
}

.careers-who-stack {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.careers-who-stack .section-kicker {
  display: flex;
  justify-content: center;
}

.careers-who-body {
  color: rgba(253, 253, 253, 0.72);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
  margin: 16px 0 0;
}

/* TIMELINE (shared by WHAT YOU GET + WHAT HAPPENS NEXT) */
.careers-timeline-section {
  background: #0F0F0F;
}

.careers-timeline-section .section-kicker {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.careers-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.careers-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(245, 166, 35, 0.28) 5%, rgba(245, 166, 35, 0.98) 12%, rgba(253, 253, 253, 1) 14%, rgba(245, 166, 35, 0.90) 17%, rgba(245, 166, 35, 0.40) 25%, rgba(245, 166, 35, 0.98) 35%, rgba(253, 253, 253, 0.96) 38%, rgba(245, 166, 35, 0.86) 41%, rgba(245, 166, 35, 0.44) 52%, rgba(245, 166, 35, 0.98) 62%, rgba(253, 253, 253, 0.96) 65%, rgba(245, 166, 35, 0.86) 69%, rgba(245, 166, 35, 0.44) 78%, rgba(245, 166, 35, 0.96) 88%, transparent 100%);
  clip-path: polygon(46% 0, 66% 0, 58% 11%, 84% 11%, 42% 26%, 64% 26%, 28% 44%, 58% 44%, 34% 61%, 72% 61%, 42% 78%, 64% 78%, 48% 100%, 30% 100%, 42% 84%, 16% 84%, 48% 67%, 22% 67%, 58% 49%, 30% 49%, 70% 31%, 44% 31%, 78% 15%, 50% 15%);
  filter:
    drop-shadow(0 0 8px rgba(253, 253, 253, 0.72))
    drop-shadow(0 0 18px rgba(245, 166, 35, 0.86))
    drop-shadow(0 0 42px rgba(245, 166, 35, 0.36));
  opacity: 0.96;
  animation: careers-bolt-flicker 2.6s steps(5, end) infinite;
}

.careers-timeline::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  background:
    radial-gradient(circle, rgba(253, 253, 253, 0.40), transparent 8%),
    linear-gradient(180deg, transparent, rgba(245, 166, 35, 0.40), rgba(253, 253, 253, 0.22), rgba(245, 166, 35, 0.34), transparent);
  filter: blur(22px);
  opacity: 0.84;
  pointer-events: none;
  animation: careers-bolt-aura 3.8s var(--ease-out) infinite;
}

.careers-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 78px 1fr;
  align-items: start;
  gap: 0 24px;
  padding: 40px 0;
}

.careers-timeline-item::before {
  content: "";
  position: absolute;
  top: 68px;
  left: 50%;
  width: min(18vw, 190px);
  height: 2px;
  background: linear-gradient(90deg, rgba(245, 166, 35, 0.70), rgba(253, 253, 253, 0.84), transparent);
  filter: drop-shadow(0 0 10px rgba(245, 166, 35, 0.70));
  opacity: 0.44;
  transform: translateX(-50%);
  pointer-events: none;
  animation: careers-spark-flare 4.4s var(--ease-out) infinite;
}

.careers-timeline-item:nth-child(odd)::before {
  transform: translateX(-100%);
}

.careers-timeline-item:nth-child(even)::before {
  transform: translateX(0);
}

.careers-tl-left {
  text-align: right;
  padding-top: 8px;
}

.careers-tl-right {
  text-align: left;
  padding-top: 8px;
}

.careers-tl-node {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(253, 253, 253, 0.68);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 30%, rgba(253, 253, 253, 1), rgba(255, 217, 116, 0.96) 18%, rgba(245, 166, 35, 0.98) 48%, rgba(185, 108, 20, 0.98) 100%);
  color: #0F0F0F;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow:
    0 0 0 5px rgba(245, 166, 35, 0.10),
    0 0 0 11px rgba(245, 166, 35, 0.055),
    0 0 28px rgba(245, 166, 35, 0.72),
    0 0 58px rgba(245, 166, 35, 0.28),
    inset 0 2px 0 rgba(253, 253, 253, 0.58),
    inset 0 -8px 18px rgba(44, 32, 23, 0.18);
  animation: careers-node-pulse 2.8s var(--ease-out) infinite;
}

.careers-tl-node::before,
.careers-tl-node::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  pointer-events: none;
}

.careers-tl-node::before {
  border: 1px solid rgba(245, 166, 35, 0.78);
  background:
    radial-gradient(circle, transparent 54%, rgba(245, 166, 35, 0.20) 56%, transparent 62%),
    conic-gradient(from 0deg, rgba(253, 253, 253, 0.88), transparent 12%, rgba(245, 166, 35, 0.80) 24%, transparent 38%, rgba(253, 253, 253, 0.70) 50%, transparent 66%, rgba(245, 166, 35, 0.76) 80%, transparent 100%);
  box-shadow:
    0 0 28px rgba(245, 166, 35, 0.56),
    inset 0 0 18px rgba(245, 166, 35, 0.18);
  animation: careers-ring-spin 8s linear infinite;
}

.careers-tl-node::after {
  inset: -22px;
  background:
    radial-gradient(circle at 50% 8%, rgba(253, 253, 253, 0.96) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 48%, rgba(245, 166, 35, 0.96) 0 2px, transparent 3px),
    radial-gradient(circle at 12% 64%, rgba(245, 166, 35, 0.88) 0 2px, transparent 3px),
    conic-gradient(from 24deg, transparent 0 12%, rgba(253, 253, 253, 0.92) 13% 16%, transparent 17% 38%, rgba(245, 166, 35, 0.92) 39% 43%, transparent 44% 70%, rgba(253, 253, 253, 0.70) 71% 74%, transparent 75% 100%);
  filter: blur(0.3px) drop-shadow(0 0 11px rgba(245, 166, 35, 0.62));
  opacity: 0.88;
  animation: careers-ring-spin 5.5s linear infinite reverse, careers-ring-flicker 2.1s steps(4, end) infinite;
}

.careers-tl-left h3,
.careers-tl-right h3 {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--px-white-tint);
  margin: 0 0 10px;
}

.careers-tl-left p,
.careers-tl-right p {
  color: rgba(253, 253, 253, 0.62);
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.65;
  margin: 0;
}

@keyframes careers-bolt-flicker {
  0%, 100% {
    opacity: 0.86;
    filter:
      drop-shadow(0 0 8px rgba(253, 253, 253, 0.56))
      drop-shadow(0 0 18px rgba(245, 166, 35, 0.72))
      drop-shadow(0 0 42px rgba(245, 166, 35, 0.30));
  }

  18%, 22%, 54% {
    opacity: 1;
    filter:
      drop-shadow(0 0 12px rgba(253, 253, 253, 0.96))
      drop-shadow(0 0 26px rgba(245, 166, 35, 0.96))
      drop-shadow(0 0 70px rgba(245, 166, 35, 0.48));
  }

  20%, 58% {
    opacity: 0.62;
  }
}

@keyframes careers-bolt-aura {
  0%, 100% {
    opacity: 0.42;
    transform: translateX(-50%) scaleX(0.82);
  }

  45%, 55% {
    opacity: 0.92;
    transform: translateX(-50%) scaleX(1.06);
  }
}

@keyframes careers-spark-flare {
  0%, 100% {
    opacity: 0.16;
    filter: drop-shadow(0 0 6px rgba(245, 166, 35, 0.38));
  }

  34%, 42% {
    opacity: 0.78;
    filter: drop-shadow(0 0 16px rgba(245, 166, 35, 0.86));
  }
}

@keyframes careers-node-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 0 0 5px rgba(245, 166, 35, 0.10),
      0 0 0 11px rgba(245, 166, 35, 0.055),
      0 0 28px rgba(245, 166, 35, 0.72),
      0 0 58px rgba(245, 166, 35, 0.28),
      inset 0 2px 0 rgba(253, 253, 253, 0.58),
      inset 0 -8px 18px rgba(44, 32, 23, 0.18);
  }

  50% {
    transform: scale(1.035);
    box-shadow:
      0 0 0 7px rgba(245, 166, 35, 0.14),
      0 0 0 16px rgba(245, 166, 35, 0.075),
      0 0 42px rgba(245, 166, 35, 0.88),
      0 0 86px rgba(245, 166, 35, 0.38),
      inset 0 2px 0 rgba(253, 253, 253, 0.72),
      inset 0 -8px 18px rgba(44, 32, 23, 0.18);
  }
}

@keyframes careers-ring-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes careers-ring-flicker {
  0%, 100% {
    opacity: 0.62;
  }

  30%, 34%, 72% {
    opacity: 1;
  }

  32%, 76% {
    opacity: 0.42;
  }
}

/* FOUNDER QUOTE */
.careers-quote-section {
  position: relative;
  overflow: hidden;
  background: #0F0F0F;
  text-align: center;
}

.careers-quote-section::before,
.careers-quote-section::after {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.careers-quote-section::before {
  width: 1px;
  background: rgba(245, 166, 35, 0.40);
  filter: drop-shadow(0 0 10px rgba(245, 166, 35, 0.38));
  opacity: 0.78;
}

.careers-quote-section::after {
  width: 54px;
  background:
    radial-gradient(ellipse at center, rgba(253, 253, 253, 0.18) 0%, rgba(245, 166, 35, 0.24) 20%, rgba(245, 166, 35, 0.08) 48%, transparent 72%),
    linear-gradient(180deg, transparent 0%, rgba(245, 166, 35, 0.00) 12%, rgba(245, 166, 35, 0.28) 48%, rgba(245, 166, 35, 0.00) 84%, transparent 100%);
  filter: blur(18px);
  opacity: 0.54;
  animation: careers-clean-line-sheen 5.4s var(--ease-out) infinite;
}

.careers-quote-section .wide-wrap {
  position: relative;
  z-index: 1;
}

.careers-quote {
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  border: none;
}

.careers-quote p {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 40px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.2;
  color: var(--px-amber);
  margin: 0 0 20px;
}

.careers-quote cite {
  display: block;
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 253, 253, 0.5);
}

/* APPLICATION FORM */
.careers-form-section {
  position: relative;
  overflow: hidden;
  background: #0F0F0F;
  padding-bottom: clamp(40px, 4vw, 60px);
}

.careers-form-section + .careers-timeline-section {
  padding-top: clamp(40px, 4vw, 60px);
}

.careers-form-section::before,
.careers-form-section::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.careers-form-section::before {
  top: -2px;
  bottom: -2px;
  width: 1px;
  background: rgba(245, 166, 35, 0.40);
  filter: drop-shadow(0 0 14px rgba(245, 166, 35, 0.50));
  opacity: 0.78;
}

.careers-form-section::after {
  top: clamp(86px, 10vw, 150px);
  width: min(96vw, 1120px);
  height: min(78vw, 640px);
  background:
    radial-gradient(ellipse at 10% 42%, rgba(233, 155, 64, 0.14) 0%, rgba(233, 155, 64, 0.055) 32%, transparent 64%),
    radial-gradient(ellipse at 90% 58%, rgba(233, 155, 64, 0.13) 0%, rgba(233, 155, 64, 0.05) 34%, transparent 66%),
    radial-gradient(ellipse at 50% 104%, rgba(233, 155, 64, 0.15) 0%, rgba(233, 155, 64, 0.055) 36%, transparent 70%);
  filter: blur(50px);
  opacity: 0.38;
  animation: careers-form-ambient-breathe 6.8s var(--ease-out) infinite;
}

.careers-form-section .wide-wrap {
  position: relative;
  z-index: 1;
}

.careers-form-section:has(.contact-two-col) {
  overflow: visible;
  padding-bottom: clamp(18px, 2vw, 32px);
}

.careers-form-section:has(.contact-two-col)::before {
  display: none;
}

.careers-form-card {
  position: relative;
  z-index: 1;
  isolation: isolate;
  max-width: 700px;
  margin: 0 auto;
  background:
    linear-gradient(160deg, #eeeeee 0%, #dcdbdb 52%, #d3d2d2 100%);
  border-radius: 16px;
  padding: clamp(32px, 5vw, 60px);
  border: 1px solid rgba(255, 255, 255, 0.60);
  box-shadow:
    0 0 0 1px rgba(233, 155, 64, 0.10),
    0 34px 76px rgba(0, 0, 0, 0.72),
    0 52px 126px rgba(233, 155, 64, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.70),
    inset 0 -1px 0 rgba(0, 0, 0, 0.10);
}

.careers-form-card::before {
  content: "";
  position: absolute;
  inset: -104px -132px -120px;
  z-index: -1;
  border-radius: 58px;
  background:
    radial-gradient(ellipse at -2% 38%, rgba(233, 155, 64, 0.28) 0%, rgba(233, 155, 64, 0.105) 32%, transparent 66%),
    radial-gradient(ellipse at 102% 62%, rgba(233, 155, 64, 0.24) 0%, rgba(233, 155, 64, 0.09) 34%, transparent 68%),
    radial-gradient(ellipse at 54% 110%, rgba(233, 155, 64, 0.24) 0%, rgba(233, 155, 64, 0.095) 36%, transparent 70%),
    radial-gradient(ellipse at 38% -8%, rgba(233, 155, 64, 0.10) 0%, rgba(233, 155, 64, 0.035) 34%, transparent 68%);
  filter: blur(46px);
  opacity: 0.68;
  pointer-events: none;
  transform: scale(1);
  transform-origin: center;
  animation: careers-form-edge-breathe 5.8s var(--ease-out) infinite;
}

.careers-form-card::after {
  display: none;
}

@keyframes careers-form-ambient-breathe {
  0%, 100% {
    opacity: 0.30;
    transform: translateX(-50%) scale(0.96);
  }

  48%, 56% {
    opacity: 0.48;
    transform: translateX(-50%) scale(1.04);
  }
}

@keyframes careers-form-edge-breathe {
  0%, 100% {
    opacity: 0.56;
    transform: scale(0.985);
  }

  48%, 56% {
    opacity: 0.78;
    transform: scale(1.025);
  }
}

.careers-form-header {
  text-align: center;
  margin-bottom: 32px;
}

.careers-form-header .section-kicker {
  display: flex;
  justify-content: center;
}

.careers-form-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--px-ink);
  margin: 8px 0 12px;
  line-height: 1;
}

.careers-form-sub {
  color: rgba(44, 32, 23, 0.68);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
  margin: 0;
}

.careers-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.careers-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(44, 32, 23, 0.60);
}

.careers-form-grid label.full-width {
  grid-column: 1 / -1;
}

.label-text {
  display: block;
}

.careers-form-grid input,
.careers-form-grid select,
.careers-form-grid textarea {
  width: 100%;
  background: rgba(44, 32, 23, 0.06);
  border: 1px solid rgba(44, 32, 23, 0.16);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--px-ink);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  box-shadow: inset 0 2px 4px rgba(44, 32, 23, 0.06);
}

.careers-form-grid input::placeholder,
.careers-form-grid textarea::placeholder {
  color: rgba(44, 32, 23, 0.30);
}

.careers-form-grid input:focus,
.careers-form-grid select:focus,
.careers-form-grid textarea:focus {
  border-color: var(--px-amber);
  box-shadow: inset 0 2px 4px rgba(44, 32, 23, 0.06), 0 0 0 3px rgba(233, 155, 64, 0.18);
}

.careers-form-grid select option {
  background: #fff;
  color: var(--px-ink);
}

.careers-form-grid textarea {
  resize: vertical;
  min-height: 120px;
}

.careers-form-submit {
  display: block;
  grid-column: 1 / -1;
  width: fit-content;
  margin: 4px auto 0;
  justify-self: center;
  padding: 16px 48px;
  background: var(--px-amber);
  color: #0F0F0F;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.18s, transform 0.12s;
}

.careers-form-submit:hover {
  background: #d4891e;
}

.careers-form-submit:active {
  transform: scale(0.98);
}

.careers-privacy {
  margin: 16px 0 0;
  font-size: 13px;
  color: rgba(44, 32, 23, 0.45);
  text-align: center;
}

/* CLOSING CTA */
.careers-closing {
  background: var(--px-paper);
  text-align: center;
}

.careers-closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--px-ink);
  margin: 0 0 20px;
  line-height: 1;
}

.careers-closing p {
  max-width: 680px;
  margin: 0 auto 32px;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.7;
  color: var(--px-ink);
}

/* CAREERS MOBILE */
@media (max-width: 720px) {
  .careers-who-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .careers-timeline::before,
  .careers-timeline::after {
    display: none;
  }

  .careers-timeline-item {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    gap: 0 16px;
    padding: 24px 0;
  }

  .careers-timeline-item::before {
    display: none;
  }

  .careers-tl-left {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }

  .careers-tl-node {
    grid-column: 1;
    grid-row: 1;
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .careers-tl-right {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }

  .careers-tl-left:empty,
  .careers-tl-right:empty {
    display: none;
  }

  .careers-form-grid {
    grid-template-columns: 1fr;
  }

  .careers-form-card {
    padding: 28px 20px;
  }

  .careers-who .wide-wrap,
  .careers-timeline-section .wide-wrap,
  .careers-quote-section .wide-wrap,
  .careers-closing .wide-wrap {
    text-align: center;
  }

  .careers-who-grid p {
    text-align: center;
  }

  /* Hero */
  .careers-hero .wide-wrap {
    text-align: center;
  }

  .careers-hero h1 {
    font-size: clamp(34px, 10vw, 50px);
    overflow-wrap: break-word;
  }

  .careers-hero p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .careers-hero .sub-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  /* WHO WE ARE body text */
  .careers-who-body {
    overflow-wrap: break-word;
  }

  /* Form */
  .careers-form-headline {
    overflow-wrap: break-word;
  }

  .careers-form-sub {
    overflow-wrap: break-word;
  }

  /* Closing */
  .careers-closing h2 {
    overflow-wrap: break-word;
  }

  .careers-closing p {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (prefers-reduced-motion: reduce) {
  .careers-timeline-section::after,
  .careers-timeline::before,
  .careers-timeline::after,
  .careers-timeline-item::before,
  .careers-tl-node,
  .careers-tl-node::before,
  .careers-tl-node::after {
    animation: none;
  }
}

/* Clean editorial careers timeline override */
.careers-timeline-section {
  position: relative;
  background: #0F0F0F;
  background-size: auto;
  color: var(--px-white-tint);
}

.careers-timeline-section::before,
.careers-timeline-section::after {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.careers-timeline-section::before {
  width: 1px;
  background: rgba(245, 166, 35, 0.48);
  filter: drop-shadow(0 0 10px rgba(245, 166, 35, 0.44));
  opacity: 1;
}

.careers-timeline-section::after {
  width: 54px;
  background:
    radial-gradient(ellipse at center, rgba(253, 253, 253, 0.26) 0%, rgba(245, 166, 35, 0.34) 18%, rgba(245, 166, 35, 0.08) 44%, transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(245, 166, 35, 0.00) 16%, rgba(245, 166, 35, 0.36) 48%, rgba(245, 166, 35, 0.00) 80%, transparent 100%);
  filter: blur(16px);
  opacity: 0.56;
  animation: careers-clean-line-sheen 5.4s var(--ease-out) infinite;
}

.careers-timeline-section .section-kicker {
  color: var(--px-amber);
}

.careers-timeline {
  max-width: 1320px;
  margin: 0 auto;
  padding: 12px 0;
}

.careers-timeline::before {
  display: none;
}

.careers-timeline::after {
  display: none;
}

.careers-timeline-item {
  grid-template-columns: 1fr minmax(150px, 190px) 1fr;
  align-items: center;
  padding: clamp(58px, 7vw, 106px) 0;
}

.careers-timeline-item::before {
  display: none;
}

.careers-tl-left,
.careers-tl-right {
  padding-top: 0;
}

.careers-tl-left {
  padding-right: clamp(18px, 4vw, 68px);
}

.careers-tl-right {
  padding-left: clamp(18px, 4vw, 68px);
}

.careers-tl-node {
  width: auto;
  height: auto;
  justify-self: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(245, 166, 35, 0.20);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(88px, 9vw, 164px);
  font-weight: 400;
  line-height: 0.76;
  text-shadow:
    0 1px 0 rgba(253, 253, 253, 0.14),
    0 0 24px rgba(245, 166, 35, 0.18);
  box-shadow: none;
  animation: careers-ghost-number-breathe 6s var(--ease-out) infinite;
}

.careers-tl-node::before,
.careers-tl-node::after {
  display: none;
}

.careers-tl-left h3,
.careers-tl-right h3 {
  color: var(--px-white-tint);
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: 0.16em;
  line-height: 1.22;
}

.careers-tl-left p,
.careers-tl-right p {
  color: rgba(253, 253, 253, 0.62);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.7;
}

@keyframes careers-clean-line-sheen {
  0%, 100% {
    transform: translateX(-50%) translateY(-24%) scaleY(0.72);
    opacity: 0.18;
  }

  45%, 55% {
    transform: translateX(-50%) translateY(24%) scaleY(1.08);
    opacity: 0.84;
  }
}

@keyframes careers-ghost-number-breathe {
  0%, 100% {
    opacity: 0.72;
  }

  50% {
    opacity: 1;
  }
}

@media (max-width: 720px) {
  .careers-timeline-section::before,
  .careers-timeline-section::after {
    display: block;
    left: 50%;
  }

  .careers-timeline::before,
  .careers-timeline::after {
    display: none;
  }

  .careers-form-section::before {
    left: 50%;
  }

  .careers-quote-section::before,
  .careers-quote-section::after {
    left: 50%;
  }

  .careers-form-section::after {
    width: min(92vw, 520px);
    height: 460px;
  }

  .careers-form-card::before {
    inset: -42px -26px;
  }

  .careers-timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 44px 0;
    text-align: center;
  }

  .careers-tl-node {
    width: auto;
    height: auto;
    order: 1;
    margin: 0 auto;
    font-size: 66px;
  }

  .careers-tl-left,
  .careers-tl-right {
    order: 2;
    max-width: 30ch;
    padding: 0;
    text-align: center;
  }

  .careers-tl-left:empty,
  .careers-tl-right:empty {
    display: none;
  }
}

@media (max-width: 720px) {
  .careers-who + .careers-timeline-section::before,
  .careers-who + .careers-timeline-section::after {
    left: 50%;
  }

  .careers-who + .careers-timeline-section .careers-timeline {
    padding: 20px 0 0;
  }

  .careers-who + .careers-timeline-section .careers-timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 44px 0;
    text-align: center;
  }

  .careers-who + .careers-timeline-section .careers-tl-node {
    order: 1;
    margin: 0 auto;
  }

  .careers-who + .careers-timeline-section .careers-tl-left,
  .careers-who + .careers-timeline-section .careers-tl-right {
    order: 2;
    max-width: 30ch;
    padding: 0;
    text-align: center;
  }

  .careers-who + .careers-timeline-section .careers-tl-left:empty,
  .careers-who + .careers-timeline-section .careers-tl-right:empty {
    display: none;
  }
}

/* =====================================================
   CONTACT REVIEWS
   ===================================================== */

.contact-reviews-section {
  background: #0F0F0F;
  padding-bottom: clamp(40px, 4vw, 60px);
}

.contact-reviews-head {
  text-align: center;
  margin-bottom: 40px;
}

.contact-reviews-kicker {
  display: flex;
  justify-content: center;
}

.contact-reviews-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--px-white-tint);
  line-height: 1;
  margin: 10px 0 16px;
}

.contact-reviews-trust {
  color: rgba(253, 253, 253, 0.60);
  font-size: clamp(14px, 1.4vw, 16px);
  margin: 0;
}

/* =====================================================
   BLOG EMAIL CAPTURE
   ===================================================== */

.blog-email-section {
  background: #F8F8F8;
  padding-top: clamp(24px, 3vw, 40px);
}

.projects-proof:has(+ .blog-email-section) {
  padding-bottom: clamp(24px, 3vw, 40px);
}

.blog-email-card {
  max-width: 680px;
  margin: 0 auto;
  background: #0F0F0F;
  border-radius: 16px;
  padding: clamp(36px, 5vw, 64px);
  border: 1px solid rgba(245, 166, 35, 0.30);
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(245, 166, 35, 0.10),
    0 0 28px rgba(245, 166, 35, 0.30),
    0 0 70px rgba(245, 166, 35, 0.16),
    0 0 130px rgba(245, 166, 35, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.72),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.blog-email-kicker {
  display: flex;
  justify-content: center;
}

.blog-email-headline {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--px-white-tint);
  line-height: 1.0;
  margin: 10px 0 16px;
}

.blog-email-sub {
  color: rgba(253, 253, 253, 0.55);
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.65;
  margin: 0 0 28px;
}

.blog-email-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-email-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.blog-email-fields label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(253, 253, 253, 0.45);
}

.blog-email-fields input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--px-white-tint);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.blog-email-fields input::placeholder {
  color: rgba(253, 253, 253, 0.25);
}

.blog-email-fields input:focus {
  border-color: var(--px-amber);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.blog-email-submit {
  width: 100%;
  padding: 15px 24px;
  background: var(--px-amber);
  color: #0F0F0F;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.18s, transform 0.12s;
}

.blog-email-submit:hover {
  background: #d4891e;
}

.blog-email-submit:active {
  transform: scale(0.98);
}

.blog-email-privacy {
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(253, 253, 253, 0.32);
}

@media (max-width: 600px) {
  .blog-email-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .blog-hero .wide-wrap {
    text-align: center;
  }

  .blog-hero h1,
  .blog-hero p {
    overflow-wrap: break-word;
  }

  .blog-hero .sub-hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* =====================================================
   CONTACT METHOD PILLS
   ===================================================== */

.contact-method-group {
  border: none;
  padding: 0;
  margin: 0;
}

.contact-method-group legend {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(44, 32, 23, 0.55);
}

.contact-method-options {
  display: flex;
  gap: 10px;
}

.contact-method-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(44, 32, 23, 0.06);
  border: 1px solid rgba(44, 32, 23, 0.16);
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: rgba(44, 32, 23, 0.65);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  box-shadow: inset 0 2px 4px rgba(44, 32, 23, 0.06);
}

.contact-method-option input[type="checkbox"] {
  display: none;
}

.contact-method-option:has(input:checked) {
  border-color: var(--px-amber);
  background: rgba(233, 155, 64, 0.12);
  color: var(--px-ink);
  box-shadow: 0 0 0 1px rgba(233, 155, 64, 0.25), inset 0 2px 4px rgba(44, 32, 23, 0.06);
}

.contact-method-option:hover {
  border-color: rgba(44, 32, 23, 0.32);
  color: var(--px-ink);
}

/* =====================================================
   CONTACT TWO-COLUMN LAYOUT
   ===================================================== */

.contact-two-col {
  display: grid;
  grid-template-columns: minmax(0, 760px) 340px;
  justify-content: center;
  gap: clamp(18px, 2vw, 28px);
  align-items: start;
}

.contact-two-col .careers-form-card {
  max-width: none;
  width: 100%;
  margin: 0;
}

.contact-sticky-col {
  position: sticky;
  top: clamp(88px, 9vh, 116px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
}

.contact-side-card {
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 16px;
  padding: 24px;
  box-shadow:
    0 0 0 1px rgba(245, 166, 35, 0.08),
    0 0 28px rgba(245, 166, 35, 0.12),
    0 20px 48px rgba(0, 0, 0, 0.60),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contact-side-kicker {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--px-amber);
  margin: 0 0 12px;
}

.contact-side-headline {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--px-white-tint);
  line-height: 1.1;
  margin: 0 0 16px;
}

.contact-side-map {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #222 url("Images&Videos/ServiceAreas.webp") center / cover no-repeat;
  aspect-ratio: 16 / 8.8;
}

.contact-side-map img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-side-map img[src*="research/images"] {
  opacity: 0;
}

.contact-side-area-btn {
  display: block;
  width: 100%;
  padding: 13px 20px;
  background: transparent;
  border: 1px solid var(--px-amber);
  border-radius: 6px;
  color: var(--px-amber);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  box-sizing: border-box;
}

.contact-side-area-btn:hover {
  background: var(--px-amber);
  color: #0F0F0F;
}

.contact-side-rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-side-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-side-row svg {
  flex-shrink: 0;
  color: var(--px-amber);
}

.contact-side-row > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-side-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253, 253, 253, 0.40);
}

.contact-side-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--px-white-tint);
  text-decoration: none;
  transition: color 0.15s;
}

a.contact-side-value:hover {
  color: var(--px-amber);
}

/* =====================================================
   CONTACT WHAT HAPPENS NEXT TIMELINE
   ===================================================== */

.contact-next-section {
  background: #0F0F0F;
  color: var(--px-white-tint);
  padding-top: clamp(20px, 3vw, 42px);
  padding-bottom: clamp(24px, 3vw, 40px);
}

.contact-next-head {
  max-width: 920px;
  margin: 0 auto clamp(52px, 7vw, 88px);
  text-align: center;
}

.contact-next-head .section-kicker {
  justify-content: center;
  color: var(--px-amber);
}

.contact-next-head h2 {
  margin: 12px 0 0;
  color: var(--px-white-tint);
  font-family: var(--font-display);
  font-size: clamp(38px, 5.8vw, 76px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-next-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 54px);
}

.contact-next-timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(100% / 8);
  right: calc(100% / 8);
  height: 1px;
  background: rgba(245, 166, 35, 0.30);
}

.contact-next-step {
  position: relative;
  text-align: center;
}

.contact-next-node {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  margin: 0 auto 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #F5A623;
  border-radius: 50%;
  background: #0F0F0F;
  color: #F5A623;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  box-shadow:
    0 0 0 8px rgba(245, 166, 35, 0.08),
    0 0 32px rgba(245, 166, 35, 0.18),
    inset 0 0 0 1px rgba(253, 253, 253, 0.04);
}

.contact-next-step h3 {
  max-width: 280px;
  margin: 0 auto 16px;
  color: var(--px-white-tint);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-next-step p {
  max-width: 310px;
  margin: 0 auto;
  color: rgba(253, 253, 253, 0.60);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .contact-next-head {
    margin-bottom: 44px;
  }

  .contact-next-timeline {
    grid-template-columns: 1fr;
    gap: 38px;
    max-width: 620px;
    margin: 0 auto;
  }

  .contact-next-timeline::before {
    top: 36px;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 1px;
    height: auto;
    transform: translateX(-50%);
  }

  .contact-next-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .contact-next-node {
    margin: 0;
  }

  .contact-next-step h3,
  .contact-next-step p {
    max-width: 32ch;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-next-step h3 {
    margin-top: 0;
    margin-bottom: -4px;
  }
}

/* =====================================================
   CONTACT FAQ
   ===================================================== */

.contact-faq-section {
  background: #0F0F0F;
  padding-top: clamp(8px, 1.5vw, 20px);
}

.contact-faq-block {
  margin-top: 0;
}

.contact-faq-head {
  max-width: 880px;
  margin: 0 auto 46px;
  text-align: center;
}

.contact-faq-head .section-kicker {
  justify-content: center;
  color: var(--px-amber);
}

.contact-faq-head h2 {
  margin: 12px 0 0;
  color: var(--px-white-tint);
  font-family: var(--font-display);
  font-size: clamp(38px, 5.4vw, 72px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-faq-section .faq-item {
  border-color: rgba(253, 253, 253, 0.12);
  background:
    radial-gradient(circle at 100% 0%, rgba(233, 155, 64, 0.14), transparent 13rem),
    rgba(253, 253, 253, 0.045);
}

.contact-faq-section .faq-item h3 {
  color: var(--px-white-tint);
}

.contact-faq-section .faq-item p {
  color: rgba(253, 253, 253, 0.68);
}

@media (max-width: 900px) {
  .contact-two-col {
    grid-template-columns: 1fr;
  }

  .contact-two-col .careers-form-card {
    max-width: 700px;
    margin: 0 auto;
  }

  .contact-sticky-col {
    position: static;
  }

}

/* =====================================================
   MOBILE STICKY STACK — SERVICE PANELS (720px and below)
   Overrides the position:relative reset from the main
   mobile block above. Each card stacks on the previous.
   ===================================================== */

@media (max-width: 720px) {
  .service-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .service-panel {
    position: sticky;
    min-height: auto;
  }

  .service-panel:nth-child(1) { top: 72px;  z-index: 1; }
  .service-panel:nth-child(2) { top: 80px;  z-index: 2; }
  .service-panel:nth-child(3) { top: 88px;  z-index: 3; }
  .service-panel:nth-child(4) { top: 96px;  z-index: 4; }
  .service-panel:nth-child(5) { top: 104px; z-index: 5; }
  .service-panel:nth-child(6) { top: 112px; z-index: 6; }
  .service-panel:nth-child(7) { top: 120px; z-index: 7; }
  .service-panel:nth-child(8) { top: 128px; z-index: 8; }
  .service-panel:nth-child(9) { top: 136px; z-index: 9; }
}

/* =====================================================
   HOME PAGE — MOBILE COPY CENTERING (720px and below)
   ===================================================== */

@media (max-width: 720px) {

  /* Hero */
  .hero-copy {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-proof {
    text-align: center;
  }

  /* Pain section */
  .pain-content {
    text-align: center;
    align-items: center;
  }

  .pain-copy {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  /* Service panels */
  .service-panel {
    text-align: center;
  }

  /* Process section */
  .process-sticky {
    text-align: center;
    position: static;
  }

  .process-line {
    display: none;
  }

  .process-steps article {
    text-align: center;
  }

  /* About teaser */
  .about-grid > div:not(.about-image) {
    text-align: center;
  }

  .about-grid .ghost-button {
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
  }

  /* Projects teaser — project row articles */
  .project-row article {
    text-align: center;
  }

  /* Footer cards — all pages mobile */
  .site-footer .footer-grid > * {
    padding: 24px;
    background: #2A2826;
    border: 1px solid rgba(253, 253, 253, 0.08);
    border-radius: 12px;
  }

  .site-footer .footer-logo {
    display: block;
  }

  .site-footer p {
    max-width: 100%;
  }

  /* Projects teaser sticky stack */
  .projects-teaser .project-proof-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .projects-teaser .project-report-card {
    position: sticky;
  }

  .projects-teaser .project-report-card:nth-child(1) { top: 72px; z-index: 1; }
  .projects-teaser .project-report-card:nth-child(2) { top: 80px; z-index: 2; }
  .projects-teaser .project-report-card:nth-child(3) { top: 88px; z-index: 3; }

  /* Process steps sticky stack */
  .process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .process-steps article {
    position: sticky;
    background: #2C2017;
  }

  .process-steps article:nth-child(1) { top: 72px; z-index: 1; }
  .process-steps article:nth-child(2) { top: 80px; z-index: 2; }
  .process-steps article:nth-child(3) { top: 88px; z-index: 3; }

}

/* =====================================================
   CONTACT PAGE — MOBILE CENTRING (720px and below)
   ===================================================== */

@media (max-width: 720px) {

  /* Hero */
  .contact-hero .wide-wrap {
    text-align: center;
  }

  .contact-hero h1,
  .contact-hero p {
    overflow-wrap: break-word;
  }

  .contact-hero .sub-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  /* Side cards — centre content after two-col collapses */
  .contact-sticky-col {
    text-align: center;
  }

  .contact-side-rows {
    text-align: left;
  }

  .contact-side-area-btn {
    display: block;
    text-align: center;
  }

  /* What happens next — tighten heading on mobile */
  .contact-next-head h2 {
    font-size: clamp(30px, 9vw, 48px);
    overflow-wrap: break-word;
  }

  /* FAQ head heading */
  .contact-faq-head h2 {
    font-size: clamp(30px, 9vw, 48px);
    overflow-wrap: break-word;
  }

  /* FAQ cards — centre + sticky stack */
  .contact-faq-section .faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .contact-faq-section .faq-item {
    position: sticky;
    text-align: center;
    background: #2A2826;
    border: 1px solid rgba(233, 155, 64, 0.12);
  }

  .contact-faq-section .faq-item h3 {
    color: var(--px-white-tint);
  }

  .contact-faq-section .faq-item p {
    color: rgba(253, 253, 253, 0.7);
  }

  .contact-faq-section .faq-grid .faq-item:nth-child(1) { top: 72px;  z-index: 1; }
  .contact-faq-section .faq-grid .faq-item:nth-child(2) { top: 82px;  z-index: 2; }
  .contact-faq-section .faq-grid .faq-item:nth-child(3) { top: 92px;  z-index: 3; }
  .contact-faq-section .faq-grid .faq-item:nth-child(4) { top: 102px; z-index: 4; }
  .contact-faq-section .faq-grid .faq-item:nth-child(5) { top: 112px; z-index: 5; }
  .contact-faq-section .faq-grid .faq-item:nth-child(6) { top: 122px; z-index: 6; }

}
