/* Platapode: home page styles (tokens and reset live in base.css). */

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
}
#top,
#services,
#why-us,
#faq,
#audit,
#how-we-work,
#contact { scroll-margin-top: 84px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,
h2,
h3 { margin: 0; font-weight: 500; text-wrap: balance; }
img, svg { max-width: 100%; }
/* =========================================================
   HERO
========================================================= */
.service-tag {
  font-family: var(--font-mono);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.service-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 8px rgba(14,26,48,.45);
  flex: 0 0 auto;
}
.hero-headline {
  font-family: var(--font-heading);
  font-weight: 420;
  font-size: clamp(44px, 8vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 30px 0;
}
.hero-headline .highlight {
  color: var(--accent-2);
  font-style: normal;
}
.hero-headline .hero-kicker {
  display: block;
  font-size: 0.5em;
  font-weight: 440;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ink-dim);
  margin-bottom: 0.28em;
}
.hero-subheadline {
  font-size: clamp(16px, 1.6vw, 18.5px);
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 46ch;
  margin-bottom: 30px;
}
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  padding: 15px 26px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
}
.btn-primary:hover {
  background: var(--accent-2);
  box-shadow: 0 0 26px rgba(213, 48, 26, 0.4);
  transform: translateY(-1px);
}
.btn-primary .ar {
  transition: transform 0.25s;
}
.btn-primary:hover .ar {
  transform: translateX(3px);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  padding: 15px 26px;
  border: 1px solid var(--rule-strong);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.btn-secondary:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
}
@media (max-width: 768px) {
.cta-group { flex-direction: column; align-items: stretch; }
.btn-primary, .btn-secondary { justify-content: center; text-align: center; }
}
/* =========================================================
   SHARED SHELL
========================================================= */
.shell {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
/* =========================================================
   TRUST BANNER
========================================================= */
.trust-section {
  padding: clamp(20px, 3vw, 34px) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg-1);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 28px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 28px;
  border-right: 1px solid var(--rule);
}
.trust-item:last-child {
  border-right: none;
  padding-right: 0;
}
.trust-icon {
  flex: none;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dim);
}
.trust-icon svg {
  width: 42px;
  height: 42px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-icon-group { width: auto; gap: 0; }
.trust-icon-group svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-icon-au { position: relative; z-index: 2; }
.trust-icon-globe {
  width: 20px !important;
  height: 20px !important;
  stroke-width: 1.1 !important;
  margin-left: -9px;
  position: relative;
  z-index: 1;
}
.trust-highlight { color: var(--on-accent); font-weight: 600; }
.trust-worldwide-line { margin-left: -5px; }
.trust-item h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(15.5px, 1.7vw, 18px);
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 6px;
}
.trust-item p {
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-mute);
  margin: 0;
}
.trust-compact { display: none; }
@media (max-width: 560px) {
.trust-section { padding: 10px 0; }
.trust-grid {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
  }
.trust-item {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 4px;
    border-right: 1px solid var(--rule);
    text-align: center;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
.trust-item:last-child { border-right: none; padding-right: 0; }
.trust-item:first-child { padding-left: 0; }
.trust-item .trust-copy { display: none; }
.trust-icon {
    width: 20px;
    height: 20px;
    flex: none;
  }
.trust-icon svg { width: 20px; height: 20px; stroke-width: 1.6; }
.trust-icon-globe { display: none; }
.trust-compact {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--ink-mute);
    line-height: 1.3;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
  }
}
.trust-section--navy {
  background: var(--navy);
  border-top-color: rgba(255,255,255,0.12);
  border-bottom-color: rgba(255,255,255,0.12);
}
.trust-section--navy .trust-item { border-right-color: rgba(255,255,255,0.14); }
.trust-section--navy .trust-item h3 { color: var(--on-accent); }
.trust-section--navy .trust-item p { color: rgba(255,255,255,0.6); }
.trust-section--navy .trust-compact { color: rgba(255,255,255,0.6); }
.trust-section--navy .trust-icon { color: rgba(255,255,255,0.8); }
@media (max-width: 560px) {
.trust-section--navy .trust-item { border-right-color: rgba(255,255,255,0.14); }
}
/* =========================================================
   INDUSTRIES MARQUEE
========================================================= */
.industries-section {
  padding: 10px 0 12px;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.industries-heading {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin: 0 0 7px;
}
.industries-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 2px;
}
.industries-item {
  font-family: var(--font-heading);
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  white-space: nowrap;
  padding: 0 14px;
  line-height: 1.3;
  position: relative;
}
.industries-item::after {
  content: '·';
  position: absolute;
  right: -2px;
  color: rgba(255,255,255,0.25);
}
.industries-item:last-child::after { display: none; }
@media (max-width: 560px) {
.industries-track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 8px;
    column-gap: 16px;
    max-width: 320px;
    margin: 0 auto;
  }
.industries-item {
    font-size: 12px;
    padding: 0;
    text-align: left;
    white-space: normal;
  }
.industries-item::after { content: none; }
}
/* =========================================================
   INTRO SECTION
========================================================= */
.intro-section {
  padding: clamp(40px, 6vw, 64px) 0 clamp(40px, 6vw, 64px);
  position: relative;
}
.account-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 13px;
  color: var(--sand);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.account-eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sand);
  box-shadow: 0 0 8px var(--sand);
  flex: 0 0 auto;
}
.account-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  align-items: start;
  gap: clamp(32px, 6vw, 80px);
}
.account-title {
  max-width: 980px;
  margin: 16px 0 36px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.06;
}
.account-title span { display: block; }
.account-title em { color: var(--accent-2); font-style: normal; }
.account-description {
  max-width: 56ch;
  margin: 0;
  color: var(--ink-dim);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}
