/* ============================================================
   Websites For Tradies - websitesfortradies.net.au
   Brand: WFT Dark #100F24 · Trade Orange #E8610A→#FF7A26
   Cream #F7F4EF · Poppins
   ============================================================ */

:root {
  --wft-dark: #100F24;
  --wft-dark-2: #1A1832;
  --wft-dark-soft: rgba(16, 15, 36, 0.72);
  --wft-dark-dim: rgba(16, 15, 36, 0.55);
  --wft-dark-line: rgba(16, 15, 36, 0.10);
  --wft-dark-hairline: rgba(16, 15, 36, 0.06);

  --trade-orange: #E8610A;
  --trade-orange-text: #B54A05;
  --trade-orange-light: #FF7A26;
  --trade-grad: linear-gradient(to right, #E8610A, #FF7A26);
  --trade-grad-soft: linear-gradient(135deg, rgba(232,97,10,0.10), rgba(255,122,38,0.10));
  --orange-tint: rgba(232,97,10,0.08);
  --orange-border: rgba(232,97,10,0.22);

  --cream: #F7F4EF;
  --cream-2: #F1ECE3;
  --white: #FFFFFF;
  --green: #1F9D55;
  --gold: #FBBC04;

  --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --container: 1200px;
  --radius: 20px;
  --shadow-card: 0 30px 60px -30px rgba(16,15,36,0.18), 0 1px 0 var(--wft-dark-hairline);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--cream);
  color: var(--wft-dark);
  font-family: var(--font);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container-site {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ Buttons ============ */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--font);
  border-radius: 50px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--trade-grad);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border: none;
  box-shadow: 0 12px 30px -10px rgba(232,97,10,0.45);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 16px 36px -12px rgba(232,97,10,0.55); }
.btn-primary .arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  transition: transform .15s ease;
}
.btn-primary:hover .arrow { transform: translateX(3px); }
.btn-secondary {
  background: transparent;
  color: var(--wft-dark);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border: 2px solid var(--wft-dark);
}
.btn-secondary:hover { background: var(--wft-dark); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--trade-orange);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border: 2px solid var(--trade-orange);
}
.btn-ghost:hover { background: var(--trade-orange); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-sm.btn-primary { padding: 11px 22px; }

/* ============ Labels ============ */
.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--trade-orange-text);
}
.label .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--trade-orange);
  box-shadow: 0 0 0 0 rgba(232,97,10,0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(232,97,10,0.55); }
  70% { box-shadow: 0 0 0 9px rgba(232,97,10,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,97,10,0); }
}

/* ============ Top bar ============ */
.topbar {
  background: var(--wft-dark);
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  font-weight: 500;
  padding: 8px 0;
}
.topbar .row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar .stars { color: var(--gold); letter-spacing: 2px; font-size: 12px; }
.topbar .motto { display: none; font-weight: 600; color: var(--white); }
.topbar a:hover { color: var(--white); }
@media (min-width: 720px) { .topbar .motto { display: block; } }
@media (max-width: 599px) {
  .topbar { font-size: 11.5px; }
  .topbar .row { justify-content: center; }
  .topbar a { display: none; }
}

/* ============ Header ============ */
header.site-header {
  position: sticky; top: 0; z-index: 50;
  height: 76px;
  background: rgba(247,244,239,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--wft-dark-hairline);
}
.site-header .row {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 16px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 62px; width: auto; }
nav.primary { display: none; gap: 6px; align-items: center; }
nav.primary a {
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--wft-dark-soft);
  border-radius: 8px;
  transition: color .15s ease;
}
nav.primary a:hover { color: var(--wft-dark); }
nav.primary a.current { color: var(--trade-orange); font-weight: 600; }
.header-cta { display: flex; align-items: center; gap: 14px; }
.call-link {
  display: none; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 600;
  color: var(--wft-dark);
}
.call-link svg { color: var(--trade-orange); }
.call-link:hover { color: var(--trade-orange); }
@media (min-width: 1024px) {
  nav.primary { display: flex; }
  .call-link { display: inline-flex; }
}

