/* ============================================================
   PRO STRIP MELBOURNE — Premium Industrial Design System
   ============================================================ */

:root {
  --bg-0: #0A0A0C;
  --bg-1: #121215;
  --bg-2: #1A1A1F;
  --bg-3: #232329;
  --line: #27272A;
  --line-2: #3F3F46;
  --text: #FFFFFF;
  --text-2: #A1A1AA;
  --text-3: #71717A;
  --orange: #FF5722;
  --orange-2: #FF7A45;
  --orange-dark: #E64A19;
  --silver: #C0C0C0;
  --silver-2: #8a8a92;
  --gold: #C28F2C;
  --container: 1280px;
  --header-h: 162px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg-0) !important; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg-0) !important;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

/* ---------- Grain Texture ---------- */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  z-index: 1;
  opacity: .35;
}

/* ---------- Typography ---------- */
.display, h1, h2, h3, h4, h5, h6, .h-bebas {
  font-family: 'Bebas Neue', 'Archivo Black', sans-serif;
  letter-spacing: 0.01em;
  line-height: 0.95;
  font-weight: 400;
  color: var(--text);
}
.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--orange);
  display: inline-block;
}
.text-orange { color: var(--orange); }
.text-silver { color: var(--silver); }
.muted { color: var(--text-2); }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(255,87,34,.55);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.btn-outline:hover { background: #fff; color: #000; }
.btn-ghost { color: var(--text-2); padding: 10px 0; }
.btn-ghost:hover { color: var(--orange); }
.btn-block { width: 100%; justify-content: center; }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 80;
  background: rgba(10,10,12,.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  height: 162px;
}
.site-header .inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
}
.brand img { height: 146px; width: auto; }
.brand-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}
.brand-text span { color: var(--orange); }
.brand-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}
.nav-main {
  display: none;
  gap: 28px;
  align-items: center;
}
.nav-main a {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-2);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-main a:hover { color: #fff; }
.nav-main a.active { color: #fff; }
.nav-main a.active::after,
.nav-main a:hover::after {
  content: ""; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--orange);
}
.nav-main .has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute; top: 100%; left: -16px;
  background: rgba(18,18,21,.96);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.08);
  padding: 16px;
  min-width: 320px;
  display: none;
  margin-top: 18px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.6);
}
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0; right: 0;
  height: 18px;
  background: transparent;
}
.nav-main .has-dropdown:hover .nav-dropdown,
.nav-main .has-dropdown:focus-within .nav-dropdown { display: grid; }
.nav-dropdown.cols-2 { grid-template-columns: 1fr 1fr; gap: 4px 16px; min-width: 520px; }
.nav-dropdown.cols-3 { grid-template-columns: repeat(3, 1fr); gap: 4px 16px; min-width: 720px; }
.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-2);
  border-left: 2px solid transparent;
  transition: all .2s;
}
.nav-dropdown a:hover { color: #fff; background: rgba(255,87,34,.06); border-left-color: var(--orange); }
.nav-dropdown a::after { display: none; }
.header-cta {
  display: none;
  align-items: center; gap: 16px;
}
.header-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 8px;
  color: #fff;
  white-space: nowrap;
}
.header-phone i { color: var(--orange); }

@media (min-width: 1024px) {
  .nav-main, .header-cta { display: flex; }
}

.menu-btn {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
}
@media (min-width: 1024px) { .menu-btn { display: none; } }