.account-description.is-closing { margin-top: 18px; }
.account-visual {
  width: 100%;
  margin: 0;
  transform: rotate(1.25deg);
  transform-origin: 50% 50%;
}
.account-visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 28px rgba(20, 21, 26, .1));
}
/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 900px) {
.account-intro-layout {
    grid-template-columns: minmax(0, 1.18fr) minmax(240px, .82fr);
    gap: 24px;
  }
.account-visual { margin-left: auto; }
}
@media (max-width: 700px) {
.account-intro-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
.account-visual {
    width: min(420px, 100%);
    margin-inline: auto;
    transform: rotate(.75deg);
  }
.account-title { font-size: 27px; line-height: 1.15; margin: 8px 0 20px; }
}
/* =========================================================
   SITE HEADER
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid var(--rule);
}
@supports not (backdrop-filter: blur(1px)) {
.site-header { background: var(--bg); }
}
.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-dim);
  text-decoration: none;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.nav-cta {
  color: var(--accent);
  background: transparent;
  border: 1.5px solid var(--accent);
  padding: 7.5px 16px;
  border-radius: 2px;
  font-weight: 600;
  transition: background .2s ease, color .2s ease;
}
.nav-links a.nav-cta:hover { background: var(--accent); color: var(--on-accent); }
.nav-icon-row { display: flex; align-items: center; gap: 10px; }
.nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--rule-strong);
  color: var(--ink-dim);
  transition: border-color .2s ease, color .2s ease;
}
.nav-icon-btn:hover { border-color: var(--accent-blue); color: var(--accent-blue); }
.nav-icon-btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { width: 20px; height: 1.5px; background: var(--ink); display: block; }
@media (max-width: 860px) {
.nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--rule);
    padding: 8px clamp(20px, 4vw, 48px) 16px;
    display: none;
  }
.nav-links.is-open { display: flex; }
.nav-links a { padding: 12px 0; border-bottom: 1px solid var(--rule); }
.nav-links a.nav-cta { margin-top: 12px; text-align: center; border-bottom: none; }
.nav-links .nav-icon-row { justify-content: center; gap: 16px; margin-top: 12px; }
.nav-toggle { display: flex; }
}
/* =========================================================
   HERO — standout treatment: interactive canvas field,
   corner ticks, stat/meta row.
========================================================= */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.field-wrap { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
#signalField { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.field-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, var(--bg) 93%);
}
.hero-container {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(72px, 11vw, 120px) clamp(20px, 4vw, 48px) 56px;
}
/* =========================================================
   SHARED — eyebrows + section heads for the sections below
========================================================= */
.eyebrow, .warning-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--accent-2);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.eyebrow::before, .warning-eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 8px var(--accent-2);
  flex: 0 0 auto;
}
.eyebrow.center { justify-content: center; }
.section-head h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin: 16px 0 0;
  max-width: 620px;
  color: var(--ink);
}
/* =========================================================
   WARNING SIGNS
========================================================= */
.warning-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
  border-top: 1px solid var(--rule);
}
.warning-item {
  display: flex;
  align-items: baseline;
  gap: 9px;
  padding: 13px 14px 13px 2px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.warning-item:nth-child(4n) { border-right: none; }
.warning-item:nth-child(n+5) { border-bottom: none; }
.warning-mark {
  width: 5px; height: 5px; border-radius: 50%; flex: none;
  background: var(--accent-2);
  box-shadow: 0 0 6px var(--accent-2);
  transform: translateY(-3px);
}
.warning-item:nth-child(3n+2) .warning-mark { background: var(--accent); box-shadow: 0 0 6px var(--accent); }
.warning-item:nth-child(3n+3) .warning-mark { background: var(--terracotta); box-shadow: 0 0 6px var(--terracotta); }
.warning-item:nth-child(4n) .warning-mark { background: var(--navy); box-shadow: 0 0 6px var(--navy); }
.warning-label { font-family: var(--font-heading); font-size: 14.5px; font-weight: 500; color: var(--ink); }
.warning-recap { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--rule); }
.warning-recap h2 { font-size: clamp(16px, 1.8vw, 20px); margin-top: 8px; max-width: 520px; }
@media (max-width: 700px) {
.warning-recap { margin-top: 28px; padding-top: 20px; }
}
@media (max-width: 760px) {
.warning-list { grid-template-columns: 1fr 1fr; }
.warning-item { border-right: none; padding-right: 14px; }
.warning-item:nth-child(4n) { border-right: none; }
.warning-item:nth-child(n+5) { border-bottom: 1px solid var(--rule); }
.warning-item:nth-child(odd) { border-right: 1px solid var(--rule); padding-right: 18px; }
.warning-item:nth-child(even) { padding-left: 18px; }
.warning-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 520px) {
.warning-item { padding: 10px 10px 10px 2px; gap: 8px; }
.warning-item:nth-child(odd) { padding-right: 10px; }
.warning-item:nth-child(even) { padding-left: 10px; }
.warning-label { font-size: 12.5px; }
}
/* =========================================================
   APPROACH
========================================================= */
.audit-section {
  padding: clamp(56px, 8vw, 88px) 0;
  border-top: 1px solid var(--rule);
}
.audit-panel {
  position: relative;
  background: var(--accent-blue-dim);
  border-radius: 2px;
  padding: clamp(28px, 4vw, 40px);
  border-left: 2px solid var(--accent-blue);
  border-bottom: 2px solid var(--accent-blue);
}
.audit-section .eyebrow { color: var(--sand); }
.audit-section .eyebrow::before { background: var(--sand); box-shadow: 0 0 8px var(--sand); }
.signal-section .eyebrow { color: var(--sand); }
.signal-section .eyebrow::before { background: var(--sand); box-shadow: 0 0 8px var(--sand); }
.audit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-top: clamp(40px, 6vw, 56px);
  border-top: 1px solid var(--rule);
}
.audit-point-mark {
  flex: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--good-dim);
  color: var(--good);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.audit-point-mark svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.why-strip-section {
  padding: clamp(32px, 4.4vw, 44px) 0;
  border-top: 1px solid var(--rule);
  background: var(--bg-1);
}
.why-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-dim);
}
.why-strip-item strong { color: var(--ink); }
@media (max-width: 900px) {
.why-strip-grid { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
}
@media (max-width: 560px) {
.why-strip-grid { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 800px) {
.audit-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 700px) {
#audit .section-head h2 { font-size: 20px; margin-top: 6px; }
.signal-section .section-head h2 { font-size: 20px; margin-top: 6px; }
}
.faq-section {
  padding: clamp(56px, 8vw, 88px) 0;
  border-top: 1px solid var(--rule);
}
.faq-section .acc { margin-top: 32px; }
.approach-body {
  margin-top: 20px;
  max-width: 640px;
  color: var(--ink-dim);
  line-height: 1.65;
  font-size: 15.5px;
}
.pricing-philosophy-section {
  padding: clamp(48px, 6.5vw, 72px) 0;
  border-top: 1px solid var(--rule);
}
.pricing-philosophy-section .card-link { font-size: 15.5px; margin-top: 20px; }
.pricing-callout {
  margin-top: 20px;
  max-width: 640px;
  padding: 10px 16px;
  background: rgba(201,52,18,0.045);
  border-left: 3px solid var(--accent);
}
.pricing-callout-text {
  margin: 0;
  color: var(--ink-dim);
  line-height: 1.6;
  font-size: 13px;
}
.price-figure {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1em;
  color: var(--ink);
}
@media (max-width: 700px) {
.pricing-philosophy-section { padding: 32px 0; }
.pricing-philosophy-section .section-head h2 { font-size: 20px; margin-top: 6px; }
.pricing-philosophy-section .approach-body { font-size: 13.5px; margin-top: 14px; }
.pricing-philosophy-section .approach-close { font-size: 15px; margin-top: 10px; }
.pricing-philosophy-section .card-link { font-size: 14px; margin-top: 16px; }
.pricing-callout { padding: 9px 14px; margin-top: 14px; }
.pricing-callout-text { font-size: 12.5px; }
}
.approach-close {
  margin-top: 14px;
  max-width: 580px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
}
/* =========================================================
   STRATEGY ACCORDION
========================================================= */
.strategy-section {
  padding: clamp(56px, 8vw, 88px) 0;
  border-top: 1px solid var(--rule);
  background: var(--bg-1);
}
#services { background: var(--bg); }
.services-head { position: relative; }
.acc { max-width: 760px; margin-top: 32px; }
#services .section-head h2 { font-size: clamp(24px, 2.8vw, 30px); }
@media (max-width: 700px) {
#services { padding: 32px 0; }
#services .section-head h2 { font-size: 20px; margin-top: 6px; }
#services .acc { margin-top: 18px; }
}
.acc-item { border-bottom: 1px solid var(--rule); }
.acc-trigger {
  display: flex; align-items: center; gap: 16px; width: 100%;
  padding: 18px 0; background: none; border: none; cursor: pointer;
  text-align: left; font: inherit; color: inherit;
}
.acc-num { font-family: var(--font-mono); font-size: 12px; color: var(--ink-mute); flex: none; width: 24px; }
.acc-title { font-family: var(--font-heading); font-weight: 500; font-size: clamp(17px, 3vw, 21px); color: var(--ink); flex: 1; }
.acc-toggle {
  position: relative; flex: none; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--rule-strong);
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.acc-toggle::before, .acc-toggle::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 11px; height: 1.5px; background: var(--ink);
  transform: translate(-50%, -50%);
  transition: background .3s var(--ease);
}
.acc-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.acc-item.is-open .acc-toggle { background: var(--accent); border-color: var(--accent); transform: rotate(45deg); }
.acc-item.is-open .acc-toggle::before, .acc-item.is-open .acc-toggle::after { background: var(--on-accent); }
.acc-panel { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .4s var(--ease), opacity .3s var(--ease); }
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; opacity: 1; }
.acc-panel > div { overflow: hidden; }
.acc-panel p { margin: 0 0 20px calc(24px + 16px); max-width: 46ch; font-size: 13.5px; line-height: 1.6; color: var(--ink-dim); padding-right: 20px; }
/* FAQ — native <details>/<summary> disclosure. Browser-guaranteed
   closed-by-default and single-open-at-a-time (via shared name=""),
   with the same visual language (num / title / toggle) as the
   scope accordion above, reused rather than duplicated. */
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item summary.acc-trigger { list-style: none; }
.faq-item summary.acc-trigger::-webkit-details-marker { display: none; }
.faq-item summary.acc-trigger::marker { content: ""; }
.faq-item[open] .acc-toggle { background: var(--accent); border-color: var(--accent); transform: rotate(45deg); }
.faq-item[open] .acc-toggle::before, .faq-item[open] .acc-toggle::after { background: var(--on-accent); }
.faq-item[open] .acc-panel { grid-template-rows: 1fr; opacity: 1; }
/* FAQ — collapsed by default behind a single click-to-open box,
   so the section doesn't take up space until someone wants it. */