/* Mobile nav */
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--wft-dark-line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  color: var(--wft-dark);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--wft-dark);
  color: var(--white);
  padding: 24px;
}
.mobile-menu.open { display: flex; flex-direction: column; }
.mobile-menu .top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu .top img { height: 42px; width: auto; filter: brightness(0) invert(1); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; margin-top: 40px; }
.mobile-menu nav a {
  font-size: 26px; font-weight: 700;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu nav a.current { color: var(--trade-orange-light); }
.mobile-menu .foot { margin-top: auto; display: flex; flex-direction: column; gap: 14px; padding-bottom: 12px; }
.mobile-menu .foot .call-link { display: inline-flex; color: var(--white); font-size: 17px; }

/* ============ Hero ============ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border-bottom: 1px solid var(--wft-dark-hairline);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: var(--trade-grad);
  opacity: 0.08;
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -300px; left: -200px;
  width: 600px; height: 600px;
  background: var(--trade-orange);
  opacity: 0.04;
  filter: blur(100px);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 88px;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1.15fr 1fr; padding-top: 96px; padding-bottom: 112px; gap: 64px; }
}
.hero h1 {
  font-weight: 700;
  font-size: clamp(36px, 5.6vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 20px 0 22px;
}
.hero h1 .accent, .accent-text {
  background: var(--trade-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero h1 .rotator { display: inline-block; min-width: 0; }
.hero .lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--wft-dark-soft);
  max-width: 560px;
  margin: 0 0 30px;
}
.hero .lede strong { color: var(--wft-dark); font-weight: 600; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero .reassure {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 10px 18px;
  font-size: 13.5px;
  color: var(--wft-dark-dim);
  font-weight: 500;
}
.hero .reassure span { display: inline-flex; align-items: center; gap: 6px; }
.hero .reassure svg { color: var(--green); flex-shrink: 0; }

.google-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 1px solid var(--wft-dark-hairline);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 20px -12px rgba(16,15,36,0.25);
}
.google-badge .stars { color: var(--gold); letter-spacing: 1.5px; font-size: 13px; }
.google-badge .sub { color: var(--wft-dark-dim); font-weight: 500; }

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual .phone {
  width: min(340px, 78%);
  filter: drop-shadow(0 40px 60px rgba(16,15,36,0.28));
}
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--wft-dark-hairline);
  box-shadow: var(--shadow-card);
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 600;
}
.float-card .big {
  font-size: 20px; font-weight: 800;
  background: var(--trade-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.float-card .sub { display: block; font-size: 11.5px; color: var(--wft-dark-dim); font-weight: 500; margin-top: 2px; }
.float-card.fc-1 { top: 8%; left: 0; animation: floaty 5s ease-in-out infinite; }
.float-card.fc-2 { bottom: 10%; right: 0; animation: floaty 6s ease-in-out infinite reverse; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============ Sections ============ */
section.panel { padding: 96px 0; position: relative; }
section.panel.tight { padding: 72px 0; }
section.panel.alt { background: var(--white); border-top: 1px solid var(--wft-dark-hairline); border-bottom: 1px solid var(--wft-dark-hairline); }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .label { justify-content: center; }
.section-head h2 {
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 16px 0 16px;
}
.section-head p { color: var(--wft-dark-soft); margin: 0; font-size: 17.5px; }

/* ============ Trust bar ============ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--wft-dark-hairline);
  padding: 30px 0;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (min-width: 880px) { .trust-row { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: flex-start; gap: 14px; }
.trust-item .ic {
  width: 40px; height: 40px;
  background: var(--orange-tint);
  color: var(--trade-orange);
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.trust-item .t { font-size: 14px; line-height: 1.4; }
.trust-item .t strong { display: block; font-weight: 700; font-size: 14.5px; }
.trust-item .t span { color: var(--wft-dark-soft); }

/* ============ Portfolio ============ */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 680px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .work-grid { grid-template-columns: repeat(3, 1fr); } }
.work-card {
  background: var(--white);
  border: 1px solid var(--wft-dark-hairline);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px -28px rgba(16,15,36,0.25);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.work-card:hover { transform: translateY(-6px); box-shadow: 0 34px 60px -30px rgba(16,15,36,0.35); }
.work-card .shot {
  height: 300px;
  overflow: hidden;
  position: relative;
  background: var(--cream-2);
  border-bottom: 1px solid var(--wft-dark-hairline);
}
.work-card .shot img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
  transition: transform 6s ease;
}
.work-card:hover .shot img { transform: translateY(calc(-100% + 300px)); }
.work-card .meta {
  padding: 20px 24px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.work-card .meta h3 { font-size: 17px; font-weight: 700; margin: 0 0 3px; }
.work-card .meta p { font-size: 13px; color: var(--wft-dark-soft); margin: 0; }
.work-card .meta .go {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--orange-tint);
  color: var(--trade-orange);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background .2s ease, color .2s ease;
}
.work-card:hover .meta .go { background: var(--trade-orange); color: var(--white); }

/* ============ Client logo marquee ============ */
.logos-strip { overflow: hidden; position: relative; padding: 8px 0; }
.logos-strip::before, .logos-strip::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.logos-strip::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.logos-strip::after { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.logos-track {
  display: flex; align-items: center; gap: 56px;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.logos-track img {
  height: 76px; width: auto;
  opacity: 0.85;
  transition: opacity .2s ease, filter .2s ease;
}
.logos-track img:hover { opacity: 1; filter: none; }
.logos-strip:hover .logos-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ Trades grid ============ */
.trades-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (min-width: 720px) { .trades-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .trades-grid { grid-template-columns: repeat(4, 1fr); } }
.trade-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--wft-dark);
}
.trade-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform .4s ease, opacity .3s ease;
}
.trade-card:hover img { transform: scale(1.06); opacity: 0.95; }
.trade-card .name {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 16px 14px;
  background: linear-gradient(to top, rgba(16,15,36,0.88), transparent);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}