.mobile-nav {
  position: fixed; inset: 0;
  background: rgba(10,10,12,.98);
  z-index: 90;
  display: none;
  padding: 24px;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav .close-btn {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.15);
}
.mobile-nav-list { margin-top: 72px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-list a {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-nav-list details summary {
  list-style: none; cursor: pointer;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-nav-list details[open] summary { color: var(--orange); }
.mobile-nav-list details .sub { display: flex; flex-direction: column; padding: 8px 0 8px 16px; }
.mobile-nav-list details .sub a {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-2);
  border: 0;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 32px);
  padding-bottom: 56px;
  overflow: hidden;
  background: var(--bg-0);
  display: flex;
  align-items: center;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05) saturate(.9) brightness(.45);
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,.55) 0%, rgba(10,10,12,.85) 60%, rgba(10,10,12,1) 100%),
    linear-gradient(90deg, rgba(10,10,12,.8) 0%, rgba(10,10,12,.3) 60%, rgba(10,10,12,.6) 100%);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.2fr 1fr; gap: 80px; } }

.hero-left .eyebrow { margin-bottom: 28px; }
.hero-title {
  font-size: clamp(44px, 6.5vw, 92px);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 24px;
  color: #FFFFFF;
}
.hero-title .stroke {
  -webkit-text-stroke: 1.5px var(--silver);
  color: transparent;
}
.hero-title .accent { color: var(--orange); }
.hero-sub {
  font-size: 17px;
  max-width: 560px;
  color: var(--text-2);
  margin-bottom: 32px;
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin-bottom: 36px;
  max-width: 520px;
}
@media (min-width: 640px) { .hero-trust { grid-template-columns: repeat(4, auto); } }
.hero-trust div {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-2);
}
.hero-trust i { color: var(--orange); font-size: 16px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-form {
  background: rgba(18,18,21,.72);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid rgba(255,255,255,.08);
  padding: 36px 28px;
  position: relative;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.05);
}
.hero-form::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 60px; height: 4px; background: var(--orange);
}
.hero-form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  color: #FFFFFF;
}
.hero-form-sub {
  font-size: 12px; color: var(--text-3);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 22px;
}

/* ---------- Form ---------- */
.form-grid { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 700;
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, background .2s;
  border-radius: 0;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--orange);
  background: rgba(0,0,0,.7);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field select option { background: var(--bg-1); color: #fff; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }

.form-actions { display: grid; gap: 10px; margin-top: 14px; grid-template-columns: 1fr 1fr; }
.form-actions .btn { padding: 14px 18px; font-size: 12px; justify-content: center; }
.form-note { font-size: 11px; color: var(--text-3); margin-top: 10px; text-align: center; }
.form-msg { font-size: 13px; padding: 10px; margin-top: 10px; display: none; }
.form-msg.show { display: block; }
.form-msg.ok { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); color: #4ade80; }
.form-msg.err { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3); color: #fca5a5; }

/* ---------- Sections ---------- */
section { position: relative; z-index: 2; background: var(--bg-0); }
.section { padding: 96px 0; background: var(--bg-0); }
@media (min-width: 1024px) { .section { padding: 128px 0; } }
.section-head { margin-bottom: 64px; max-width: 720px; }
.section-head .title {
  font-size: clamp(36px, 5.5vw, 64px);
  text-transform: uppercase;
  margin-top: 16px;
  color: #FFFFFF;
}
.section-head .title .stroke { -webkit-text-stroke: 1.2px var(--silver); color: transparent; }
.section-head p { color: var(--text-2); margin-top: 18px; font-size: 17px; }

.section-alt { background: var(--bg-1); }
.section-darker { background: #06060a; }

/* ---------- Marquee ---------- */
.review-bar {
  background: var(--bg-1);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 28px 0;
}
.review-bar .row {
  display: flex; gap: 56px; align-items: center; flex-wrap: wrap; justify-content: center;
}
.review-bar .stars { color: #FFB400; font-size: 22px; letter-spacing: 4px; }
.review-bar .stat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  letter-spacing: 0.04em;
  color: var(--text);
  display: flex; align-items: baseline; gap: 8px;
}
.review-bar .stat small {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--text-3);
  text-transform: uppercase;
}
.review-bar .divider { width: 1px; height: 36px; background: rgba(255,255,255,.12); }

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--bg-1);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background .3s, transform .3s;
  display: flex; flex-direction: column;
  min-height: 280px;
}
.service-card:hover { background: var(--bg-2); }
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--text-3);
  margin-bottom: 18px;
}
.service-card .icon {
  width: 54px; height: 54px;
  background: rgba(255,87,34,.1);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: background .3s;
}
.service-card:hover .icon { background: var(--orange); color: #fff; }
.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #FFFFFF;
}
.service-card p { color: var(--text-2); font-size: 14px; flex: 1; }
.service-card .more {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex; align-items: center; gap: 8px;
}