.faq-wrap { background: var(--bg); }
.faq-wrap summary.faq-wrap-trigger { list-style: none; }
.faq-wrap summary.faq-wrap-trigger::-webkit-details-marker { display: none; }
.faq-wrap summary.faq-wrap-trigger::marker { content: ""; }
.faq-wrap-trigger {
  display: flex; align-items: center; gap: 16px;
  padding: 4px 0 20px; cursor: pointer;
}
.faq-wrap-trigger .eyebrow { flex: none; }
.faq-wrap-title {
  font-family: var(--font-heading); font-weight: 500;
  font-size: clamp(19px, 2.6vw, 24px); color: var(--ink);
  flex: 1;
  margin: 0;
}
.faq-wrap-toggle {
  position: relative; flex: none; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--rule-strong);
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.faq-wrap-toggle::before, .faq-wrap-toggle::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 11px; height: 1.5px; background: var(--ink);
  transform: translate(-50%, -50%);
  transition: background .3s var(--ease);
}
.faq-wrap-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-wrap[open] .faq-wrap-toggle { background: var(--accent); border-color: var(--accent); transform: rotate(45deg); }
.faq-wrap[open] .faq-wrap-toggle::before, .faq-wrap[open] .faq-wrap-toggle::after { background: var(--on-accent); }
.faq-wrap[open] .faq-wrap-trigger { border-bottom: 1px solid var(--rule); padding-bottom: 20px; margin-bottom: 4px; }
.faq-wrap-body { padding: 0 0 8px; }
.faq-wrap-body .acc { margin-top: 8px; }
/* =========================================================
   AUDIT FORM
========================================================= */
.audit-body { margin-top: 16px; color: var(--ink-dim); line-height: 1.6; font-size: 15px; max-width: 480px; }
.audit-form {
  margin-top: 32px;
  background: var(--bg);
  border-radius: 2px;
  padding: 22px 22px 24px;
  box-shadow: 0 20px 40px rgba(20,21,26,.08);
  border: 1px solid var(--rule);
  max-width: 640px;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.form-label { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-mute); }
.audit-form input,
.audit-form textarea {
  font-family: var(--font-body); font-size: 14.5px; color: var(--ink);
  border: 1px solid var(--rule-strong); border-radius: 2px; padding: 10px 14px;
  background: var(--bg); width: 100%;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.audit-form textarea { resize: vertical; min-height: 60px; }
.audit-form input:focus,
.audit-form textarea:focus {
  outline: none; border-color: var(--accent-blue); box-shadow: 0 0 0 3px var(--accent-blue-dim);
}
.audit-submit { width: 100%; justify-content: center; margin-top: 2px; cursor: pointer; border: none; }
@media (min-width: 640px) {
.form-row { grid-template-columns: 1fr 1fr; }
.audit-form { padding: 28px 30px; }
}
/* =========================================================
   FINAL CTA + FOOTER
========================================================= */
.final-section {
  position: relative;
  padding: 0 0 56px;
  border-top: 1px solid var(--rule);
}
.final-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 8px;
}
.final-photo {
  position: absolute;
  inset: -18% -8% -20%;
  z-index: 0;
  pointer-events: none;
  background-image: url(../images/final-cta-photo-blue.jpg);  /* blue baked into the photo (approved Hybrid X) */
  background-size: cover;
  background-position: 55% 25%;
  opacity: 0.62;
  -webkit-mask-image: radial-gradient(ellipse 82% 66% at 50% 26%, black 0%, black 50%, rgba(0,0,0,0.88) 65%, rgba(0,0,0,0.45) 82%, transparent 97%);
  mask-image: radial-gradient(ellipse 82% 66% at 50% 26%, black 0%, black 50%, rgba(0,0,0,0.88) 65%, rgba(0,0,0,0.45) 82%, transparent 97%);
}
.final-glow {
  position: absolute;
  inset: -18% -8% -20%;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0;  /* warm glow off for the dusk-blue treatment */
  background:
    radial-gradient(ellipse 70% 50% at 50% 16%, rgba(184,103,46,0.11), transparent 65%),
    radial-gradient(ellipse 55% 50% at 62% 24%, rgba(184,103,46,0.06), transparent 68%),
    radial-gradient(ellipse 60% 45% at 38% 28%, rgba(184,103,46,0.05), transparent 70%);
}
.final-fade {
  position: absolute;
  inset: -18% -8% -20%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 66% 54% at 50% 24%, transparent 72%, rgba(255,255,255,0.32) 88%, var(--bg) 100%);
}
.final-inner { position: relative; z-index: 1; text-align: center; max-width: 560px; margin: 0 auto; }
.final-inner h2 { font-family: var(--font-heading); font-weight: 500; font-size: clamp(30px, 6vw, 44px); line-height: 1.15; margin-top: 14px; color: var(--ink); }
.final-inner p { margin-top: 14px; color: var(--ink-dim); font-size: 15.5px; line-height: 1.6; }
.final-inner .cta-group { margin-left: auto; margin-right: auto; justify-content: center; margin-top: 32px; }
.final-inner .btn-primary { background: var(--navy); }
.final-inner .btn-primary:hover { background: var(--accent-blue); box-shadow: 0 0 26px rgba(14,26,48,.4); }
.brand-note {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 24px auto 0;
  padding: 0 clamp(20px, 4vw, 48px);
}
.brand-note-trigger {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  list-style: none;
  padding: 4px 0;
  width: 100%;
}
.brand-note-trigger::-webkit-details-marker { display: none; }
.brand-note-trigger::marker { content: ""; }
.brand-note-logo { width: 18px; height: 12px; flex: none; }
.brand-note-name { font-family: var(--font-heading); font-size: 12.5px; font-weight: 500; color: var(--ink-dim); }
.brand-note-toggle {
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 0;
  margin-left: auto;
}
.brand-note-toggle::before, .brand-note-toggle::after { width: 9px; background: var(--ink-mute); }
.brand-note[open] .brand-note-toggle { transform: rotate(45deg); }
.brand-note[open] .brand-note-toggle::before, .brand-note[open] .brand-note-toggle::after { background: var(--accent); }
.brand-note-panel { margin-top: 10px; padding-left: 2px; max-width: 440px; }
.brand-note-panel p { margin: 0; font-size: 12.5px; color: var(--ink-mute); line-height: 1.6; }
.final-footer {
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 56px auto 0;
  padding: 28px clamp(20px, 4vw, 48px) 0;
  border-top: 1px solid var(--rule);
  overflow: hidden;
}
.final-footer-word { font-family: var(--font-heading); font-size: 14px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-mute); }
.final-footer p { margin-top: 10px; max-width: 440px; color: var(--ink-mute); font-size: 13.5px; line-height: 1.55; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-contact { margin-top: 18px; display: flex; flex-direction: column; gap: 7px; }
.footer-contact-row { display: flex; align-items: baseline; gap: 10px; font-size: 13px; color: var(--ink-mute); }
.footer-contact-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  flex: none;
  width: 44px;
}
.footer-contact .ph { font-style: italic; opacity: .85; }
.footer-email-link { color: var(--ink-mute); text-decoration: none; transition: color .2s ease; }
.footer-email-link:hover { color: var(--accent-2); }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .04em;
}
.footer-links a {
  color: var(--ink-dim);
  text-decoration: none;
  transition: color .25s var(--ease);
  width: fit-content;
}
.footer-links a:hover { color: var(--accent-2); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  color: var(--ink-mute);
}
.footer-legal a { color: var(--ink-mute); text-decoration: none; }
.footer-legal a:hover { color: var(--accent-2); }
@media (max-width: 640px) {
.footer-grid { grid-template-columns: 1fr; gap: 28px; }
.footer-bottom { flex-direction: column; align-items: flex-start; }
}
/* =========================================================
   MOBILE STICKY CTA BAR
========================================================= */
.mobile-cta-bar { display: none; }
@media all {
.mobile-cta-bar {
  display: flex;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  justify-content: center;
  padding: 14px clamp(20px, 4vw, 48px) calc(14px + env(safe-area-inset-bottom, 0px));
  background: rgba(20,21,26,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%);
  transition: transform .4s var(--ease);
  text-decoration: none;
}
.mobile-cta-bar.visible { transform: translateY(0); }
}
.mobile-cta-bar .btn-primary { width: 100%; max-width: 420px; justify-content: center; pointer-events: none; }
/* =========================================================
   SIGNAL vs SURFACE
========================================================= */
.signal-section {
  padding: clamp(56px, 8vw, 88px) 0;
  border-top: 1px solid var(--rule);
}
@media (max-width: 700px) {
.signal-section { padding: 28px 0; }
}
/* =========================================================
   V2 — SERVICE ACCORDIONS (Google Ads management / Landing page optimisation)
========================================================= */
.v2-lead { margin: 16px 0 0; max-width: 62ch; color: var(--ink-dim); font-size: 15.5px; line-height: 1.7; }
/* =========================================================
   V2 — WHAT WE MANAGE (simple 2x2 grid)
========================================================= */
.simple-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--rule); margin-top: 32px; }
.simple-card { padding: 28px 26px; border-bottom: 1px solid var(--rule); }
.simple-card:nth-child(odd) { border-right: 1px solid var(--rule); }
.simple-card h3 { margin: 0 0 8px; font-family: var(--font-heading); font-weight: 500; font-size: clamp(17px, 2vw, 20px); color: var(--ink); }
.simple-card p { margin: 0; color: var(--ink-dim); font-size: 14px; line-height: 1.6; }
@media (max-width: 640px) {
.simple-grid { grid-template-columns: 1fr; }
.simple-card:nth-child(odd) { border-right: none; }
}
/* =========================================================
   V2 — STEP LIST (How we work / What happens when you contact us)
========================================================= */
.step-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.step-item {
  border: 1px solid var(--rule);
  border-top: 3px solid var(--accent-2);
  border-radius: 2px;
  background: var(--bg);
  padding: 20px 16px 22px;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.step-item:hover { background: var(--bg-1); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-dim);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 14px;
}
.step-body h3 { margin: 0 0 8px; font-family: var(--font-heading); font-weight: 500; font-size: 16px; color: var(--ink); }
.step-body p { margin: 0; color: var(--ink-dim); font-size: 13px; line-height: 1.55; }
@media (max-width: 900px) {
.step-list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
#how-we-work { padding: 28px 0; }
#how-we-work .section-head h2 { font-size: 19px; margin-top: 4px; }
.step-list { grid-template-columns: repeat(2, 1fr); margin-top: 16px; gap: 10px; }
.step-item { padding: 14px 12px 16px; }
.step-num { width: 22px; height: 22px; font-size: 11px; margin-bottom: 10px; }
.step-body h3 { font-size: 14.5px; margin-bottom: 4px; }
.step-body p { font-size: 12px; line-height: 1.45; }
}
@media (max-width: 460px) {
.step-list { grid-template-columns: 1fr; }
}
/* =========================================================
   FUNNEL STRIP
========================================================= */
/* =========================================================
   V2 — CHANNELS GRID (boxed cards, restored)
========================================================= */
.channels-section { padding: clamp(48px, 7vw, 72px) 0 clamp(24px, 4vw, 40px); }
.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.channels-card {
  --card-accent: var(--accent-2);
  --card-tint: var(--accent-dim);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--card-accent);
  border-radius: 2px;
  background: var(--bg);
  padding: 20px 20px 22px;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.channels-card:hover { background: var(--bg-1); }