.trade-card.more {
  background: var(--trade-grad);
  display: flex; flex-direction: column; justify-content: center;
  padding: 22px;
  color: var(--white);
}
.trade-card.more h3 { margin: 0 0 8px; font-size: 19px; font-weight: 700; }
.trade-card.more p { margin: 0 0 14px; font-size: 13.5px; opacity: 0.92; line-height: 1.45; }
.trade-card.more a { font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }

/* ============ Reviews ============ */
.rating-summary {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--white);
  border: 1px solid var(--wft-dark-hairline);
  border-radius: 16px;
  padding: 14px 22px;
  box-shadow: 0 14px 30px -20px rgba(16,15,36,0.3);
}
.rating-summary .score { font-size: 34px; font-weight: 800; line-height: 1; }
.rating-summary .stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.rating-summary .sub { font-size: 12.5px; color: var(--wft-dark-soft); }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 40px;
}
@media (min-width: 720px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--white);
  border: 1px solid var(--wft-dark-hairline);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 18px 36px -26px rgba(16,15,36,0.28);
  display: flex; flex-direction: column; gap: 14px;
}
.review-card .rc-top { display: flex; align-items: center; gap: 12px; }
.review-card .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--trade-grad-soft);
  border: 1px solid var(--orange-border);
  color: var(--trade-orange);
  font-weight: 700; font-size: 16px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.review-card .who strong { display: block; font-size: 14.5px; font-weight: 700; }
.review-card .who .stars { color: var(--gold); font-size: 12px; letter-spacing: 1.5px; }
.review-card p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--wft-dark-soft); }
.review-card .src { font-size: 11.5px; color: var(--wft-dark-dim); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }

/* ============ About / founder ============ */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 980px) { .split { grid-template-columns: 1fr 1fr; gap: 72px; } }
.split .visual { position: relative; }
.split .visual .photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--wft-dark-hairline);
}
.split .visual .photo img { width: 100%; height: auto; }

/* Case-study screenshot: fixed 560px window that scrolls the full page on
   hover (same effect as the homepage work cards). min() clamps the travel to
   0 for screenshots shorter than the window (SR Built, Vogue, Wildheart),
   so they never slide downward. */
.photo.case-scroll { display: block; height: 560px; overflow: hidden; }
.photo.case-scroll img { display: block; transition: transform 9s ease; }
a:hover .photo.case-scroll img,
.photo.case-scroll:hover img { transform: translateY(min(0px, calc(-100% + 560px))); }
.split .copy h2 {
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 16px 0 18px;
}
.split .copy p { color: var(--wft-dark-soft); margin: 0 0 16px; font-size: 16.5px; }
.split .copy p strong { color: var(--wft-dark); }
.split .copy blockquote {
  margin: 22px 0;
  padding-left: 18px;
  border-left: 3px solid var(--trade-orange);
  font-size: 16.5px;
  color: var(--wft-dark);
  font-style: italic;
}
.split .copy .cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

.badge-tag {
  position: absolute;
  bottom: -18px; right: 18px;
  background: var(--wft-dark);
  color: var(--white);
  border-radius: 14px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 20px 40px -20px rgba(16,15,36,0.5);
}
.badge-tag .big {
  display: block;
  font-size: 19px; font-weight: 800;
  background: var(--trade-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Feature checklist */
.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--wft-dark-soft); }
.check-list li strong { color: var(--wft-dark); }
.check-list .tick {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--orange-tint);
  color: var(--trade-orange);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============ Steps ============ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  counter-reset: step;
}
@media (min-width: 720px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step-card {
  background: var(--white);
  border: 1px solid var(--wft-dark-hairline);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 18px 36px -28px rgba(16,15,36,0.25);
}
.step-card .num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--trade-grad);
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  display: grid; place-items: center;
  margin-bottom: 16px;
  box-shadow: 0 10px 22px -10px rgba(232,97,10,0.6);
}
.step-card h3 { margin: 0 0 8px; font-size: 17px; font-weight: 700; }
.step-card p { margin: 0; font-size: 14px; color: var(--wft-dark-soft); line-height: 1.55; }

/* ============ Case study ============ */
.case-panel {
  background: var(--wft-dark);
  border-radius: 24px;
  overflow: hidden;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 980px) { .case-panel { grid-template-columns: 1.1fr 1fr; } }