/* ---------- Why us / features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }
.feature {
  padding: 28px 24px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color .3s, transform .3s, background .3s;
}
.feature:hover { border-color: rgba(255,87,34,.5); transform: translateY(-4px); background: rgba(255,87,34,.04); }
.feature i {
  font-size: 28px; color: var(--orange);
  margin-bottom: 16px; display: inline-block;
}
.feature h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #FFFFFF;
}
.feature p { color: var(--text-2); font-size: 14px; }

/* ---------- Process Timeline ---------- */
.timeline { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .timeline { grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; } }
.timeline::before {
  display: none;
}
@media (min-width: 768px) {
  .timeline::before {
    display: block;
    content: ""; position: absolute;
    top: 32px; left: 5%; right: 5%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-2), transparent);
  }
}
.step {
  padding: 24px;
  text-align: left;
  position: relative;
}
.step .step-num {
  width: 64px; height: 64px;
  background: var(--bg-1);
  border: 1px solid var(--line-2);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.step h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #FFFFFF;
}
.step p { color: var(--text-2); font-size: 14px; }

/* ---------- Work In Progress grid ---------- */
.wip-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .wip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .wip-grid { grid-template-columns: repeat(4, 1fr); } }
.wip-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-1);
  border: 1px solid rgba(255,255,255,.06);
}
.wip-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; filter: brightness(.78) saturate(.95); }
.wip-card:hover img { transform: scale(1.06); filter: brightness(.9); }
.wip-card .wip-meta {
  position: absolute; inset: auto 0 0 0;
  padding: 18px 18px 22px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.92));
}
.wip-card .wip-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--orange); font-weight: 700; margin-bottom: 6px;
}
.wip-card .wip-cap {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 0.04em;
  text-transform: uppercase; color: #fff;
}

/* ---------- Portfolio Grid ---------- */
.portfolio-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.portfolio-filter button {
  padding: 10px 18px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-2);
  border: 1px solid rgba(255,255,255,.12);
  transition: all .2s;
}
.portfolio-filter button:hover, .portfolio-filter button.active {
  background: var(--orange); color: #fff; border-color: var(--orange);
}
.portfolio-grid {
  display: grid; gap: 24px; grid-template-columns: 1fr;
}
@media (min-width: 640px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
.project {
  position: relative;
  overflow: hidden;
  background: var(--bg-1);
  aspect-ratio: 4/3;
}
.project img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
  filter: grayscale(.2) brightness(.7);
}
.project:hover img { transform: scale(1.08); filter: grayscale(0) brightness(.8); }
.project .meta {
  position: absolute; inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.92));
}
.project .meta .tag {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange); font-weight: 700;
}
.project .meta h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 6px;
  color: #FFFFFF;
}
.project .meta .loc { font-size: 13px; color: var(--text-2); margin-top: 4px; }
.project.hidden { display: none; }