.channels-card:nth-child(2),
.channels-card:nth-child(4) {
  --card-accent: var(--accent-blue);
  --card-tint: var(--accent-blue-dim);
}
.channels-card:nth-child(3n) {
  --card-accent: var(--terracotta);
  --card-tint: var(--terracotta-dim);
}
.channels-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 16px;
}
.channels-label {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute);
  padding-top: 5px;
}
.channels-icon {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--card-tint);
  color: var(--card-accent);
  display: flex; align-items: center; justify-content: center;
}
.channels-icon svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.channels-card h3 { font-family: var(--font-heading); font-weight: 500; font-size: 17px; margin: 0 0 8px; color: var(--ink); }
.channels-sub { margin: 0; font-size: 12.5px; color: var(--ink-mute); line-height: 1.55; }
@media (max-width: 800px) {
.channels-section { padding-top: 32px; }
.channels-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 18px; }
.channels-card { padding: 16px 16px 18px; }
}
@media (max-width: 360px) {
.channels-grid { grid-template-columns: 1fr; }
}
/* =========================================================
   V2 — CARD LINK (small text CTA reused in a few places)
========================================================= */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: underline;
  text-decoration-color: rgba(46,82,102,0.35);
  text-underline-offset: 3px;
  transition: text-decoration-color .2s var(--ease);
}
.card-link:hover { text-decoration-color: var(--accent-blue); }
.simple-card .card-link { margin-top: 14px; }
/* Lead form text — solid ink; only placeholders stay grey */
.audit-form .form-label { color: var(--ink); }
.audit-form input::placeholder, .audit-form textarea::placeholder { color: rgba(20,21,26,0.42); opacity: 1; }
/* "Sound familiar?" as its own section, between Industries and the fee */
.warning-section { padding: clamp(40px, 6vw, 64px) 0; }
.warning-section .warning-recap { margin-top: 0; padding-top: 0; border-top: none; }
@media (max-width: 700px) {
.warning-section { padding: 28px 0; }
}
.brand-note-logo { width: auto; height: 13px; opacity: .45; }
/* Platypus line stencils: absolutely positioned, so they never add height or
   scrolling; faint, behind copy, and ignored by clicks and screen readers. */