.case-panel .copy { padding: 48px 36px; }
@media (min-width: 980px) { .case-panel .copy { padding: 64px 56px; } }
.case-panel .copy h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 16px 0 18px;
}
.case-panel .copy blockquote {
  margin: 0 0 20px;
  padding-left: 18px;
  border-left: 3px solid var(--trade-orange-light);
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  font-style: italic;
}
.case-panel .copy .who { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.65); margin-bottom: 28px; }
.case-panel .copy .who strong { color: var(--white); }
.case-panel .shot {
  position: relative;
  min-height: 340px;
  background: var(--wft-dark-2);
}
.case-panel .shot img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ============ Big CTA ============ */
.final-cta {
  background: var(--wft-dark);
  color: var(--white);
  text-align: center;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -250px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: var(--trade-grad);
  opacity: 0.12;
  filter: blur(90px);
  border-radius: 50%;
  pointer-events: none;
}
.final-cta h2 {
  position: relative;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 18px auto 20px;
  max-width: 760px;
}
.final-cta p {
  position: relative;
  color: rgba(255,255,255,0.72);
  max-width: 640px;
  margin: 0 auto 34px;
  font-size: 17px;
}
.final-cta .cta-row { position: relative; display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.final-cta .cities {
  position: relative;
  margin-top: 38px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.final-cta .btn-secondary { color: var(--white); border-color: rgba(255,255,255,0.4); }
.final-cta .btn-secondary:hover { background: var(--white); color: var(--wft-dark); border-color: var(--white); }

/* ============ FAQ ============ */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--wft-dark-hairline);
  border-radius: 16px;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none;
  font-family: var(--font);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--wft-dark);
  text-align: left;
  padding: 22px 26px;
  cursor: pointer;
}
.faq-item button .chev {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--orange-tint);
  color: var(--trade-orange);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .25s ease, background .2s ease, color .2s ease;
}
.faq-item.open button .chev { transform: rotate(180deg); background: var(--trade-orange); color: var(--white); }
.faq-item .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item .answer .inner {
  padding: 0 26px 24px;
  font-size: 15.5px;
  color: var(--wft-dark-soft);
  line-height: 1.65;
}
.faq-item .answer .inner strong { color: var(--wft-dark); }

/* ============ Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
/* Grid/flex items default to min-width:auto, so an unbreakable string (the
   email address) was propagating its min-content width up through
   .contact-ways and widening the whole 1fr track past the viewport. */
.contact-grid > * { min-width: 0; }
@media (min-width: 980px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 64px; } }
.contact-info h2 { font-size: clamp(28px, 3.4vw, 38px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin: 16px 0 18px; }
.contact-info > p { color: var(--wft-dark-soft); font-size: 16.5px; margin: 0 0 28px; }
.contact-ways { display: grid; gap: 14px; }
.contact-way {
  display: flex; align-items: center; gap: 16px;
  background: var(--white);
  border: 1px solid var(--wft-dark-hairline);
  border-radius: 14px;
  padding: 16px 20px;
  transition: transform .15s ease, box-shadow .2s ease;
}
.contact-way:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -22px rgba(16,15,36,0.35); }
.contact-way .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--orange-tint);
  color: var(--trade-orange);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-way .t { font-size: 14px; color: var(--wft-dark-soft); min-width: 0; overflow-wrap: anywhere; }
.contact-way .t strong { display: block; font-size: 15.5px; color: var(--wft-dark); font-weight: 700; }

.form-card {
  background: var(--white);
  border: 1px solid var(--wft-dark-hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 36px;
}
.form-card h3 { margin: 0 0 6px; font-size: 22px; font-weight: 700; }
.form-card .sub { font-size: 14.5px; color: var(--wft-dark-soft); margin: 0 0 26px; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wft-dark-soft);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 15px;
  color: var(--wft-dark);
  background: var(--cream);
  border: 1px solid var(--wft-dark-line);
  border-radius: 12px;
  padding: 13px 16px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--trade-orange);
  box-shadow: 0 0 0 3px rgba(232,97,10,0.15);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12.5px; color: var(--wft-dark-dim); margin-top: 14px; }
.form-success {
  display: none;
  background: rgba(31,157,85,0.1);
  border: 1px solid rgba(31,157,85,0.3);
  color: var(--green);
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 16px;
}
.form-success.show { display: block; }
.form-success.error {
  background: rgba(200, 40, 40, 0.08);
  border-color: rgba(200, 40, 40, 0.3);
  color: #B32222;
}

/* ============ Page hero (inner pages) ============ */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border-bottom: 1px solid var(--wft-dark-hairline);
  padding: 72px 0 64px;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -260px; right: -160px;
  width: 600px; height: 600px;
  background: var(--trade-grad);
  opacity: 0.07;
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero h1 {
  position: relative;
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 18px auto 16px;
  max-width: 820px;
}
.page-hero p {
  position: relative;
  color: var(--wft-dark-soft);
  max-width: 640px;
  margin: 0 auto;
  font-size: 17.5px;
}

/* ============ Footer ============ */
footer.site-footer {
  background: var(--wft-dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  padding-bottom: 56px;
}
@media (min-width: 880px) { .footer-grid { grid-template-columns: 1.3fr 1fr 0.9fr 1fr; gap: 44px; } }
.site-footer .f-brand img { height: 52px; width: auto; filter: brightness(0) invert(1); margin-bottom: 18px; }
.site-footer .f-brand p { margin: 0 0 20px; line-height: 1.65; max-width: 380px; }
.site-footer h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
/* the trades list sets inline columns:2 - display:grid would override it */
.site-footer ul[style*="columns"] { display: block; }
.site-footer ul[style*="columns"] li { margin-bottom: 10px; break-inside: avoid; }
.site-footer ul a { transition: color .15s ease; }
.site-footer ul a:hover { color: var(--trade-orange-light); }
.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.75);
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.socials a:hover { background: var(--trade-orange); color: var(--white); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom .row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px;
}
.footer-bottom a:hover { color: var(--white); }