/* ---------- Before/After slider ---------- */
.compare {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9; user-select: none;
  background: #000;
  cursor: ew-resize;
  max-width: 1100px; margin: 0 auto;
}
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare .after-wrap { position: absolute; inset: 0; overflow: hidden; width: 50%; }
.compare .after-wrap img { width: 100vw; max-width: none; }
.compare .handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: #fff;
  pointer-events: none;
}
.compare .handle::after {
  content: "\f07e";
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--orange); color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  box-shadow: 0 10px 30px -10px rgba(255,87,34,.6);
}
.compare .label-before, .compare .label-after {
  position: absolute; top: 16px;
  padding: 6px 14px;
  background: rgba(0,0,0,.6); backdrop-filter: blur(8px);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 700; color: #fff;
  border: 1px solid rgba(255,255,255,.1);
  z-index: 3;
}
.compare .label-before { left: 16px; }
.compare .label-after { right: 16px; color: var(--orange); border-color: var(--orange); }

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--bg-1);
  border: 1px solid rgba(255,255,255,.06);
  padding: 32px;
  position: relative;
}
.review-card .stars { color: #FFB400; letter-spacing: 3px; margin-bottom: 16px; }
.review-card p { color: var(--text); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.review-card .who {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 16px;
}
.review-card .avatar {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
}
.review-card .name { font-weight: 700; font-size: 14px; }
.review-card .role { font-size: 12px; color: var(--text-3); }

/* ---------- Clients Logo Wall ---------- */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.05);
}
@media (min-width: 640px) { .logo-wall { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .logo-wall { grid-template-columns: repeat(6, 1fr); } }
.logo-cell {
  background: var(--bg-0);
  padding: 32px 16px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--silver);
  transition: color .3s, background .3s;
}
.logo-cell:hover { color: var(--orange); background: var(--bg-1); }

/* ---------- Suburbs Grid ---------- */
.suburbs-grid {
  display: grid; gap: 8px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .suburbs-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .suburbs-grid { grid-template-columns: repeat(4, 1fr); } }
.suburb-tile {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: var(--bg-1);
  border: 1px solid rgba(255,255,255,.05);
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--text-2);
  transition: all .2s;
}
.suburb-tile:hover {
  background: var(--orange); color: #fff; border-color: var(--orange);
  transform: translateX(4px);
}
.suburb-tile i { color: var(--orange); font-size: 12px; }
.suburb-tile:hover i { color: #fff; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  background:
    linear-gradient(135deg, rgba(10,10,12,.88), rgba(10,10,12,.78)),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1920&q=80') center/cover;
  padding: 80px 0;
}
.cta-banner::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 8px; height: 64px; background: var(--orange);
}
.cta-banner .inner {
  display: grid; gap: 24px; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .cta-banner .inner { grid-template-columns: 1.4fr auto; } }