.stencil { position: absolute; z-index: 0; height: auto; pointer-events: none; user-select: none; opacity: .405; }
.intro-section, .warning-section, .audit-intro, .brand-note-shell { position: relative; }
.intro-section > .shell, .warning-section > .shell, .audit-intro > *:not(.stencil) { position: relative; z-index: 1; }
.intro-section, .warning-section { overflow: hidden; }
.stencil--hero    { width: clamp(96px, 17vw, 250px); top: clamp(30px, 6.5vw, 96px); right: clamp(12px, 4vw, 56px); opacity: .45; }  /* sand gold, matching the Ready-when-you-are Plotti */
.stencil--intro   { width: clamp(70px, 10vw, 140px); top: clamp(14px, 2vw, 22px); right: clamp(12px, 1.6vw, 24px); }
.stencil--warning { width: clamp(64px, 10vw, 140px); top: clamp(14px, 2.5vw, 30px); right: clamp(12px, 4vw, 56px); opacity: .405; }
.stencil--audit   { width: clamp(64px, 11vw, 140px); top: 0; right: 0; opacity: .405; }
.stencil--final   { width: clamp(84px, 13vw, 190px); top: clamp(18px, 3vw, 40px); right: clamp(14px, 6vw, 96px); z-index: 1; opacity: .74; mix-blend-mode: multiply; }
@media (max-width: 800px) {
.stencil--audit { width: 52px; top: -34px; }
}
.brand-note { position: relative; z-index: 1; }
/* Full-width sign-off band above the footer: warm sand, Plotti peeking up from the bottom-right */
.plotti-banner {
  position: relative; overflow: hidden;
  margin-top: 32px;
  background: var(--bg-2);
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.plotti-inner {
  display: flex; align-items: center; justify-content: center;
  min-height: clamp(76px, 8vw, 96px);
  padding-block: 14px;
}
.plotti-banner img {
  position: absolute; right: 0; bottom: 0;   /* flush to the screen edge so the tail runs off it */
  width: clamp(89px, 10vw, 122px); height: auto; opacity: .88; pointer-events: none;
}
.plotti-banner p {
  margin: 0; padding-inline: calc(clamp(89px, 10vw, 122px) + 12px); text-align: center;
  font-family: var(--font-heading); font-weight: 400;
  font-size: clamp(16px, 1.9vw, 20px); letter-spacing: -.005em; color: var(--ink);
}
.plotti-banner + .final-footer { margin-top: 0; border-top: none; }
.plotti-banner--mid { margin-top: 0; }  /* copy under "Sound familiar?" — section padding already gives the gap */
@media (max-width: 640px) {
.plotti-inner { justify-content: flex-start; }
.plotti-banner p { padding: 0 calc(89px + 8px) 0 0; text-align: left; white-space: nowrap; font-size: 16px; }
}
@media (max-width: 380px) {
.plotti-banner p { white-space: normal; font-size: 15px; line-height: 1.3; }
}
/* Hero: quiet 'Talk to a specialist' link under the main button */
.hero-contact { display: flex; margin-top: 14px; }
.hero-call-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 0; font-size: 14px; font-weight: 500;
  color: var(--ink-dim); text-decoration: none; transition: color .2s ease;
}
.hero-call-link:hover { color: var(--accent-2); }
.hero-contact { align-items: center; flex-wrap: wrap; column-gap: 28px; row-gap: 2px; }
.hero-contact-svg { width: 15px; height: 15px; flex: none; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (min-width: 861px) {
.nav-icon-row { display: none; }
}

/* =========================================================
   FINAL COPY (23 Sept 2026) — additions for the approved copy
========================================================= */
@media (min-width: 561px) {
  .trust-grid--three { grid-template-columns: repeat(3, 1fr); }
}
.trust-icon-world { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.4; }
@media (max-width: 560px) {
  .trust-icon-world { width: 20px; height: 20px; stroke-width: 1.6; }
}
.account-lead {
  margin: 18px 0 0;
  max-width: 34ch;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.35;
  color: var(--ink);
}
.channels-section > .shell > .eyebrow { margin-bottom: 0; }
.channels-card h3 { text-wrap: balance; }
.channels-note {
  margin: 22px 0 0;
  max-width: 68ch;
  color: var(--ink-dim);
  font-size: 14.5px;
  line-height: 1.65;
}
@media (max-width: 800px) and (min-width: 361px) {
  .channels-grid--nine .channels-card:last-child { grid-column: 1 / -1; }
}
.why-strip-head { margin-bottom: 26px; }
.why-strip-head .v2-lead { margin-top: 10px; }
.approach-close-sub {
  display: block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--ink-dim);
}
.audit-section--info .audit-grid { align-items: start; }
.audit-cta { margin-top: 26px; }
.audit-checklist {
  border: 1px solid var(--rule);
  border-top: 3px solid var(--navy);
  background: var(--bg);
  padding: 24px 26px 10px;
}
.audit-checklist-label {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.audit-checklist ol { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; column-gap: 24px; }
.audit-checklist li {
  display: flex; align-items: baseline; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--ink);
}
.audit-checklist li span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--accent);
  letter-spacing: .06em;
}
.audit-checklist li:nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 380px) {
  .audit-checklist ol { grid-template-columns: 1fr; }
  .audit-checklist li:nth-last-child(2) { border-bottom: 1px solid var(--rule); }
}
.industries-note {
  margin: 10px auto 2px;
  max-width: 70ch;
  text-align: center;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
}
.faq-item .acc-panel p { max-width: 64ch; }
.faq-item .acc-panel ul {
  margin: -8px 0 20px calc(24px + 16px);
  padding-left: 18px;
  max-width: 60ch;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-dim);
}
.faq-item .acc-panel li { margin-bottom: 4px; }
.faq-item .acc-panel p:not(:last-child) { margin-bottom: 12px; }
.faq-item .acc-panel ul { margin-top: 0; margin-bottom: 12px; }
.account-lead + .account-description { margin-top: 16px; }
.account-description + .account-description { margin-top: 12px; }
.account-description + .account-description.is-closing { margin-top: 18px; }
.audit-section--info .audit-grid { border-top: none; }
@media (max-width: 700px) { .approach-close-sub { font-size: 14px; } }
/* No lock-in trust banner (navy, above pricing) */
.lockin-banner {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.lockin-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 32px);
  min-height: 132px;
  padding-top: 26px;
  padding-bottom: 26px;
}
.lockin-stencil {
  flex: none;
  width: clamp(78px, 9vw, 112px);
  height: auto;
  align-self: flex-end;
  margin-bottom: -26px;
  filter: brightness(0) invert(1);
  opacity: .9;
  pointer-events: none;
  user-select: none;
}
.lockin-title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.15;
  color: #fff;
}
.lockin-sub {
  margin: 6px 0 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
}
@media (max-width: 560px) {
  .lockin-inner { min-height: 0; padding-top: 22px; padding-bottom: 22px; gap: 14px; }
  .lockin-stencil { width: 70px; margin-bottom: -22px; }
  .lockin-sub { font-size: 13.5px; }
}
.trust-icon-au path { vector-effect: non-scaling-stroke; stroke-width: 1.3; stroke-linejoin: round; }
/* Slimmer lock-in banner */
.lockin-inner { min-height: 0; padding-top: 14px; padding-bottom: 14px; gap: 18px; }
.lockin-stencil { width: 52px; margin-bottom: -14px; }
.lockin-copy { display: flex; flex-wrap: wrap; align-items: baseline; column-gap: 14px; row-gap: 2px; }
.lockin-title { font-size: clamp(18px, 2vw, 22px); }
.lockin-sub { margin: 0; font-size: 13.5px; }
@media (max-width: 560px) {
  .lockin-inner { padding-top: 12px; padding-bottom: 12px; gap: 12px; }
  .lockin-stencil { width: 42px; margin-bottom: -12px; }
  .lockin-title { font-size: 17px; }
  .lockin-sub { font-size: 12.5px; }
}
/* How we work — click-to-open items */
.why-strip-head { margin-bottom: 16px; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 32px; border-top: 1px solid var(--rule); }
.why-item { border-bottom: 1px solid var(--rule); }
.why-item summary {
  list-style: none;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0;
  cursor: pointer;
  font-size: 14px; line-height: 1.4; color: var(--ink);
}
.why-item summary::-webkit-details-marker { display: none; }
.why-item summary::marker { content: ""; }
.why-item summary .audit-point-mark { margin-top: 0; }
.why-item summary strong { flex: 1; font-weight: 600; }
.why-toggle { position: relative; flex: none; width: 18px; height: 18px; border: 1px solid var(--rule-strong); border-radius: 50%; transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease); }
.why-toggle::before, .why-toggle::after { content: ""; position: absolute; left: 50%; top: 50%; width: 8px; height: 1.5px; background: var(--ink); transform: translate(-50%, -50%); }
.why-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.why-item[open] .why-toggle { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); }
.why-item[open] .why-toggle::before, .why-item[open] .why-toggle::after { background: #fff; }
.why-item summary:hover strong { color: var(--accent-2); }
.why-item p { margin: -4px 0 14px 32px; max-width: 52ch; font-size: 13.5px; line-height: 1.6; color: var(--ink-dim); }
@media (max-width: 700px) { .why-grid { grid-template-columns: 1fr; } }
.why-grid { align-items: start; }
/* How it works — compact */
#how-we-work { padding-top: clamp(32px, 5vw, 52px); padding-bottom: clamp(32px, 5vw, 52px); }
.step-list { margin-top: 18px; gap: 10px; }
.step-item { padding: 14px 14px 16px; }
.step-num { margin-bottom: 10px; }
.step-body h3 { margin-bottom: 4px; }
@media (max-width: 900px) {
  .step-list { grid-template-columns: 1fr; gap: 0; margin-top: 14px; border-top: 2px solid var(--accent-2); }
  .step-item {
    display: flex; align-items: baseline; gap: 12px;
    border: none; border-bottom: 1px solid var(--rule); border-radius: 0;
    background: transparent; padding: 11px 0;
  }
  .step-item:hover { background: transparent; }
  .step-num { flex: none; width: 22px; height: 22px; font-size: 10.5px; margin: 0; transform: translateY(-1px); }
  .step-body { display: flex; align-items: baseline; gap: 12px; flex: 1; min-width: 0; }
  .step-body h3 { flex: none; width: 84px; margin: 0; font-size: 15px; }
  .step-body p { font-size: 13px; line-height: 1.45; }
}
@media (max-width: 380px) {
  .step-body { display: block; }
  .step-body h3 { width: auto; margin-bottom: 2px; }
}
.services-lead { margin-top: 10px; }
/* Google Ads Management list — tighter to match other sections */
#services { padding: clamp(36px, 5vw, 56px) 0; }
#services .acc { margin-top: 18px; }
#services .acc-trigger { padding: 11px 0; gap: 14px; }
#services .acc-title { font-size: clamp(15px, 1.6vw, 17px); }
#services .acc-toggle { width: 22px; height: 22px; }
#services .acc-panel p { margin-bottom: 12px; font-size: 13px; }
#services .services-lead { font-size: 14.5px; margin-top: 8px; }
@media (max-width: 700px) {
  #services { padding: 28px 0; }
  #services .acc-trigger { padding: 10px 0; }
  #services .acc-title { font-size: 15px; }
}

/* =========================================================
   MOBILE PASS (phones)
========================================================= */
@media (max-width: 560px) {
  /* Closing CTA: keep a side gutter so buttons don't run edge to edge */
  .final-inner { padding: 0 20px; }
  .final-inner .cta-group { flex-direction: column; gap: 10px; }
  .final-inner .cta-group > a { width: 100%; justify-content: center; }

  /* Channels: one compact card per row instead of tall, cramped pairs */
  .channels-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 14px; }
  .channels-card { padding: 14px 16px 15px; }
  .channels-top { margin-bottom: 6px; }
  .channels-label { padding-top: 3px; }
  .channels-card h3 { margin: 0 0 4px; font-size: 17px; }
  .channels-sub { margin: 0; font-size: 13px; line-height: 1.5; }
  .channels-icon { width: 30px; height: 30px; }
  .channels-section { padding-top: 32px; padding-bottom: 24px; }

  /* Audit form: less nested padding so the fields get the width */
  .audit-panel { padding: 14px 12px; }
  .audit-form { margin-top: 0; padding: 18px 16px 20px; }
  .audit-fields .form-row { gap: 0; }
  .audit-fields .form-field { margin-bottom: 14px; }
  .audit-form input, .audit-form textarea { font-size: 16px; } /* stops iOS zooming into fields */
  .audit-grid { gap: 22px; }

  /* Bigger tap targets for small text links */
  .card-link { padding: 10px 0; margin-top: 0; }
  .footer-links a { display: inline-block; padding: 8px 0; }
  .footer-links { gap: 0 !important; }
  .footer-email-link { display: inline-block; padding: 8px 0; }
  .hero-call-link { padding: 8px 0; }
  .brand-note-trigger { min-height: 44px; }
}
@media (max-width: 560px) {
  /* Channels: icon left, text right — short rows */
  .channels-card { display: grid; grid-template-columns: 30px 1fr; column-gap: 14px; align-items: start; padding: 13px 14px; }
  .channels-top { grid-row: 1 / 3; margin: 0; }
  .channels-label { display: none; }
  .channels-card h3 { grid-column: 2; font-size: 16px; }
  .channels-sub { grid-column: 2; }
  /* one divider above the audit section, not two */
  #audit .audit-grid { border-top: none; padding-top: 0; }
  #audit { padding-top: 36px; }
  .nav-toggle { min-width: 44px; min-height: 44px; }
}
@media (max-width: 700px) {
  .why-strip-head h2, .warning-recap h2, #how-we-work .section-head h2 { font-size: 20px; margin-top: 4px; }
  .why-strip-section { padding: 28px 0; }
  .why-strip-head { margin-bottom: 10px; }
}
#audit .audit-grid { border-top: none; padding-top: 0; }
.signal-section--final { border-top: 1px solid var(--rule); padding: clamp(28px, 4.5vw, 48px) 0 clamp(20px, 3vw, 32px); }
.signal-section--final .section-head h2 { font-size: clamp(20px, 2.6vw, 28px); }
.signal-section--final .simple-grid { margin-top: 20px; }
.simple-grid--single { grid-template-columns: 1fr; }
.simple-grid--single .simple-card { border-right: none; border-bottom: none; }
/* Get in touch (desktop): platypus sits beside the heading */
@media (min-width: 801px) {
  .audit-section--final .audit-intro { display: flex; align-items: center; gap: 28px; }
  .audit-section--final .stencil--audit { position: static; order: 2; width: 120px; flex: none; }
}
/* Get in touch — spacing pass */
.audit-section--final { padding-top: clamp(36px, 5vw, 56px); padding-bottom: clamp(28px, 4vw, 48px); }
.audit-section--final .audit-intro { display: flex; align-items: center; gap: 20px; }
.audit-section--final .stencil--audit { position: static; order: 2; flex: none; width: clamp(64px, 9vw, 120px); top: auto; right: auto; }
.audit-section--final .section-head h2 { margin-top: 0; }
@media (max-width: 900px) {
  .audit-section--final .audit-grid { grid-template-columns: 1fr; gap: 16px; }
  .audit-section--final .audit-panel { padding: 18px; }
  .audit-section--final .audit-form { margin-top: 0; }
}
@media (max-width: 560px) {
  .audit-section--final { padding-top: 28px; }
  .audit-section--final .audit-panel { padding: 12px; }
  .audit-section--final .stencil--audit { width: 56px; }
}
@media (max-width: 900px) { .audit-section--final .audit-form { max-width: none; } }
.audit-form .form-row { row-gap: 0; } .audit-form .form-field { margin-bottom: 14px; }
/* Get in touch — no grey panel; plain card that matches the page's other cards */
#audit .audit-panel { background: none; border: none; padding: 0; border-radius: 0; }
#audit .audit-form { max-width: none; margin-top: 0; box-shadow: none; border: 1px solid var(--rule); border-top: 3px solid var(--accent-2); border-radius: 2px; background: var(--bg); }
@media (min-width: 901px) {
  #audit .audit-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr); align-items: start; gap: 48px; }
  #audit .audit-intro { padding-top: 18px; }
}
@media (max-width: 900px) { #audit .audit-panel { padding: 0; } }

/* =========================================================
   VISUAL CONSISTENCY PASS
   Colour: red = actions/highlights, navy = strong bands/structure, greys for the rest.
   Headings: one section-heading size. One open/close style.
========================================================= */

/* 1. Colour — one accent for labels, links, dots, card tops, ticks */
.audit-section .eyebrow, .signal-section .eyebrow { color: var(--accent-2); }
.audit-section .eyebrow::before, .signal-section .eyebrow::before { background: var(--accent-2); box-shadow: 0 0 8px var(--accent-2); }
.card-link { color: var(--accent); text-decoration-color: rgba(201,52,18,.35); }
.card-link:hover { color: var(--accent-2); text-decoration-color: var(--accent-2); }
.warning-item .warning-mark,
.warning-item:nth-child(n) .warning-mark { background: var(--accent-2); box-shadow: 0 0 6px var(--accent-2); }
/* (channel card colours restored to the original red / steel-blue / terracotta mix) */
.audit-point-mark { background: rgba(14,26,48,.07); color: var(--navy); }

/* 2. Headings — one size for every section heading */
.section-head h2,
#services .section-head h2,
.warning-recap h2,
.why-strip-head h2,
.signal-section .section-head h2,
.signal-section--final .section-head h2,
.pricing-philosophy-section .section-head h2,
#audit .section-head h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.2;
  max-width: 680px;
}
.section-head .eyebrow + h2 { margin-top: 10px; }
.warning-recap h2, .why-strip-head h2 { margin-top: 0; }
@media (max-width: 700px) {
  .section-head h2,
  #services .section-head h2,
  .warning-recap h2,
  .why-strip-head h2,
  .signal-section .section-head h2,
  .pricing-philosophy-section .section-head h2,
  #audit .section-head h2 { font-size: 22px; }
}