/* ============ Scroll reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .logos-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============ Sticky mobile call bar ============ */
.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 40;
  display: flex; gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(247,244,239,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--wft-dark-line);
}
.mobile-cta-bar a { flex: 1; padding: 13px 10px; font-size: 14.5px; }
@media (min-width: 768px) { .mobile-cta-bar { display: none; } }
@media (max-width: 767px) { body { padding-bottom: 72px; } }

/* ============ Case study outcome stats ============ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 36px;
}
@media (min-width: 880px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  background: var(--white);
  border: 1px solid var(--wft-dark-hairline);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 18px 36px -28px rgba(16,15,36,0.25);
}
.stat-card .num {
  font-weight: 800;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: var(--trade-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-card .l {
  font-size: 13px;
  color: var(--wft-dark-soft);
  margin-top: 8px;
  line-height: 1.45;
}
.case-article { max-width: 820px; margin: 0 auto; }
.case-article h2 {
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 30px);
  letter-spacing: -0.02em;
  margin: 48px 0 14px;
}
.case-article h2:first-child { margin-top: 0; }
.case-article p { color: var(--wft-dark-soft); font-size: 16.5px; margin: 0 0 16px; }
.case-article ul { color: var(--wft-dark-soft); font-size: 16px; line-height: 1.7; padding-left: 22px; margin: 0 0 16px; }
.case-article li { margin-bottom: 8px; }
.case-article li strong { color: var(--wft-dark); }

/* ============ Dark band (client logo marquee) ============ */
section.panel.dark {
  background: var(--wft-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.panel.dark .section-head h2 { color: var(--white); }
.panel.dark .section-head p { color: rgba(255,255,255,0.65); }
.panel.dark .label { color: var(--trade-orange-light); }
.panel.dark .label .dot { background: var(--trade-orange-light); }
.logos-strip.on-dark::before { background: linear-gradient(to right, var(--wft-dark), transparent); }
.logos-strip.on-dark::after { background: linear-gradient(to left, var(--wft-dark), transparent); }
.logos-strip.on-dark .logos-track img {
  filter: brightness(0) invert(1);
  opacity: 0.75;
}
.logos-strip.on-dark .logos-track img:hover { opacity: 1; filter: brightness(0) invert(1); }

/* 3-up trust row (no-cowboys statement) */
@media (min-width: 880px) { .trust-row.cols-3 { grid-template-columns: repeat(3, 1fr); } }

/* Review card: link to the reviewer's business/project */
.review-card .rc-biz {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--trade-orange-text);
  margin-top: 2px;
}
.review-card .rc-biz:hover { text-decoration: underline; }

/* ============ Package landing page media ============ */
.badge-strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start;
  gap: 28px 48px;
}
.badge-strip img { height: 120px; width: auto; }
@media (max-width: 640px) { .badge-strip img { height: 92px; } }
/* Video band - portrait (9:16) testimonial video flanked by portrait promo cards, all matched height */
.video-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.video-band .side-mock { display: none; }
@media (min-width: 980px) {
  .video-band .side-mock {
    display: block;
    height: 452px;
    width: auto;
    border-radius: 18px;
    box-shadow: 0 24px 48px -30px rgba(16,15,36,0.4);
  }
}
.video-wrap {
  position: relative;
  aspect-ratio: 9 / 16;
  width: min(300px, 74vw);
  border-radius: 22px;
  overflow: hidden;
  background: var(--wft-dark);
  box-shadow: var(--shadow-card);
}
@media (min-width: 980px) {
  .video-wrap { width: auto; height: 540px; }
}
.video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.signature { height: 64px; width: auto; margin: 18px 0 6px; }

/* Package page: scrolling showcase of real websites */
.site-marquee {
  position: relative;
  overflow: hidden;
  padding: 12px 0 4px;
}
.site-marquee::before, .site-marquee::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 110px; z-index: 3; pointer-events: none;
}
.site-marquee::before { left: 0; background: linear-gradient(to right, var(--cream), transparent); }
.site-marquee::after { right: 0; background: linear-gradient(to left, var(--cream), transparent); }
.site-track {
  display: flex;
  width: max-content;
  animation: site-marquee 70s linear infinite;
}
.site-marquee:hover .site-track { animation-play-state: paused; }
@keyframes site-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.site-card { width: 420px; flex-shrink: 0; margin-right: 30px; }
@media (max-width: 640px) { .site-card { width: 320px; } }
.site-frame {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--wft-dark-hairline);
  box-shadow: 0 26px 50px -30px rgba(16,15,36,0.42);
}
.site-bar {
  height: 32px;
  background: var(--cream-2);
  display: flex; align-items: center; gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid var(--wft-dark-hairline);
}
.site-bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(16,15,36,0.16); }
.site-shot { aspect-ratio: 760 / 528; overflow: hidden; background: var(--cream-2); }
.site-shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.site-label {
  display: block; text-align: center;
  font-size: 13.5px; font-weight: 600;
  color: var(--wft-dark-soft);
  margin-top: 14px;
}
@media (prefers-reduced-motion: reduce) { .site-track { animation: none; } }