.cta-banner h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  text-transform: uppercase;
  color: #FFFFFF;
}
.cta-banner h2 .accent { color: var(--orange); }
.cta-banner .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
  background: #06060a;
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.site-footer h5 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.site-footer h5::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 32px; height: 2px; background: var(--orange);
}
.site-footer p, .site-footer a { color: var(--text-2); font-size: 14px; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.site-footer ul a:hover { color: var(--orange); }
.footer-brand img { height: 132px; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.footer-bottom {
  margin-top: 64px; padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 12px; color: var(--text-3);
  letter-spacing: 0.08em;
}

/* ---------- Sticky floating actions ---------- */
.sticky-actions {
  position: fixed;
  right: 16px; bottom: 16px;
  z-index: 60;
  display: flex; flex-direction: column; gap: 10px;
}
.sticky-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 14px 32px -8px rgba(0,0,0,.6);
  transition: transform .2s, background .2s;
  border: 1px solid rgba(255,255,255,.1);
  background: var(--bg-1);
}
.sticky-btn.wa { background: #25D366; border-color: #25D366; }
.sticky-btn.call { background: var(--orange); border-color: var(--orange); }
.sticky-btn.quote { background: #fff; color: var(--bg-0); border-color: #fff; }
.sticky-btn:hover { transform: scale(1.08); }
.sticky-btn .pulse {
  position: absolute; width: 100%; height: 100%; border-radius: 50%;
  border: 2px solid currentColor; opacity: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.6); opacity: 0; } }

.sticky-bar-mobile {
  display: flex; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 55;
  background: rgba(10,10,12,.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 8px;
  gap: 6px;
}
.sticky-bar-mobile a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.sticky-bar-mobile a.wa { background: #25D366; }
.sticky-bar-mobile a.call { background: var(--orange); }
.sticky-bar-mobile a.quote { background: #fff; color: #000; }
@media (min-width: 768px) { .sticky-bar-mobile { display: none; } }
@media (max-width: 767px) { .sticky-actions { display: none; } body { padding-bottom: 56px; } }

/* ---------- Quote Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn .25s ease;
}
.modal-overlay.open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--bg-1);
  border: 1px solid rgba(255,255,255,.08);
  width: 100%; max-width: 540px;
  max-height: 90vh; overflow-y: auto;
  padding: 36px 28px;
  position: relative;
}
.modal::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 60px; height: 4px; background: var(--orange);
}
.modal .close-modal {
  position: absolute; top: 12px; right: 12px;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
}
.modal h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #FFFFFF;
}
.modal p.sub {
  font-size: 12px; color: var(--text-3);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 20px;
}

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 72px) 0 80px;
  background:
    linear-gradient(180deg, rgba(10,10,12,.7), rgba(10,10,12,.95)),
    var(--bg-1);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.page-hero .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .25;
  filter: grayscale(.4);
}
.page-hero h1 {
  font-size: clamp(48px, 8vw, 88px);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 12px;
  color: #FFFFFF;
}
.page-hero h1 .accent { color: var(--orange); }
.page-hero .crumbs {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 20px;
}
.page-hero .crumbs a:hover { color: var(--orange); }
.page-hero p { color: var(--text-2); font-size: 17px; max-width: 720px; margin-top: 18px; }

/* ---------- Service detail layout ---------- */
.split-grid {
  display: grid; gap: 64px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .split-grid { grid-template-columns: 1.4fr 1fr; gap: 80px; } }
.prose h2 { font-size: 36px; letter-spacing: 0.02em; text-transform: uppercase; margin: 32px 0 16px; color: #FFFFFF; }
.prose h3 { font-size: 24px; text-transform: uppercase; letter-spacing: 0.04em; margin: 24px 0 12px; color: var(--orange); }
.prose p { color: var(--text-2); margin-bottom: 16px; line-height: 1.75; }
.prose ul { padding-left: 20px; color: var(--text-2); margin-bottom: 16px; }
.prose ul li { margin-bottom: 8px; }
.prose ul li::marker { color: var(--orange); }

.sticky-form-wrap { position: sticky; top: calc(var(--header-h) + 24px); }

/* FAQ */
.faq details {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
}
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--orange);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; transition: transform .3s;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { padding-top: 12px; color: var(--text-2); font-size: 15px; }

/* Trust band near forms */
.trust-band {
  display: grid; gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 16px;
}
@media (min-width: 768px) { .trust-band { grid-template-columns: repeat(3, 1fr); } }
.trust-band .pill {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700;
}
.trust-band .pill i { color: var(--orange); }

/* Map */
.map-wrap {
  position: relative;
  aspect-ratio: 16/10;
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  background: var(--bg-1);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: invert(.92) hue-rotate(180deg) saturate(.5); }

/* Service mini list */
.mini-services { display: grid; gap: 1px; background: rgba(255,255,255,.05); margin-top: 24px; }
.mini-services a {
  background: var(--bg-0);
  padding: 16px 18px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background .2s, color .2s;
}
.mini-services a:hover { background: var(--orange); color: #fff; }
.mini-services a i { color: var(--orange); }
.mini-services a:hover i { color: #fff; }

/* Reveal animations */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
[data-reveal].in { opacity: 1; transform: translateY(0); }

/* Thank you page */
.thank-hero {
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding-top: var(--header-h);
}
.thank-hero .badge {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(34,197,94,.15);
  color: #4ade80;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
  border: 2px solid rgba(34,197,94,.4);
}