/* 3. One open/close style (matches the Google Ads Management list) */
.acc-toggle, .why-toggle, .brand-note-toggle {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid var(--rule-strong); background: transparent;
}
.why-toggle::before, .why-toggle::after,
.brand-note-toggle::before, .brand-note-toggle::after { width: 9px; height: 1.5px; background: var(--ink); }
.why-item[open] .why-toggle,
.brand-note[open] .brand-note-toggle { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); }
.why-item[open] .why-toggle::before, .why-item[open] .why-toggle::after,
.brand-note[open] .brand-note-toggle::before, .brand-note[open] .brand-note-toggle::after { background: var(--on-accent); }
/* FAQ rows use the same compact sizing as the Google Ads Management list */
.faq-section { padding: clamp(36px, 5vw, 56px) 0; }
.faq-section .acc { margin-top: 18px; }
.faq-item .acc-trigger { padding: 11px 0; gap: 14px; }
.faq-item .acc-title { font-size: clamp(15px, 1.6vw, 17px); }
.faq-item .acc-panel p { font-size: 13.5px; }
@media (max-width: 700px) { .faq-item .acc-title { font-size: 15px; } }

/* 4. Pricing — two columns on desktop: text left, key facts right */
.pricing-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 48px; align-items: start; margin-top: 8px; }
.pricing-main .approach-body:first-child { margin-top: 12px; }
.pricing-facts {
  margin-top: 20px;
  border: 1px solid var(--rule); border-top: 3px solid var(--navy); border-radius: 2px;
  background: var(--bg-1);
  padding: 20px 22px 22px;
}
.pricing-facts .pricing-callout { margin-top: 0; max-width: none; background: var(--bg); }
.pricing-facts .approach-body { margin-top: 14px; font-size: 14.5px; }
@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 0; }
  .pricing-facts { margin-top: 22px; padding: 16px; }
  .pricing-main .card-link { margin-top: 14px; }
}
/* 8. Price in the same font as its sentence, just emphasised */
.price-figure { font-family: inherit; font-weight: 600; color: var(--ink); }

/* 5. Platypus drawings — one treatment: navy line at the same strength on light backgrounds */
.stencil { opacity: .4; }
.stencil--hero, .stencil--warning, .stencil--audit { opacity: .4; }
.stencil--final { opacity: .4; mix-blend-mode: normal; width: clamp(64px, 9vw, 120px); }
.plotti-banner img { opacity: .55; }

/* 7. Small mono text — easier to read */
.eyebrow, .warning-eyebrow { font-size: 11.5px; }
.form-label, .audit-form .form-label { font-size: 11.5px; }
.channels-label { font-size: 11px; }
.footer-links a { font-family: var(--font-body); font-size: 14px; letter-spacing: 0; text-transform: none; }
@media (max-width: 560px) { .eyebrow, .warning-eyebrow { font-size: 11px; } }

/* 10. Footer — logo mark with the wordmark */
.final-footer-brand { display: inline-flex; align-items: center; gap: 8px; }
.final-footer-word { color: var(--ink); }

/* 11. Industries strip — larger, clearer on navy */
.industries-heading { font-size: 11px; color: rgba(255,255,255,.75); }
.industries-item { color: rgba(255,255,255,.9); font-size: 14px; }
@media (max-width: 560px) { .industries-item { font-size: 13.5px; } }
/* Pricing facts: no box-in-a-box — the minimum-spend note keeps only its red rule */
.pricing-facts .pricing-callout { background: none; padding: 2px 0 2px 14px; }
.pricing-facts .pricing-callout-text { font-size: 14px; color: var(--ink-dim); }
/* "Ready when you are" Plotti restored with its original look */
.stencil--final { width: clamp(84px, 13vw, 190px); opacity: .74; mix-blend-mode: multiply; }
@media (min-width: 861px) { .pricing-facts { margin-top: 12px; } }

/* ===== Condense + convert pass ===== */
/* 3. Mid-page action under "Sound familiar?" */
.mid-cta { margin-top: 28px; }
@media (max-width: 560px) { .mid-cta { margin-top: 22px; } .mid-cta .btn-primary { width: 100%; justify-content: center; } }

/* 5. Channels on phones: tight 2-column grid, icon + title, description underneath */
@media (max-width: 560px) {
  .channels-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .channels-card { display: block; padding: 12px 12px 13px; }
  .channels-top { display: block; margin: 0 0 8px; }
  .channels-icon { width: 26px; height: 26px; }
  .channels-icon svg { width: 13px; height: 13px; }
  .channels-card h3 { font-size: 15px; line-height: 1.25; margin: 0 0 4px; }
  .channels-sub { font-size: 12px; line-height: 1.45; }
}