/* Center a lone orphan review card on the last row (10-review landing grid) */
@media (min-width: 1024px) {
  .reviews-grid > .review-card:last-child:nth-child(3n+1) { grid-column: 2; }
}

/* ============ Google G marks on review content ============ */
.review-card .rc-g {
  margin-left: auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}
.rating-summary .g-mark { display: inline-flex; align-items: center; }
.google-badge .g-mark-sm { display: inline-flex; align-items: center; }

/* ============ Skip to content (keyboard/screen-reader users) ============ */
.skip-link {
  position: fixed;
  top: -60px; left: 16px;
  z-index: 200;
  background: var(--wft-dark);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 0 0 12px 12px;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; }

/* ============ Portrait intro video (Meet Jeremy) ============ */
.video-portrait {
  width: min(340px, 86%);
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  background: var(--wft-dark);
  box-shadow: var(--shadow-card);
  position: relative;
}
.video-portrait video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Plain photo frame - for transparent device mockups (no white card) */
.split .visual .photo.photo-plain {
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}
.split .visual .photo.photo-plain img { width: 100%; height: auto; }

/* ============ Meet the Founder - education & credentials ============ */
.uni-banner {
  display: flex; align-items: center; gap: 20px;
  max-width: 760px; margin: 0 auto 40px;
  background: var(--wft-dark);
  color: var(--white);
  border-radius: 18px;
  padding: 24px 28px;
  box-shadow: 0 24px 48px -30px rgba(16,15,36,0.5);
}
.uni-crest {
  flex-shrink: 0;
  width: 62px; height: 62px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--trade-grad);
  color: var(--white);
}
.uni-text strong { display: block; font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.uni-text span { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5; }

.cred-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 760px) { .cred-grid { grid-template-columns: repeat(3, 1fr); } }
.cred-badge {
  position: relative;
  background: var(--white);
  border: 1px solid var(--wft-dark-hairline);
  border-radius: 18px;
  padding: 30px 26px;
  text-align: center;
  box-shadow: 0 20px 40px -30px rgba(16,15,36,0.3);
}
.cred-badge.featured {
  border-color: var(--orange-border);
  box-shadow: 0 26px 50px -28px rgba(232,97,10,0.4);
}
.cred-ic {
  display: inline-grid; place-items: center;
  width: 66px; height: 66px;
  border-radius: 50%;
  background: var(--orange-tint);
  color: var(--trade-orange);
  margin-bottom: 18px;
}
.cred-badge.featured .cred-ic { background: var(--trade-grad); color: var(--white); }
.cred-badge h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.cred-badge p { font-size: 14px; color: var(--wft-dark-soft); line-height: 1.55; margin: 0; }
.cred-tag {
  position: absolute; top: 14px; right: 14px;
  background: var(--trade-grad);
  color: var(--white);
  font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 5px 11px; border-radius: 50px;
}

/* ============ Case study - real client logo chip ============ */
.client-logo-chip {
  display: flex; align-items: center; justify-content: center;
  width: fit-content;
  background: var(--white);
  border: 1px solid var(--wft-dark-hairline);
  border-radius: 16px;
  padding: 16px 26px;
  margin: 18px auto 6px;
  min-height: 76px;
  box-shadow: 0 18px 40px -28px rgba(16,15,36,0.3);
}
.client-logo-chip img { max-height: 52px; width: auto; }
.client-logo-chip.dark { background: var(--wft-dark); border-color: rgba(255,255,255,0.1); }

/* ============ Mobile header + hero tightening ============ */
@media (max-width: 767px) {
  /* declutter header: only hide the CTA on pages with a hamburger menu (which holds the CTA);
     the package landing page has no hamburger, so it keeps its Enquire button */
  .header-cta:has(.nav-toggle) .btn-primary { display: none; }
  .header-cta { gap: 8px; }
  .site-header .row { gap: 10px; }
  /* tighten the tall hero top gap on small screens */
  .hero-inner { padding-top: 40px; padding-bottom: 56px; gap: 36px; }
}

/* ============ Trustpilot trust badge ============ */
.trustpilot-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 1px solid var(--wft-dark-hairline);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--wft-dark);
  box-shadow: 0 8px 20px -12px rgba(16,15,36,0.25);
  transition: transform .15s ease, box-shadow .2s ease;
}
.trustpilot-badge:hover { transform: translateY(-1px); box-shadow: 0 14px 28px -14px rgba(16,15,36,0.3); }
.trustpilot-badge .tp-star {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 4px;
  background: #00B67A; flex-shrink: 0;
}
.trustpilot-badge .tp-name { font-weight: 700; }
.trustpilot-badge .tp-sub { color: var(--wft-dark-soft); font-weight: 500; }
.trustpilot-badge svg.tp-arrow { color: var(--wft-dark-dim); }

/* Hero badges row (Google rating + Trustpilot) */
.hero-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 22px; }
.hero-badges .google-badge { margin-bottom: 0; }
.hero-badges .trustpilot-badge { padding: 8px 16px; font-size: 13px; }

/* ============================================================
   City landing page — extra sections (AI summary, pricing tiers,
   related links). Additive only; used only by city pages.
   ============================================================ */

/* AI summary box */
.ai-summary {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--wft-dark-hairline);
  border-left: 4px solid var(--trade-orange);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 18px 36px -28px rgba(16,15,36,0.25);
}
.ai-summary .label { margin-bottom: 12px; }
.ai-summary p { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--wft-dark-soft); }
.ai-summary p strong { color: var(--wft-dark); font-weight: 700; }

/* Pricing tiers */
.tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
  align-items: stretch;
}
@media (min-width: 900px) { .tier-grid { grid-template-columns: repeat(3, 1fr); } }
.tier-card {
  background: var(--white);
  border: 1px solid var(--wft-dark-hairline);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 18px 36px -28px rgba(16,15,36,0.25);
  display: flex;
  flex-direction: column;
}
.tier-card.featured {
  border: 2px solid var(--trade-orange);
  box-shadow: 0 26px 50px -24px rgba(232,120,30,0.42);
}
.tier-card .tier-tag {
  align-self: flex-start;
  font-size: 11.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--wft-dark-dim);
  margin-bottom: 12px;
}
.tier-card.featured .tier-tag {
  background: var(--trade-grad); color: var(--white);
  padding: 4px 12px; border-radius: 999px;
}
.tier-card .tier-price { font-size: clamp(23px, 2.6vw, 29px); font-weight: 800; line-height: 1.1; }
.tier-card .tier-sub { font-size: 13.5px; color: var(--wft-dark-dim); margin: 5px 0 18px; font-weight: 600; }
.tier-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.tier-card li { font-size: 13.5px; line-height: 1.5; color: var(--wft-dark-soft); padding-left: 22px; position: relative; }
.tier-card li::before { content: ""; position: absolute; left: 0; top: 6px; width: 8px; height: 8px; border-radius: 50%; background: var(--wft-dark-hairline); }
.tier-card.featured li::before { background: var(--trade-orange); }

/* Related links */
.link-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 12px;
}
@media (min-width: 760px) { .link-grid { grid-template-columns: repeat(3, 1fr); } }
.link-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--wft-dark-hairline);
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 18px 36px -28px rgba(16,15,36,0.25);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.link-card:hover { transform: translateY(-3px); border-color: var(--orange-border); box-shadow: 0 26px 46px -26px rgba(16,15,36,0.35); }
.link-card h3 { margin: 0 0 6px; font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.link-card h3 .go { color: var(--trade-orange); flex: none; }
.link-card p { margin: 0; font-size: 13.5px; color: var(--wft-dark-soft); line-height: 1.55; }

/* ============================================================
   Header dropdown navs (Locations / Industries)
   ============================================================ */
.nav-drop { position: relative; }
.nav-drop > button {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 14px;
  font-family: var(--font);
  font-size: 14.5px; font-weight: 500;
  color: var(--wft-dark-soft);
  background: none; border: 0; border-radius: 8px;
  cursor: pointer;
  transition: color .15s ease;
}
.nav-drop > button:hover, .nav-drop:focus-within > button { color: var(--wft-dark); }
.nav-drop .chev { transition: transform .18s ease; }
.nav-drop:hover .chev, .nav-drop:focus-within .chev { transform: rotate(180deg); }
/* invisible bridge so the menu doesn't close crossing the gap */
.nav-drop::after { content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 16px; }
.drop-menu {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translate(-50%, 8px);
  background: var(--white);
  border: 1px solid var(--wft-dark-hairline);
  border-radius: 16px;
  box-shadow: 0 24px 60px -18px rgba(16,15,36,0.28), 0 2px 8px rgba(16,15,36,0.06);
  padding: 10px;
  min-width: 270px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 300;
}
.nav-drop:hover .drop-menu, .nav-drop:focus-within .drop-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, 0);
}
.drop-menu.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; min-width: 560px; }
.drop-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 12px;
  border-radius: 11px;
  transition: background .13s ease;
}
.drop-menu a:hover { background: var(--orange-tint); }
.drop-menu .di {
  width: 36px; height: 36px; flex: none;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--orange-tint);
  color: var(--trade-orange);
}
.drop-menu a:hover .di { background: var(--trade-grad); color: var(--white); }
.drop-menu .dt { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.drop-menu .dt strong { font-size: 13.5px; font-weight: 600; color: var(--wft-dark); line-height: 1.3; }
.drop-menu .dt small { font-size: 11.5px; color: var(--wft-dark-dim); line-height: 1.4; white-space: nowrap; }

/* Mobile menu link groups */
.mobile-menu .mm-label {
  display: block;
  margin: 26px 0 8px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.mobile-menu .mm-links { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 14px; }
.mobile-menu .mm-links a {
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: 6px 0;
}
.mobile-menu .mm-links a:hover { color: var(--trade-orange-light); }

/* ============================================================
   Auditor card (free-audit hero personalisation)
   ============================================================ */
.auditor-card {
  display: flex; align-items: center; gap: 16px;
  margin-top: 26px;
  max-width: 560px;
  background: var(--white);
  border: 1px solid var(--wft-dark-hairline);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 18px 40px -22px rgba(16,15,36,0.22);
}
.auditor-card .face {
  width: 80px; height: 80px; flex: none;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--trade-orange);
  filter: brightness(1.14);
}
.auditor-card .txt { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.auditor-card .txt strong { font-size: 14.5px; color: var(--wft-dark); line-height: 1.35; }
.auditor-card .txt span { font-size: 13px; color: var(--wft-dark-soft); line-height: 1.5; }
.auditor-card .mock {
  width: 54px; height: auto; flex: none;
  border-radius: 8px;
  margin-left: auto;
}
@media (max-width: 519px) { .auditor-card .mock { display: none; } }

/* Header gets tight with 7 nav items - keep items on one line, compact when narrow */
nav.primary a, .nav-drop > button, .call-link { white-space: nowrap; }
@media (min-width: 1024px) and (max-width: 1439px) {
  nav.primary a, .nav-drop > button { padding: 8px 9px; font-size: 13.5px; }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .call-link { display: none; }
  nav.primary { gap: 2px; }
}

/* ============================================================
   Case study screenshot galleries (our-work project pages)
   ============================================================ */
.gallery-desktop { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; margin-top: 48px; }
.gallery-desktop .shot-frame:first-child { grid-column: 1 / -1; }
.shot-frame {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--wft-dark-line);
  box-shadow: var(--shadow-card);
  background: var(--white);
}
.shot-bar {
  display: flex; gap: 6px;
  padding: 10px 14px;
  background: var(--cream-2);
  border-bottom: 1px solid var(--wft-dark-hairline);
}
.shot-bar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(16,15,36,0.15); }
.shot-bar span:first-child { background: var(--trade-orange); }
.shot-frame img { display: block; width: 100%; height: auto; }
.gallery-mobile {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  margin: 48px auto 0; max-width: 900px;
}
.phone-frame {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 7px solid var(--wft-dark);
  background: var(--wft-dark);
  box-shadow: var(--shadow-card);
}
.phone-frame img { display: block; width: 100%; height: auto; border-radius: 20px; }
@media (max-width: 679px) {
  .gallery-desktop { grid-template-columns: 1fr; }
  .gallery-mobile { grid-template-columns: 1fr; max-width: 300px; }
}