/* 6. Laptop mockup: much smaller on phones */
@media (max-width: 700px) {
  .account-visual { max-width: 64%; margin: 18px auto 0; }
}

/* 7. Ending: tighter, About row aligned with everything else */
.brand-note-shell .brand-note { padding: 0; margin-top: 8px; }
.audit-section--final { padding-bottom: clamp(20px, 3vw, 32px); }
.plotti-banner { margin-top: 20px; }
@media (max-width: 700px) {
  .account-visual { max-width: 54%; margin: 10px auto -6px; }
}
@media (max-width: 640px) {
  .footer-links { display: flex !important; flex-direction: row; flex-wrap: wrap; column-gap: 22px; row-gap: 0; }
}
@media (max-width: 640px) { .footer-links { gap: 0 22px !important; } }
/* "Sound familiar?" now sits under the trust bar: no extra top rule, and a tighter join into "The whole account." */
.warning-section .warning-recap { margin-top: 0; padding-top: 0; border-top: none; }
.warning-section { padding: clamp(32px, 4.5vw, 52px) 0 clamp(28px, 4vw, 44px); border-bottom: 1px solid var(--rule); }
.warning-section + .intro-section { padding-top: clamp(36px, 5vw, 60px); }
.brand-note-panel p + p { margin-top: 6px; }
/* Hero: small focus line under the contact links */
.hero-focus { margin: 18px 0 0; max-width: 46ch; font-size: 15.5px; line-height: 1.5; color: var(--ink-mute); }
@media (max-width: 560px) { .hero-focus { margin-top: 14px; font-size: 14.5px; } }
.hero-focus strong { color: var(--ink); font-weight: 600; }

/* ===== Phone spacing pass (no text changes; desktop untouched) ===== */
@media (max-width: 560px) {
  /* Hero: less blank space above "PPC Services" */
  .hero-container { padding-top: 44px; }
  /* "Where we work" label: smaller top gap */
  .channels-section { padding-top: 18px; }
  /* New account box: tighter section and card */
  .signal-section { padding: 22px 0 24px; }
  .signal-section .simple-grid { margin-top: 16px; }
  .simple-card { padding: 20px 18px; }
  .simple-card .card-link { margin-top: 8px; }
  /* Pricing */
  .pricing-philosophy-section { padding: 22px 0 26px; }
  .pricing-facts { padding: 14px; }
  /* FAQ */
  .faq-section { padding-top: 22px; }
  /* Ready when you are */
  .final-hero { padding-top: 26px; }
  /* Industries: compact wrapped list instead of 6 rows */
  .industries-track { display: flex; flex-wrap: wrap; justify-content: center; column-gap: 0; row-gap: 4px; max-width: none; }
  .industries-item { white-space: nowrap; font-size: 13px; }
  .industries-item::after { content: "·"; margin: 0 8px; color: rgba(255,255,255,.35); }
  .industries-item:last-child::after { content: none; }
}
@media (max-width: 560px) {
  .industries-track .industries-item::after { content: "·" !important; display: inline; margin: 0 8px; color: rgba(255,255,255,.4); }
  .industries-track .industries-item:last-child::after { content: none !important; }
  .final-hero { padding-top: 40px; }
  .stencil--final { top: 8px; right: 10px; width: 64px; }
}
@media (max-width: 560px) { .industries-track .industries-item::after { position: static; } }

/* ===== Phone polish 2 ===== */
@media (max-width: 860px) {
  /* 2. Slimmer sticky button bar (same text) */
  .mobile-cta-bar { padding: 8px clamp(16px, 4vw, 48px) calc(8px + env(safe-area-inset-bottom, 0px)); }
  .mobile-cta-bar .btn-primary { padding: 12px 20px; font-size: 14px; }
}
@media (max-width: 560px) {
  /* 3. Website + Phone side by side */
  .audit-fields .form-row--pair { display: grid; grid-template-columns: 1fr 1fr; column-gap: 10px; }
  .audit-fields .form-row--pair input { padding-left: 10px; padding-right: 10px; }
  /* 4. Long passages a touch smaller */
  .account-description { font-size: 15px; }
  .pricing-main .approach-body { font-size: 15px; line-height: 1.6; }
}
@media (max-width: 560px) { .audit-fields .form-row--pair input::placeholder { font-size: 14px; } }
@media (max-width: 380px) { .audit-fields .form-row--pair input::placeholder { font-size: 13px; } .audit-fields .form-row--pair input { padding-left: 9px; padding-right: 6px; } }
/* Peeking platypus tucked into the footer's bottom-right corner */
.footer-peek { position: absolute; right: 0; bottom: 0; width: clamp(84px, 9vw, 116px); height: auto; opacity: .45; pointer-events: none; user-select: none; z-index: 0; }
.final-footer > *:not(.footer-peek) { position: relative; z-index: 1; }
.final-footer { margin-top: 32px; padding-bottom: 8px; }
@media (max-width: 640px) { .footer-peek { width: 78px; } }

/* ===== Pricing spacing ===== */
.pricing-grid { margin-top: 22px; align-items: start; }
.pricing-main .approach-body { margin-top: 0; }
.pricing-main .approach-body + .approach-body { margin-top: 16px; }
.pricing-main .card-link { margin-top: 22px; }
.pricing-facts,
.pricing-facts:where(*) { margin-top: 0; padding: 6px 22px; }
@media (min-width: 861px) { .pricing-facts { margin-top: 0; } }
/* three facts, evenly spaced, thin dividers between */
.pricing-facts .pricing-callout { border-left: none; padding: 0; margin: 0; background: none; }
.pricing-facts .pricing-callout,
.pricing-facts > .approach-body { padding: 14px 0; margin: 0; }
.pricing-facts > * + * { border-top: 1px solid var(--rule); }
.pricing-facts .pricing-callout-text,
.pricing-facts > .approach-body { font-size: 14px; line-height: 1.6; color: var(--ink-dim); }
@media (max-width: 860px) {
  .pricing-grid { margin-top: 16px; }
  .pricing-main .card-link { margin-top: 16px; }
  .pricing-facts { margin-top: 20px !important; padding: 4px 16px; }
  .pricing-facts .pricing-callout, .pricing-facts > .approach-body { padding: 12px 0; }
}
.pricing-main .approach-body:first-child { margin-top: 0; }
@media (max-width: 860px) { .pricing-main .card-link { margin-top: 8px; } }

/* ===== "The whole account" — phones: image beside the heading, desk platypus as a faint watermark ===== */
@media (max-width: 560px) {
  .account-intro-layout { display: grid !important; grid-template-columns: minmax(0,1fr) 34%; column-gap: 6px; row-gap: 0 !important; align-items: center; }
  .account-intro-copy { display: contents; }
  .account-title { grid-column: 1; grid-row: 1; font-size: 26px !important; line-height: 1.12; margin: 0; }
  .account-title span { white-space: nowrap; }
  .account-visual { grid-column: 2; grid-row: 1; max-width: none !important; margin: 0 !important; transform: rotate(1.25deg); }
  .account-lead, .account-description { grid-column: 1 / -1; }
  .account-lead { margin-top: 14px !important; }
  .account-description { margin-top: 10px !important; }
  .stencil--intro { top: auto !important; bottom: 10px; right: -6px; width: 150px !important; opacity: .09 !important; z-index: 0; }
}
@media (max-width: 374px) { .account-title { font-size: 24px !important; } }
/* Same "whole account" layout for small tablets / narrow windows (561–700px) */
@media (min-width: 561px) and (max-width: 700px) {
  .account-intro-layout { display: grid !important; grid-template-columns: minmax(0,1fr) 36%; column-gap: 12px; row-gap: 0 !important; align-items: center; }
  .account-intro-copy { display: contents; }
  .account-title { grid-column: 1; grid-row: 1; font-size: 32px !important; line-height: 1.12; margin: 0; }
  .account-title span { white-space: nowrap; }
  .account-visual { grid-column: 2; grid-row: 1; width: auto !important; max-width: none !important; margin: 0 !important; transform: rotate(1.25deg); }
  .account-lead, .account-description { grid-column: 1 / -1; }
  .account-lead { margin-top: 16px !important; }
  .account-description { margin-top: 12px !important; }
  .stencil--intro { top: auto !important; bottom: 10px; right: 0; width: 170px !important; opacity: .09 !important; z-index: 0; }
}
@media (max-width: 560px) {
  .intro-section { padding-top: 26px; padding-bottom: 28px; }
  .account-intro-layout { grid-template-columns: minmax(0,1fr) 31%; }
  .account-lead { font-size: 17.5px; line-height: 1.35; margin-top: 12px !important; }
  .account-description { margin-top: 9px !important; }
}
@media (max-width: 560px) { .warning-section + .intro-section { padding-top: 26px; } }