/* Gallery figcaptions - name the page each screenshot shows */
.shot-frame figcaption {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  padding: 10px 14px;
  font-size: 13px; font-weight: 600;
  color: var(--wft-dark-soft);
  border-top: 1px solid var(--wft-dark-hairline);
  background: var(--white);
}
.gallery-mobile figure { display: flex; flex-direction: column; }
.gallery-mobile .phone-wrap { display: flex; flex-direction: column; gap: 10px; margin: 0; }
.gallery-mobile .phone-wrap figcaption {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  text-align: center;
  font-size: 13px; font-weight: 600;
  color: var(--wft-dark-soft);
}

/* 25-industry dropdown needs three columns; long mobile menu needs scroll */
.drop-menu.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; min-width: 800px; }
@media (min-width: 1024px) and (max-width: 1279px) {
  .drop-menu.cols-3 { min-width: 720px; }
  .drop-menu.cols-3 .dt small { display: none; }
}
.mobile-menu { overflow-y: auto; }

/* Review cards: client logo + small phone mockup above their review */
.rc-work {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 16px;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--wft-dark-hairline);
  border-radius: 14px;
  transition: border-color .15s ease, box-shadow .2s ease;
}
.rc-work:hover { border-color: var(--orange-border); box-shadow: 0 10px 26px -14px rgba(16,15,36,0.25); }
.rc-left { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; min-width: 0; }
.rc-left img { max-height: 54px; width: auto; max-width: 170px; object-fit: contain; }
.rc-left.on-dark img { background: var(--wft-dark); padding: 8px 12px; border-radius: 10px; }
.rc-work-tag {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--trade-orange-text);
  font-size: 12px; font-weight: 600;
}
.rc-phone {
  width: 92px; flex: none; margin-left: auto;
  border: 4px solid var(--wft-dark);
  border-radius: 14px;
  overflow: hidden;
  background: var(--wft-dark);
  box-shadow: 0 12px 24px -12px rgba(16,15,36,0.35);
}
.rc-phone img { display: block; width: 100%; height: auto; border-radius: 10px; }

/* Review date (as shown on Google) */
.rc-date { display: block; font-size: 12px; color: var(--wft-dark-dim); margin-top: 2px; }

/* Topbar social icons */
.topbar .tb-right { display: flex; align-items: center; gap: 16px; }
.tb-socials { display: flex; align-items: center; gap: 11px; }
.tb-socials a { display: inline-flex; color: rgba(255,255,255,0.55); transition: color .15s ease; }
.tb-socials a:hover { color: var(--white); }
@media (max-width: 599px) { .tb-socials { display: none; } }