/* ===== Channel cards: tighter spacing (colours as original) ===== */
.channels-card { padding: 16px 18px 18px; }
.channels-top { margin-bottom: 10px; }
.channels-card h3 { margin: 0 0 5px; }
.channels-sub { line-height: 1.5; }
@media (max-width: 800px) {
  .channels-grid { gap: 10px; }
  .channels-card { padding: 14px 16px 16px; }
}
@media (max-width: 560px) {
  .channels-card { padding: 12px 12px 13px; }
  .channels-top { margin: 0 0 8px; }
}
/* "Where we work" label removed: cards follow straight on from "The whole account" */
.channels-section { padding-top: 0 !important; }
.channels-section .channels-grid { margin-top: 0; }
/* Desk platypus now sits in the corner of the Google Ads Management list, same shade as the others */
#services { position: relative; overflow: hidden; }
#services > .shell { position: relative; z-index: 1; }
.stencil--services { width: clamp(84px, 11vw, 150px); top: clamp(24px, 3.5vw, 44px); right: clamp(12px, 4vw, 56px); opacity: .4; }
@media (max-width: 560px) { .stencil--services { width: 64px; top: 16px; right: 12px; } }

/* ===== Channel cards on phones: symbol + eyebrow + title only (descriptions stay on desktop/tablet) ===== */
@media (max-width: 560px) {
  .intro-section { padding-bottom: 16px !important; }
  .channels-section { padding-bottom: 18px; }
  .channels-grid { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 8px; }
  .channels-card { display: block !important; min-width: 0; padding: 10px 12px 12px !important; }
  .channels-top { display: flex !important; justify-content: space-between; align-items: flex-start; gap: 6px; margin: 0 0 8px !important; min-height: 24px; }
  .channels-label { display: block !important; font-size: 9.5px; letter-spacing: .06em; padding-top: 2px; line-height: 1.35; }
  .channels-icon { flex: none; width: 24px; height: 24px; }
  .channels-card h3 { font-size: 15px; line-height: 1.2; margin: 0 !important; }
  .channels-sub { display: none; }
}
@media (max-width: 700px) { .account-title span { white-space: normal; } .account-title { overflow-wrap: break-word; } }
/* Why Us panel: real content now — readable size */
.brand-note-panel p { font-size: 14px; line-height: 1.6; color: var(--ink-dim); max-width: 62ch; }
.brand-note-panel p + p { margin-top: 8px; }
.brand-note-panel a { color: var(--accent); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(201,52,18,.35); text-underline-offset: 3px; }
.brand-note-panel a:hover { color: var(--accent-2); }
.brand-note-panel { padding-bottom: 6px; }
/* Channel card descriptions hidden on phones, tablets and narrow windows (desktop keeps them) */
@media (max-width: 860px) {
  .channels-sub { display: none; }
  .channels-top { margin-bottom: 8px; }
  .channels-card h3 { margin-bottom: 0; }
}
/* Industries on phones: always two lines — text scales with screen width */
@media (max-width: 560px) {
  .industries-section .shell { padding-left: 10px; padding-right: 10px; }
  .industries-track .industries-item { font-size: clamp(9px, 2.7vw, 13px) !important; letter-spacing: -0.005em; }
  .industries-track .industries-item::after { margin: 0 0.35em !important; }
}

/* No lock-in contracts — text mark in pricing (option F) */
.lockin-mark { margin: -6px 0 30px; }
.lockin-line { display:flex; align-items:center; gap:12px; margin:0; color:var(--navy); font-weight:700; font-size:13px; letter-spacing:.12em; text-transform:uppercase; }
.lockin-line::before, .lockin-line::after { content:""; flex:0 0 38px; height:1.5px; background:var(--navy); }
.lockin-note { margin:8px 0 0; font-size:13.5px; color:var(--ink-dim); }
@media (max-width:700px){ .lockin-mark{ margin:-4px 0 22px; } .lockin-line{ font-size:12px; gap:10px; } .lockin-line::before,.lockin-line::after{ flex-basis:28px; } .lockin-note{ font-size:13px; } }
.lockin-mark { margin: 14px 0 26px; }
@media (min-width:861px){
  .pricing-head { display:flex; justify-content:space-between; align-items:flex-end; gap:40px; margin-bottom:34px; }
  .pricing-head .section-head { margin-bottom:0; }
  .pricing-head .lockin-mark { margin:0 0 6px; text-align:right; max-width:360px; }
  .pricing-head .lockin-line { justify-content:flex-end; }
}
@media (max-width:700px){ .lockin-mark { margin: 12px 0 20px; } }
/* lock-in mark nudged down slightly, note removed */
.lockin-mark { margin: 18px 0 24px; }
@media (min-width:861px){ .pricing-head .lockin-mark { margin:0 0 -4px; } }
@media (max-width:700px){ .lockin-mark { margin: 18px 0 20px; } }

/* photo drops down and fades behind "Get in touch" — no hard line */
.final-hero { overflow: visible; padding-bottom: 0; }
.final-section { overflow: hidden; }
.final-photo, .final-fade, .final-glow { inset: -18% -8% -95%; }
.final-photo {
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 30%, rgba(0,0,0,.6) 52%, rgba(0,0,0,.22) 68%, transparent 84%), radial-gradient(ellipse 90% 100% at 50% 20%, black 60%, transparent 100%);
  -webkit-mask-composite: source-in; mask-composite: intersect;
  mask-image: linear-gradient(to bottom, black 0%, black 30%, rgba(0,0,0,.6) 52%, rgba(0,0,0,.22) 68%, transparent 84%), radial-gradient(ellipse 90% 100% at 50% 20%, black 60%, transparent 100%);
}
.final-fade { background: none; }
.audit-section--final { border-top: none; position: relative; z-index: 1; }
.audit-section--final .audit-form { background: #fff; }
/* Warm sand tone for the closing photo (approved option 4) */
.final-photo { opacity: .5; filter: grayscale(1) sepia(.45) brightness(1.02); }
/* Get in touch card: navy top line */
#audit .audit-form { border-top-color: var(--navy); }

/* New/existing account: sand band (approved option J, no stencil) */
.signal-band { background: var(--bg-1); border-radius: 4px; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 28px 34px; }
.signal-band h2 { font-family: var(--font-heading); font-weight: 500; font-size: clamp(20px, 2.4vw, 28px); line-height: 1.2; margin: 8px 0 0; color: var(--ink); }
.signal-band-btn { display: inline-flex; align-items: center; background: var(--navy); color: #fff; font-weight: 600; font-size: 15px; padding: 13px 22px; border-radius: 2px; text-decoration: none; white-space: nowrap; flex: none; transition: background .2s; }
.signal-band-btn:hover { background: var(--accent-blue); }
@media (max-width: 700px) {
  .signal-band { flex-direction: column; align-items: stretch; gap: 16px; padding: 22px 20px; }
  .signal-band h2 { font-size: 22px; }
  .signal-band-btn { justify-content: center; min-height: 48px; }
}
.signal-section { padding-top: clamp(32px, 4.5vw, 56px); padding-bottom: clamp(32px, 4.5vw, 56px); }
/* Pricing: single column now the facts box is gone */
.pricing-grid { grid-template-columns: minmax(0, 1fr) !important; }
.pricing-main { max-width: 720px; }
/* No lock-in mark now sits above Request Pricing */
.pricing-main .lockin-mark { margin: 26px 0 0 !important; text-align: left; max-width: none; }
.pricing-main .lockin-line { justify-content: flex-start !important; }
.pricing-main .lockin-mark + .card-link { margin-top: 18px; }
@media (min-width: 861px) { .pricing-head { display: block; margin-bottom: 0; } }
/* Readability: minimum 11px for small labels on phones */
@media (max-width: 700px) {
  .channels-label { font-size: 11px !important; letter-spacing: .03em !important; }
  .trust-compact { font-size: 11px !important; }
}

/* Coral on navy (matches the Platapode homepage): trust-bar icons + Industries heading */
.trust-section--navy .trust-icon { color: #F2A08A; }
.industries-heading { color: #F2A08A; }
.signal-band-btn { color: #F2A08A; }
.signal-band-btn:hover { color: #fff; }

/* ABN: deliberately tiny and near-invisible (approved) */
.footer-abn { display: block; margin-top: 5px; font-size: 8px; letter-spacing: .03em; opacity: .1; }

/* Sound familiar? — faint thin red strike-through (approved option D, static) */
.warning-label { background: linear-gradient(rgba(213,48,26,.4), rgba(213,48,26,.4)) no-repeat 0 58% / 100% 2px; -webkit-box-decoration-break: clone; box-decoration-break: clone; }

/* Pricing: navy semi-bold opening line (approved) */
.approach-body .pr-em { font-weight: 600; color: var(--navy); }
