:root {
  --ink: #101418;
  --muted: #59616b;
  --line: #d9e1e8;
  --paper: #f7fafc;
  --white: #ffffff;
  --navy: #07182c;
  --blue: #135ee8;
  --blue-dark: #0c3e9b;
  --green: #087f6f;
  --teal: #00a88f;
  --lime: #c7f36f;
  --amber: #f2b84b;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(7, 24, 44, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Homepage animated WhatsApp phone */
.phone-conversation {
  position: relative;
  justify-self: end;
  width: min(100%, 360px);
  min-height: 570px;
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
  padding: 12px 0;
}

.phone-conversation .device {
  width: min(260px, 74vw);
  flex-shrink: 0;
  transform-origin: 50% 60%;
  will-change: transform;
}

.phone-conversation .device.is-typing {
  animation: phoneTyping 0.42s ease-in-out infinite;
}

.phone-conversation .device.is-sending {
  animation: phoneSend 0.34s cubic-bezier(.2,.8,.2,1);
}

.phone-conversation .device.is-replying {
  animation: phoneReplyGlow 1.15s ease-in-out infinite;
}

.phone-conversation .device.is-complete {
  animation: phoneComplete 0.5s cubic-bezier(.2,.8,.2,1);
}

.phone-outer {
  background: #1c1c1e;
  border-radius: 46px;
  padding: 12px;
  border: 1px solid #3a3a3c;
  position: relative;
  box-shadow: 0 34px 84px rgba(7, 24, 44, 0.28);
  transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.device.is-replying .phone-outer {
  border-color: rgba(37, 211, 102, 0.55);
  box-shadow: 0 34px 84px rgba(7, 24, 44, 0.28), 0 0 0 5px rgba(37, 211, 102, 0.12);
}

.phone-outer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 6px;
  background: #2c2c2e;
  border-radius: 0 0 6px 6px;
  z-index: 10;
}

.side-btn {
  position: absolute;
  background: #2a2a2c;
  border-radius: 2px;
}

.vol-up { left: -3px; top: 80px; width: 3px; height: 28px; }
.vol-dn { left: -3px; top: 116px; width: 3px; height: 28px; }
.pwr { right: -3px; top: 96px; width: 3px; height: 38px; }

.phone-inner {
  background: #000;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 540px;
}

.ios-status {
  padding: 12px 18px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.wa-status { background: #075e54; }

.ios-time {
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ios-icons { display: flex; gap: 5px; align-items: center; }
.ios-signal { display: flex; gap: 1px; align-items: flex-end; }
.ios-bar { background: #fff; border-radius: 1px; width: 3px; }

.ios-batt {
  width: 22px;
  height: 11px;
  border: 1.5px solid #fff;
  border-radius: 3px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 1px;
}

.ios-batt::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 5px;
  background: #fff;
  border-radius: 0 1px 1px 0;
}

.ios-batt-fill {
  background: #fff;
  border-radius: 1px;
  height: 100%;
  width: 75%;
}

.wa-hdr {
  background: #075e54;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.wa-back {
  color: #fff;
  font-size: 22px;
  line-height: 1;
  margin-right: -4px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.wa-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-hdr-txt p {
  color: #fff;
  font-size: 12px;
  font-weight: 650;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.wa-hdr-txt span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.wa-hdr-icons { margin-left: auto; display: flex; gap: 14px; }
.wa-hdr-icons svg { width: 16px; height: 16px; fill: #fff; }

.wa-body {
  flex: 1;
  padding: 8px 7px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;
  background:
    linear-gradient(45deg, rgba(7, 95, 86, 0.035) 25%, transparent 25% 50%, rgba(7, 95, 86, 0.035) 50% 75%, transparent 75%),
    #ece5dd;
  background-size: 22px 22px;
}

.wa-footer {
  background: #f0f0f0;
  padding: 5px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  border-top: 0.5px solid #ddd;
}

.wa-input-pill {
  flex: 1;
  background: #fff;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 10px;
  color: #aaa;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 28px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.wa-attach {
  color: #777;
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.wa-mic-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.18s ease, background 0.18s ease;
}

.device.is-sending .wa-mic-btn {
  background: #075e54;
  transform: scale(1.12);
}

.home-bar {
  background: #000;
  padding: 6px 0 10px;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.home-bar-line {
  width: 100px;
  height: 4px;
  background: #444;
  border-radius: 999px;
}

.bubble {
  max-width: 86%;
  border-radius: 14px;
  padding: 7px 9px;
  font-size: 10px;
  line-height: 1.42;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.3s, transform 0.3s;
  flex-shrink: 0;
  box-shadow: 0 2px 7px rgba(17, 24, 39, 0.08);
}

.bubble.show {
  opacity: 1;
  transform: translateY(0);
  animation: bubblePop 0.34s cubic-bezier(.2,.8,.2,1);
}
.btime { font-size: 9px; text-align: right; margin-top: 2px; }
.wa-out { align-self: flex-end; background: #dcf8c6; color: #111; border-radius: 14px 14px 3px 14px; }
.wa-in { align-self: flex-start; background: #fff; color: #111; border-radius: 14px 14px 14px 3px; }
.wa-out .btime, .wa-in .btime { color: #999; }
.wa-in strong, .wa-in b { color: #075e54; }
.wa-live { min-width: 118px; }
.wa-live-text { min-height: 15px; }
.wa-live-line {
  display: inline;
  animation: liveTextIn 0.26s cubic-bezier(.2,.8,.2,1) both;
}
.wa-live:not(.is-finished) .wa-live-text::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 10px;
  margin-left: 2px;
  vertical-align: -1px;
  background: #075e54;
  animation: bl 1s infinite;
}

.tdots {
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 0.3s, transform 0.3s;
  flex-shrink: 0;
}

.tdots.show { opacity: 1; transform: translateY(0); }
.tdot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin: 0 2px; animation: td 1.2s infinite; }
.tdot:nth-child(2) { animation-delay: 0.2s; }
.tdot:nth-child(3) { animation-delay: 0.4s; }
.wa-dots { align-self: flex-start; background: #fff; border-radius: 14px; padding: 7px 10px; }
.wa-dots .tdot { background: #bbb; }

.kb {
  padding: 5px 2px 8px;
  display: none;
  flex-shrink: 0;
}

.kb.show { display: block; }
.kb-r { display: flex; justify-content: center; gap: 2px; margin-bottom: 2px; }

.k {
  background: #fff;
  border-radius: 4px;
  font-size: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111;
  padding: 5px 0;
  text-align: center;
  flex: 1;
  max-width: 21px;
  border-bottom: 1px solid #aaa;
  transition: transform 0.08s ease, background 0.08s ease, box-shadow 0.08s ease;
}

.k.press {
  background: #f8fafc;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.16);
  transform: translateY(1px) scale(1.08);
}

.kw { max-width: 30px; }
.ks { max-width: 96px; }
.kact { font-size: 7px; }
.wa-kb { background: #d1d5db; }
.wa-kb .kact { background: #075e54; color: #fff; border-bottom-color: #064e3b; }

.cur {
  display: inline-block;
  width: 1px;
  height: 10px;
  vertical-align: middle;
  margin-left: 1px;
  animation: bl 1s infinite;
}

.wa-cur { background: #075e54; }
.dpill { text-align: center; margin: 2px 0; flex-shrink: 0; }
.dpill span { font-size: 9px; padding: 2px 8px; border-radius: 999px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
.wa-dp span { background: rgba(255, 255, 255, 0.85); color: #666; }

@keyframes td {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}

@keyframes bl {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes phoneTyping {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -1px, 0); }
}

@keyframes phoneSend {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  55% { transform: translate3d(0, -4px, 0) scale(1.018); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes phoneReplyGlow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(37, 211, 102, 0)); }
  50% { filter: drop-shadow(0 10px 18px rgba(37, 211, 102, 0.2)); }
}

@keyframes phoneComplete {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -3px, 0) scale(1.012); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes bubblePop {
  0% { transform: translateY(6px) scale(0.97); }
  70% { transform: translateY(0) scale(1.018); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes liveTextIn {
  0% { opacity: 0; transform: translateY(3px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 920px) {
  .phone-conversation {
    justify-self: center;
    min-height: 590px;
  }
}

/* Final production guard: use visible foreground Wilmot examples, not section backgrounds. */
#agents::before,
#workflow::before,
.capability-section::before,
.section::before,
.pricing-hero::before,
.audit-hero::before,
.contact-hero::before,
.blog-hero::before {
  background-image: none !important;
  opacity: 0 !important;
}

.wilmot-example-strip {
  padding-top: 0;
}

.wilmot-example-strip::before {
  background-image: none !important;
  opacity: 0 !important;
}

html body #agents::before,
html body #workflow::before,
html body .capability-section.capability-section::before,
html body .section.section.section::before,
html body .pricing-hero.pricing-hero::before,
html body .audit-hero.audit-hero::before,
html body .contact-hero.contact-hero::before,
html body .blog-hero.blog-hero::before,
html body .wilmot-example-strip.wilmot-example-strip::before {
  content: none !important;
  display: none !important;
  background-image: none !important;
  background: none !important;
  opacity: 0 !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header .container {
  width: min(1720px, calc(100% - 64px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 250, 252, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 225, 232, 0.8);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 1vw, 18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0;
  flex: 0 0 auto;
}

.brand img {
  height: 34px;
  width: 62px;
  aspect-ratio: 360 / 196;
  object-fit: contain;
}

.nav {
  --nav-gap: clamp(14px, 1.15vw, 22px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--nav-gap);
  flex: 1 1 auto;
  min-width: 0;
  color: #29323d;
  font-size: clamp(0.84rem, 0.78rem + 0.16vw, 0.94rem);
  font-weight: 650;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 4px;
  color: inherit;
  border-radius: 999px;
  line-height: 1.15;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav a + a::before {
  content: "";
  position: absolute;
  left: calc(var(--nav-gap) / -2);
  top: 50%;
  width: 1px;
  height: 24px;
  background: rgba(41, 50, 61, 0.2);
  transform: translateY(-50%);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 2px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  opacity: 0;
  transform: scaleX(0.72);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  color: var(--blue-dark);
}

.nav a[aria-current="page"],
.nav a.is-active {
  background: rgba(19, 94, 232, 0.1);
  box-shadow: inset 0 0 0 1px rgba(19, 94, 232, 0.28);
  color: var(--blue-dark);
  padding-left: 12px;
  padding-right: 12px;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav a[aria-current="page"]::after,
.nav a.is-active::after {
  opacity: 0;
  transform: scaleX(0.72);
}

.nav a[aria-current="page"],
.nav a.is-active {
  font-weight: 850;
}

.mobile-nav-toggle,
.mobile-nav-button,
.nav-audit-cta {
  display: none !important;
}

.nav .nav-audit-cta {
  display: none !important;
}

.mobile-nav-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-nav-button span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-nav-toggle:focus-visible + .mobile-nav-button {
  outline: 3px solid rgba(19, 94, 232, 0.32);
  outline-offset: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(19, 94, 232, 0.24);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-primary[href="/audit"],
.btn-primary[href="/audit#audit-form"],
.btn-primary[href="/#audit"] {
  min-height: 50px;
  padding: 14px 22px;
  font-size: 1.08rem;
}

.header-inner > .btn {
  flex: 0 0 auto;
  max-width: 240px;
  padding-inline: 16px;
  text-align: left;
}

.header-inner > .btn-primary[href="/audit#audit-form"] {
  max-width: none;
  padding-inline: 20px;
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}

.plain-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--blue-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.hero {
  padding: clamp(22px, 3vh, 40px) 0 clamp(24px, 3.4vh, 42px);
  background:
    radial-gradient(circle at 84% 12%, rgba(0, 168, 143, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f2f7fb 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.84fr);
  gap: clamp(30px, 4vw, 58px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-dark);
  background: #e8f1ff;
  border: 1px solid #c9ddff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--navy);
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 3.75vw, 4.1rem);
  line-height: 1.03;
  max-width: 820px;
  margin-top: 14px;
}

.hero h1 {
  font-size: clamp(2.7rem, 3.25vw, 3.75rem);
  line-height: 1.02;
  max-width: 760px;
  margin-top: 12px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  color: var(--muted);
  margin: 0;
}

.lead {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  max-width: 690px;
  margin-top: 24px;
}

.hero-copy {
  font-size: clamp(1.06rem, 1.25vw, 1.2rem);
  line-height: 1.5;
  max-width: 705px;
  margin-top: 14px;
}

.channel-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  max-width: 705px;
}

.channel-label {
  color: #516173;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.hero-deliverables {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  max-width: 740px;
  margin-top: 14px;
}

.hero-deliverables div {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(22, 38, 31, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 26px rgba(22, 38, 31, 0.05);
}

.hero-deliverables strong,
.hero-deliverables span {
  display: block;
}

.hero-deliverables strong {
  color: var(--navy);
  font-size: 0.9rem;
  line-height: 1.25;
}

.hero-deliverables span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.42;
}

.proof-strip,
.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
  max-width: 740px;
}

.proof {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
  padding: 11px 13px;
}

.proof strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
}

.proof > span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.48;
  margin-top: 5px;
}

.proof .logo-title > span:not(.logo-mark),
.proof .logo-inline > span:not(.logo-mark) {
  display: inline;
  margin-top: 0;
}

.logo-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.platform-line {
  margin-top: 18px;
}

.audit-tool-line {
  margin: 24px 0 22px;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: #24303c;
  padding: 6px 10px;
  font-size: 0.86rem;
  font-weight: 850;
}

.logo-title {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.proof .logo-title {
  display: flex !important;
  gap: 9px;
}

.proof .logo-title .logo-mark {
  width: 22px;
  height: 22px;
  min-width: 22px;
  flex-basis: 22px;
}

.proof .logo-title .logo-google-ads::before,
.proof .logo-title .logo-google-ads::after {
  width: 7px;
  height: 22px;
}

.proof .logo-title .logo-google-ads::before {
  left: 7px;
}

.proof .logo-title .logo-google-ads::after {
  right: 7px;
}

.logo-inline {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  vertical-align: -0.12em;
  white-space: nowrap;
  color: inherit;
  font-weight: 720;
}

.logo-inline .logo-mark {
  width: 16px;
  height: 16px;
  min-width: 16px;
  flex-basis: 16px;
  border-radius: 4px;
  font-size: 0.5rem;
  transform: translateY(-1px);
}

.logo-inline .logo-google-ads::before,
.logo-inline .logo-google-ads::after {
  width: 5px;
  height: 16px;
}

.logo-inline .logo-google-ads::before {
  left: 5px;
}

.logo-inline .logo-google-ads::after {
  right: 5px;
}

.logo-inline .logo-web::before {
  width: 10px;
  height: 7px;
  border-width: 1.5px;
  border-top-width: 3px;
}

.logo-inline .logo-ai-search::after {
  width: 6px;
  height: 2px;
  right: 2px;
  bottom: 3px;
}

.logo-inline .logo-ai-search::before {
  width: 10px;
  height: 10px;
  border-width: 1.5px;
}

.logo-inline .logo-email::before {
  width: 11px;
  height: 8px;
  border-width: 1.5px;
}

.logo-inline .logo-email::after {
  width: 9px;
  height: 9px;
  border-left-width: 1.5px;
  border-bottom-width: 1.5px;
  top: 3px;
}

.page-hero h1 .logo-inline,
.audit-hero h1 .logo-inline {
  display: inline;
  white-space: normal;
}

.page-hero h1 .logo-inline .logo-mark,
.audit-hero h1 .logo-inline .logo-mark {
  display: inline-grid;
  margin-right: 7px;
  vertical-align: -0.08em;
}

.logo-mark {
  position: relative;
  width: 24px;
  height: 24px;
  min-width: 24px;
  flex: 0 0 24px;
  border-radius: 6px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.logo-google-ads {
  background: transparent;
}

.logo-google-ads::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 24px;
  left: 8px;
  top: 0;
  border-radius: 99px;
  background: #1a73e8;
  transform: rotate(31deg);
  transform-origin: bottom center;
}

.logo-google-ads::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 24px;
  right: 8px;
  top: 0;
  border-radius: 99px;
  background: #fbbc04;
  transform: rotate(-31deg);
  transform-origin: bottom center;
}

.logo-google-ads span,
.logo-google-ads i {
  display: none;
}

.logo-seo {
  background: #e8f0fe;
  color: #1a73e8;
}

.logo-seo::before {
  content: "";
  width: 16px;
  height: 16px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 19V5h2v12h16v2H4Zm4-4.5 3.5-4 3 2.5L20 6.5 21.5 8 14.8 16 11.7 13.4 9.5 16H8v-1.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 19V5h2v12h16v2H4Zm4-4.5 3.5-4 3 2.5L20 6.5 21.5 8 14.8 16 11.7 13.4 9.5 16H8v-1.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.logo-web,
.logo-wordpress {
  background: #21759b;
  font-family: Georgia, serif;
  font-size: 0.84rem;
}

.logo-web::before {
  content: "";
  width: 14px;
  height: 10px;
  border: 2px solid currentColor;
  border-top-width: 4px;
  border-radius: 2px;
}

.logo-wordpress {
  border-radius: 50%;
}

.logo-analytics {
  background: linear-gradient(135deg, #fbbc04 0%, #fbbc04 45%, #f29900 46%, #f29900 100%);
}

.logo-analytics::before,
.logo-analytics::after {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 4px;
  border-radius: 99px 99px 2px 2px;
  background: #fff7db;
}

.logo-analytics::before {
  left: 7px;
  height: 8px;
}

.logo-analytics::after {
  right: 7px;
  height: 14px;
}

.logo-ai-search {
  background: #101418;
}

.logo-ai-search::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid #c7f36f;
  border-radius: 50%;
}

.logo-ai-search::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  right: 4px;
  bottom: 5px;
  border-radius: 99px;
  background: #00a88f;
  transform: rotate(45deg);
}

.logo-email {
  background: #135ee8;
}

.logo-email::before {
  content: "";
  width: 15px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.logo-email::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  top: 4px;
}

.logo-social {
  background: #0f172a;
}

.logo-social::before,
.logo-social::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
}

.logo-social::before {
  left: 5px;
  top: 5px;
  box-shadow: 8px 4px 0 #ffffff;
}

.logo-social::after {
  left: 9px;
  bottom: 5px;
}

.logo-slack {
  background: transparent url("/assets/slack-logo.svg") center / contain no-repeat;
  color: transparent;
  text-indent: -999px;
}

.logo-whatsapp {
  background: transparent url("/assets/whatsapp-logo.svg") center / contain no-repeat;
  color: transparent;
  text-indent: -999px;
}

.logo-telegram {
  background: transparent url("/assets/telegram-logo.svg") center / contain no-repeat;
  color: transparent;
  text-indent: -999px;
}

.logo-google-ads,
.logo-wordpress,
.logo-analytics {
  background: transparent none center / contain no-repeat;
  color: transparent;
  text-indent: -999px;
}

.logo-google-ads {
  background-image: url("/assets/google-ads-logo.svg");
}

.logo-wordpress {
  background-image: url("/assets/wordpress-logo.svg");
}

.logo-analytics {
  background-image: url("/assets/google-analytics-logo.svg");
}

.logo-google-ads::before,
.logo-google-ads::after,
.logo-wordpress::before,
.logo-wordpress::after,
.logo-analytics::before,
.logo-analytics::after,
.logo-slack::before,
.logo-slack::after,
.logo-telegram::before,
.logo-telegram::after,
.logo-whatsapp::before,
.logo-whatsapp::after {
  content: none !important;
}

.operator-panel {
  background: #081827;
  color: var(--white);
  border-radius: 14px;
  width: min(100%, 500px);
  justify-self: end;
  padding: 11px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-conversation {
  position: relative;
  justify-self: end;
  width: min(100%, 360px);
  min-height: 570px;
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
  padding: 12px 0;
}

.phone-conversation-shell {
  position: relative;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 540 / 1020;
  border: 10px solid #081827;
  border-radius: 34px;
  background: #eef5fb;
  box-shadow: 0 34px 84px rgba(7, 24, 44, 0.28);
}

.phone-conversation-shell::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  z-index: 3;
  width: 92px;
  height: 22px;
  border-radius: 999px;
  background: #081827;
  transform: translateX(-50%);
}

.phone-chat-screen,
.phone-conversation-video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: #f3efe6;
}

.phone-chat-screen {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 104px;
  padding: 46px 22px 14px;
  background:
    linear-gradient(135deg, rgba(216, 246, 161, 0.18), transparent 45%),
    #075f56;
  color: #ffffff;
}

.phone-chat-avatar {
  display: inline-grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 999px;
  background: var(--lime);
  color: #075f56;
  font-weight: 900;
}

.phone-chat-header strong,
.phone-chat-header small {
  display: block;
}

.phone-chat-header strong {
  font-size: 1.03rem;
  line-height: 1.1;
}

.phone-chat-header small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 750;
}

.phone-chat-body {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  padding: 14px 13px;
  overflow: hidden;
}

.phone-chat-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, rgba(7, 95, 86, 0.035) 25%, transparent 25% 50%, rgba(7, 95, 86, 0.035) 50% 75%, transparent 75%),
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.54), transparent 24%),
    radial-gradient(circle at 82% 74%, rgba(0, 104, 93, 0.11), transparent 30%);
  background-size: 22px 22px, auto, auto;
  pointer-events: none;
}

.phone-chat-date,
.chat-bubble,
.chat-typing,
.phone-work-card {
  position: relative;
  z-index: 1;
}

.phone-chat-date {
  align-self: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #59616b;
  font-size: 0.78rem;
  font-weight: 850;
}

.chat-bubble {
  width: fit-content;
  max-width: 88%;
  border-radius: 17px;
  padding: 9px 12px 8px;
  box-shadow: 0 10px 26px rgba(7, 24, 44, 0.08);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  padding-block: 0;
  transform: translateY(12px) scale(0.98);
  animation: messageReveal 13s ease-in-out infinite;
}

.chat-bubble p {
  color: #14212f;
  font-size: clamp(0.72rem, 0.92vw, 0.82rem);
  font-weight: 650;
  line-height: 1.3;
}

.chat-bubble span {
  display: block;
  margin-top: 5px;
  color: #7a8590;
  font-size: 0.72rem;
  font-weight: 750;
  text-align: right;
}

.chat-bubble-user {
  align-self: flex-end;
  border-top-right-radius: 5px;
  background: #d9f6b0;
}

.chat-bubble-agent {
  align-self: flex-start;
  border-top-left-radius: 5px;
  background: #ffffff;
}

.chat-typing {
  display: flex;
  align-items: center;
  align-self: flex-start;
  gap: 5px;
  width: 66px;
  height: 34px;
  margin-top: 0;
  padding: 0 14px;
  border-radius: 16px 16px 16px 5px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(7, 24, 44, 0.08);
  opacity: 0;
  height: 0;
  overflow: hidden;
  padding-inline: 14px;
  transform: translateY(8px) scale(0.96);
  animation: typingReveal 13s ease-in-out infinite;
}

.chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #9aa3ad;
  animation: typingPulse 1.1s ease-in-out infinite;
}

.chat-typing span:nth-child(2) {
  animation-delay: 0.14s;
}

.chat-typing span:nth-child(3) {
  animation-delay: 0.28s;
}

.phone-work-card {
  display: grid;
  gap: 4px;
  width: 82%;
  align-self: flex-start;
  margin-top: 1px;
  padding: 10px 12px;
  border: 1px solid rgba(7, 95, 86, 0.12);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(7, 24, 44, 0.1);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  padding-block: 0;
  transform: translateY(14px) scale(0.98);
  animation: workCardReveal 13s ease-in-out infinite;
}

.chat-step-1 {
  animation-delay: 0s;
}

.chat-typing-1 {
  animation-name: typingRevealOne;
}

.chat-step-2 {
  animation-delay: 0s;
}

.chat-step-3 {
  animation-delay: 0s;
}

.chat-typing-2 {
  animation-name: typingRevealTwo;
}

.chat-step-4 {
  animation-delay: 0s;
}

.chat-step-5 {
  animation-delay: 0s;
}

.phone-work-card strong {
  color: #075f56;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.phone-work-card span {
  position: relative;
  padding-left: 18px;
  color: #23313f;
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.25;
}

.phone-work-card span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.34em;
  width: 8px;
  height: 5px;
  border-left: 2px solid #075f56;
  border-bottom: 2px solid #075f56;
  transform: rotate(-45deg);
}

@keyframes phoneDrift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes messageReveal {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  8%,
  86% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-8px) scale(0.99);
  }
}

@keyframes typingReveal {
  0%,
  13%,
  27%,
  44%,
  58%,
  100% {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
  }
  15%,
  25%,
  46%,
  56% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes typingRevealOne {
  0%,
  11%,
  23%,
  100% {
    opacity: 0;
    height: 0;
    transform: translateY(8px) scale(0.96);
  }
  13%,
  20% {
    opacity: 1;
    height: 34px;
    transform: translateY(0) scale(1);
  }
}

@keyframes typingRevealTwo {
  0%,
  52%,
  65%,
  100% {
    opacity: 0;
    height: 0;
    transform: translateY(8px) scale(0.96);
  }
  54%,
  62% {
    opacity: 1;
    height: 34px;
    transform: translateY(0) scale(1);
  }
}

@keyframes workCardReveal {
  0%,
  74% {
    opacity: 0;
    max-height: 0;
    padding-block: 0;
    transform: translateY(14px) scale(0.98);
  }
  80%,
  94% {
    opacity: 1;
    max-height: 150px;
    padding-block: 10px;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    max-height: 0;
    padding-block: 0;
    transform: translateY(-8px) scale(0.99);
  }
}

.chat-step-1 {
  animation-name: messageRevealStep1;
}

.chat-step-2 {
  animation-name: messageRevealStep2;
}

.chat-step-3 {
  animation-name: messageRevealStep3;
}

.chat-step-4 {
  animation-name: messageRevealStep4;
}

@keyframes messageRevealStep1 {
  0% {
    opacity: 0;
    max-height: 0;
    padding-block: 0;
    transform: translateY(12px) scale(0.98);
  }
  7%,
  96% {
    opacity: 1;
    max-height: 170px;
    padding-block: 9px 8px;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    max-height: 0;
    padding-block: 0;
    transform: translateY(-8px) scale(0.99);
  }
}

@keyframes messageRevealStep2 {
  0%,
  22% {
    opacity: 0;
    max-height: 0;
    padding-block: 0;
    transform: translateY(12px) scale(0.98);
  }
  28%,
  96% {
    opacity: 1;
    max-height: 170px;
    padding-block: 9px 8px;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    max-height: 0;
    padding-block: 0;
    transform: translateY(-8px) scale(0.99);
  }
}

@keyframes messageRevealStep3 {
  0%,
  39% {
    opacity: 0;
    max-height: 0;
    padding-block: 0;
    transform: translateY(12px) scale(0.98);
  }
  45%,
  96% {
    opacity: 1;
    max-height: 170px;
    padding-block: 9px 8px;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    max-height: 0;
    padding-block: 0;
    transform: translateY(-8px) scale(0.99);
  }
}

@keyframes messageRevealStep4 {
  0%,
  64% {
    opacity: 0;
    max-height: 0;
    padding-block: 0;
    transform: translateY(12px) scale(0.98);
  }
  70%,
  96% {
    opacity: 1;
    max-height: 170px;
    padding-block: 9px 8px;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    max-height: 0;
    padding-block: 0;
    transform: translateY(-8px) scale(0.99);
  }
}

@keyframes typingPulse {
  0%,
  80%,
  100% {
    opacity: 0.42;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dffbf6;
  font-size: 0.88rem;
  font-weight: 750;
}

.status-pill::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(0, 168, 143, 0.16);
}

.command-stack {
  display: grid;
  gap: 12px;
  padding: 18px 6px 6px;
}

.message {
  border-radius: var(--radius);
  padding: 14px;
}

.message.user {
  background: #edf4ff;
  color: #142033;
  margin-left: 36px;
}

.message.agent {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.message small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  margin-bottom: 6px;
  font-weight: 750;
}

.message.user small {
  color: #516173;
}

.task-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.task {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 10px;
  color: #dbe8f6;
  font-size: 0.86rem;
}

.work-console {
  overflow: hidden;
  border-radius: 10px;
  background: #121719;
  color: #eff7f2;
}

.whatsapp-console {
  background: #efe7d8;
  color: #17211d;
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.whatsapp-console .console-top {
  background: #075e54;
  color: #ffffff;
  border-bottom: 0;
}

.console-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.console-contact .logo-mark {
  width: 26px;
  height: 26px;
  min-width: 26px;
  flex-basis: 26px;
}

.message-channel-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  flex: 0 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.message-channel-icon svg {
  width: 15px;
  height: 15px;
}

.console-title {
  font-weight: 850;
  font-size: 1rem;
}

.console-subtitle {
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.74rem;
  line-height: 1;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d7f6a1;
  font-size: 0.82rem;
  font-weight: 750;
}

.status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}

.chat-thread {
  display: grid;
  gap: 10px;
  padding: 13px 15px;
}

.whatsapp-console .chat-thread {
  position: relative;
  background:
    radial-gradient(circle at 16px 16px, rgba(7, 94, 84, 0.08) 0 2px, transparent 2px 100%),
    radial-gradient(circle at 54px 42px, rgba(17, 33, 29, 0.06) 0 1.5px, transparent 1.5px 100%),
    #efe7d8;
  background-size: 72px 72px;
}

.message.client {
  margin-left: auto;
  max-width: 86%;
  background: #d9fdd3;
  color: #17211d;
  font-size: 0.9rem;
  line-height: 1.48;
}

.whatsapp-console .message {
  position: relative;
  border-radius: 8px;
  box-shadow: 0 1px 1px rgba(15, 23, 42, 0.12);
}

.whatsapp-console .message.client {
  border-top-right-radius: 2px;
}

.whatsapp-console .message.agent {
  width: min(100%, 430px);
  border-top-left-radius: 2px;
  background: #ffffff;
  border: 0;
  color: #17211d;
}

.message-text {
  display: block;
}

.message-time {
  display: block;
  margin-top: 7px;
  text-align: right;
  color: rgba(23, 33, 29, 0.58);
  font-size: 0.68rem;
  line-height: 1;
}

.message-source {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-right: 6px;
  font-weight: 850;
  white-space: nowrap;
}

.message-source .logo-mark {
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex-basis: 18px;
  font-size: 0.56rem;
}

.work-list {
  display: grid;
  gap: 8px;
  padding: 0 15px 13px;
}

.work-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  line-height: 1.45;
}

.tick {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  background: var(--lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tick::before {
  content: "";
  width: 8px;
  height: 5px;
  border-left: 2px solid #132012;
  border-bottom: 2px solid #132012;
  transform: rotate(-45deg) translateY(-1px);
}

.section {
  padding: 84px 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

main > .section {
  content-visibility: auto;
  contain-intrinsic-size: auto 820px;
}

.section.alt {
  background: #eef5fb;
}

.section.dark {
  background: var(--navy);
  color: var(--white);
}

.section > .container,
.pricing-hero > .container,
.page-hero > .container,
.audit-hero > .container,
.contact-hero > .container,
.blog-hero > .container,
.hero > .container {
  position: relative;
  z-index: 1;
}

.section::before,
.pricing-hero::before,
.audit-hero::before,
.contact-hero::before,
.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  opacity: 0;
}

#agents::before {
  opacity: 0.13;
  background-image:
    linear-gradient(90deg, rgba(238, 245, 251, 0.9) 0%, rgba(238, 245, 251, 0.56) 44%, rgba(238, 245, 251, 0.84) 100%),
    url("/images/img20-agent.webp");
  background-size: auto, min(520px, 42vw);
  background-position: center, right -110px top 52px;
}

#workflow::before,
.section.dark[aria-labelledby="plain-english"]::before,
.section.dark[aria-labelledby="site-bottom-cta-title"]::before {
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, rgba(7, 24, 44, 0.96) 0%, rgba(7, 24, 44, 0.76) 50%, rgba(7, 24, 44, 0.98) 100%),
    url("/images/img20-slack-phone.webp");
  background-size: auto, min(500px, 42vw);
  background-position: center, right -120px center;
}

.capability-section::before,
.section[aria-labelledby="audit-first"]::before,
.section[aria-labelledby="technical-seo"]::before,
.section[aria-labelledby="local-seo"]::before,
.section[aria-labelledby="pricing-cta"]::before,
.section[aria-labelledby="audit-route-title"]::before,
.section[aria-labelledby="module-links"]::before {
  opacity: 0.16;
  background-image:
    linear-gradient(90deg, rgba(238, 245, 251, 0.96) 0%, rgba(238, 245, 251, 0.74) 48%, rgba(238, 245, 251, 0.96) 100%),
    url("/images/img20-laptop-workspace.webp");
  background-size: auto, min(560px, 44vw);
  background-position: center, right -120px center;
}

.section[aria-labelledby="waste-problems"]::before,
.section[aria-labelledby="seo-problems"]::before,
.section[aria-labelledby="website-problems"]::before,
.section[aria-labelledby="pricing-options"]::before,
.section[aria-labelledby="ads-recovery"]::before,
.section[aria-labelledby="what-wilmot-does"]::before,
.section[aria-labelledby="contact-form-title"]::before {
  opacity: 0.12;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.78) 52%, rgba(255, 255, 255, 0.96) 100%),
    url("/images/img20-performance.webp");
  background-size: auto, min(540px, 42vw);
  background-position: center, right -130px center;
}

.section[aria-labelledby="campaign-types"]::before,
.section[aria-labelledby="on-page-seo"]::before,
.section[aria-labelledby="schema-opportunities"]::before,
.section[aria-labelledby="ethical-links"]::before,
.section[aria-labelledby="seo-map"]::before,
.section[aria-labelledby="landing-page"]::before,
.section[aria-labelledby="bundle-results"]::before,
.section[aria-labelledby="after-submission"]::before,
.section[aria-label="Pricing workflow visuals"]::before {
  opacity: 0.1;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.8) 52%, rgba(255, 255, 255, 0.97) 100%),
    url("/images/img20-workflow.webp");
  background-size: auto, min(520px, 42vw);
  background-position: center, left -150px center;
}

.section[aria-labelledby="wordpress-editing"]::before,
.section[aria-labelledby="cro-trust"]::before,
.section[aria-labelledby="connect-tools"]::before,
.section[aria-labelledby="review-approve"]::before,
.section[aria-labelledby="monthly-improvement"]::before {
  opacity: 0.14;
  background-image:
    linear-gradient(90deg, rgba(238, 245, 251, 0.97) 0%, rgba(238, 245, 251, 0.78) 50%, rgba(238, 245, 251, 0.97) 100%),
    url("/images/img20-laptop-workspace.webp");
  background-size: auto, min(560px, 44vw);
  background-position: center, right -140px center;
}

.section[aria-labelledby="landing-pages"]::before,
.section[aria-labelledby="visual-qa"]::before,
.section[aria-labelledby="plain-english-task"]::before,
.section[aria-labelledby="work-logs"]::before,
.section[aria-labelledby="completed-evidence"]::before,
.section[aria-labelledby="internal-links"]::before,
.section[aria-labelledby="pricing-faq-title"]::before,
.section[aria-labelledby="case-studies-faq-title"]::before,
.section[aria-labelledby="how-it-works-faq-title"]::before {
  opacity: 0.1;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.82) 52%, rgba(255, 255, 255, 0.98) 100%),
    url("/images/img20-slack-phone.webp");
  background-size: auto, min(520px, 42vw);
  background-position: center, left -150px center;
}

.section.dark[aria-labelledby="confirm-scope"]::before,
.section.dark:not([aria-labelledby])::before {
  opacity: 0.16;
  background-image:
    linear-gradient(90deg, rgba(7, 24, 44, 0.98) 0%, rgba(7, 24, 44, 0.76) 52%, rgba(7, 24, 44, 0.98) 100%),
    url("/images/img20-success.webp");
  background-size: auto, min(540px, 42vw);
  background-position: center, right -130px center;
}

.pricing-hero::before,
.audit-hero::before,
.contact-hero::before,
.blog-hero::before {
  opacity: 0.14;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(238, 246, 251, 0.72) 54%, rgba(238, 246, 251, 0.96) 100%),
    url("/images/img20-laptop-workspace.webp");
  background-size: auto, min(580px, 46vw);
  background-position: center, right -130px center;
}

/* Stronger Wilmot image backgrounds: keep text readable with gradients, not pseudo-element opacity. */
#agents::before,
#workflow::before,
.capability-section::before,
.section[aria-labelledby="audit-first"]::before,
.section[aria-labelledby="technical-seo"]::before,
.section[aria-labelledby="local-seo"]::before,
.section[aria-labelledby="pricing-cta"]::before,
.section[aria-labelledby="audit-route-title"]::before,
.section[aria-labelledby="module-links"]::before,
.section[aria-labelledby="waste-problems"]::before,
.section[aria-labelledby="seo-problems"]::before,
.section[aria-labelledby="website-problems"]::before,
.section[aria-labelledby="pricing-options"]::before,
.section[aria-labelledby="ads-recovery"]::before,
.section[aria-labelledby="what-wilmot-does"]::before,
.section[aria-labelledby="contact-form-title"]::before,
.section[aria-labelledby="campaign-types"]::before,
.section[aria-labelledby="on-page-seo"]::before,
.section[aria-labelledby="schema-opportunities"]::before,
.section[aria-labelledby="ethical-links"]::before,
.section[aria-labelledby="seo-map"]::before,
.section[aria-labelledby="landing-page"]::before,
.section[aria-labelledby="bundle-results"]::before,
.section[aria-labelledby="after-submission"]::before,
.section[aria-label="Pricing workflow visuals"]::before,
.section[aria-labelledby="wordpress-editing"]::before,
.section[aria-labelledby="cro-trust"]::before,
.section[aria-labelledby="connect-tools"]::before,
.section[aria-labelledby="review-approve"]::before,
.section[aria-labelledby="monthly-improvement"]::before,
.section[aria-labelledby="landing-pages"]::before,
.section[aria-labelledby="visual-qa"]::before,
.section[aria-labelledby="plain-english-task"]::before,
.section[aria-labelledby="work-logs"]::before,
.section[aria-labelledby="completed-evidence"]::before,
.section[aria-labelledby="internal-links"]::before,
.section[aria-labelledby="pricing-faq-title"]::before,
.section[aria-labelledby="case-studies-faq-title"]::before,
.section[aria-labelledby="how-it-works-faq-title"]::before,
.section.dark[aria-labelledby="plain-english"]::before,
.section.dark[aria-labelledby="site-bottom-cta-title"]::before,
.section.dark[aria-labelledby="confirm-scope"]::before,
.section.dark:not([aria-labelledby])::before,
.pricing-hero::before,
.audit-hero::before,
.contact-hero::before,
.blog-hero::before {
  opacity: 1;
}

#agents::before {
  background-image:
    linear-gradient(90deg, rgba(238, 245, 251, 0.96) 0%, rgba(238, 245, 251, 0.78) 44%, rgba(238, 245, 251, 0.22) 100%),
    url("/images/img20-agent.webp");
  background-size: auto, min(620px, 48vw);
  background-position: center, right 24px center;
}

#workflow::before,
.section.dark[aria-labelledby="plain-english"]::before,
.section.dark[aria-labelledby="site-bottom-cta-title"]::before {
  background-image:
    linear-gradient(90deg, rgba(7, 24, 44, 0.98) 0%, rgba(7, 24, 44, 0.84) 48%, rgba(7, 24, 44, 0.28) 100%),
    url("/images/img20-slack-phone.webp");
  background-size: auto, min(600px, 48vw);
  background-position: center, right 18px center;
}

.capability-section::before,
.section[aria-labelledby="audit-first"]::before,
.section[aria-labelledby="technical-seo"]::before,
.section[aria-labelledby="local-seo"]::before,
.section[aria-labelledby="pricing-cta"]::before,
.section[aria-labelledby="audit-route-title"]::before,
.section[aria-labelledby="module-links"]::before,
.section[aria-labelledby="wordpress-editing"]::before,
.section[aria-labelledby="cro-trust"]::before,
.section[aria-labelledby="connect-tools"]::before,
.section[aria-labelledby="review-approve"]::before,
.section[aria-labelledby="monthly-improvement"]::before {
  background-image:
    linear-gradient(90deg, rgba(238, 245, 251, 0.98) 0%, rgba(238, 245, 251, 0.82) 46%, rgba(238, 245, 251, 0.24) 100%),
    url("/images/img20-laptop-workspace.webp");
  background-size: auto, min(660px, 50vw);
  background-position: center, right 22px center;
}

.section[aria-labelledby="waste-problems"]::before,
.section[aria-labelledby="seo-problems"]::before,
.section[aria-labelledby="website-problems"]::before,
.section[aria-labelledby="pricing-options"]::before,
.section[aria-labelledby="ads-recovery"]::before,
.section[aria-labelledby="what-wilmot-does"]::before,
.section[aria-labelledby="contact-form-title"]::before {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.82) 48%, rgba(255, 255, 255, 0.24) 100%),
    url("/images/img20-performance.webp");
  background-size: auto, min(640px, 48vw);
  background-position: center, right 18px center;
}

.section[aria-labelledby="website-tasks"]::before,
.section[aria-labelledby="work-log"]::before,
.section[aria-labelledby="connect-chat"]::before,
.section[aria-labelledby="ai-search"]::before {
  opacity: 1;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.82) 48%, rgba(255, 255, 255, 0.24) 100%),
    url("/images/img20-slack-phone.webp");
  background-size: auto, min(620px, 48vw);
  background-position: center, right 18px center;
}

.section[aria-labelledby="campaign-types"]::before,
.section[aria-labelledby="on-page-seo"]::before,
.section[aria-labelledby="schema-opportunities"]::before,
.section[aria-labelledby="ethical-links"]::before,
.section[aria-labelledby="seo-map"]::before,
.section[aria-labelledby="landing-page"]::before,
.section[aria-labelledby="bundle-results"]::before,
.section[aria-labelledby="after-submission"]::before,
.section[aria-label="Pricing workflow visuals"]::before {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0.82) 50%, rgba(255, 255, 255, 0.98) 100%),
    url("/images/img20-workflow.webp");
  background-size: auto, min(620px, 48vw);
  background-position: center, left 18px center;
}

.section[aria-labelledby="landing-pages"]::before,
.section[aria-labelledby="visual-qa"]::before,
.section[aria-labelledby="plain-english-task"]::before,
.section[aria-labelledby="work-logs"]::before,
.section[aria-labelledby="completed-evidence"]::before,
.section[aria-labelledby="internal-links"]::before,
.section[aria-labelledby="pricing-faq-title"]::before,
.section[aria-labelledby="case-studies-faq-title"]::before,
.section[aria-labelledby="how-it-works-faq-title"]::before {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.84) 50%, rgba(255, 255, 255, 0.98) 100%),
    url("/images/img20-slack-phone.webp");
  background-size: auto, min(600px, 48vw);
  background-position: center, left 18px center;
}

.section.dark[aria-labelledby="confirm-scope"]::before,
.section.dark:not([aria-labelledby])::before {
  background-image:
    linear-gradient(90deg, rgba(7, 24, 44, 0.98) 0%, rgba(7, 24, 44, 0.84) 48%, rgba(7, 24, 44, 0.28) 100%),
    url("/images/img20-success.webp");
  background-size: auto, min(620px, 48vw);
  background-position: center, right 18px center;
}

.pricing-hero::before,
.audit-hero::before,
.contact-hero::before,
.blog-hero::before {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(238, 246, 251, 0.78) 48%, rgba(238, 246, 251, 0.18) 100%),
    url("/images/img20-laptop-workspace.webp");
  background-size: auto, min(680px, 52vw);
  background-position: center, right 18px center;
}

.section.dark h2,
.section.dark h3,
.section.dark p {
  color: var(--white);
}

.section.dark p {
  opacity: 0.78;
}

/* Decorative Wilmot backgrounds: keep imagery out of reading zones. */
.section[aria-labelledby="module-links"]::before,
.section[aria-labelledby="internal-links"]::before,
.section[aria-labelledby="pricing-cta"]::before,
.section[aria-labelledby="pricing-faq-title"]::before,
.section[aria-labelledby="case-studies-faq-title"]::before,
.section[aria-labelledby="how-it-works-faq-title"]::before {
  background-image:
    linear-gradient(90deg, rgba(238, 245, 251, 0.99) 0%, rgba(238, 245, 251, 0.96) 56%, rgba(238, 245, 251, 0.72) 100%),
    url("/images/img20-laptop-workspace.webp");
  background-size: auto, min(420px, 30vw);
  background-position: center, right 32px bottom -96px;
}

.section[aria-labelledby="module-links"]::before {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.97) 58%, rgba(255, 255, 255, 0.76) 100%),
    url("/images/img20-slack-phone.webp");
}

.section[aria-labelledby="internal-links"]::before {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.995) 0%, rgba(255, 255, 255, 0.98) 64%, rgba(255, 255, 255, 0.82) 100%),
    url("/images/img20-slack-phone.webp");
  background-size: auto, min(360px, 26vw);
  background-position: center, right 32px bottom -112px;
}

.section[aria-labelledby="campaign-types"]::before,
.section[aria-labelledby="on-page-seo"]::before,
.section[aria-labelledby="schema-opportunities"]::before,
.section[aria-labelledby="ethical-links"]::before,
.section[aria-labelledby="seo-map"]::before,
.section[aria-labelledby="landing-page"]::before,
.section[aria-labelledby="bundle-results"]::before,
.section[aria-labelledby="after-submission"]::before,
.section[aria-labelledby="landing-pages"]::before,
.section[aria-labelledby="visual-qa"]::before,
.section[aria-labelledby="plain-english-task"]::before,
.section[aria-labelledby="work-logs"]::before,
.section[aria-labelledby="completed-evidence"]::before,
.section[aria-labelledby="internal-links"]::before {
  background-size: auto, min(440px, 32vw);
  background-position: center, left -120px bottom -92px;
}

#workflow::before,
.section.dark[aria-labelledby="plain-english"]::before,
.section.dark[aria-labelledby="site-bottom-cta-title"]::before,
.section.dark[aria-labelledby="confirm-scope"]::before,
.section.dark:not([aria-labelledby])::before {
  background-image:
    linear-gradient(90deg, rgba(7, 24, 44, 0.99) 0%, rgba(7, 24, 44, 0.94) 56%, rgba(7, 24, 44, 0.7) 100%),
    url("/images/img20-slack-phone.webp");
  background-size: auto, min(430px, 32vw);
  background-position: center, right 28px bottom -96px;
}

.section.dark[aria-labelledby="confirm-scope"]::before,
.section.dark:not([aria-labelledby])::before {
  background-image:
    linear-gradient(90deg, rgba(7, 24, 44, 0.99) 0%, rgba(7, 24, 44, 0.94) 56%, rgba(7, 24, 44, 0.7) 100%),
    url("/images/img20-success.webp");
}

.section.dark .section-kicker,
.section.dark .eyebrow {
  display: inline-flex;
  align-items: center;
  color: #d7f6a1;
  background: rgba(215, 246, 161, 0.12);
  border: 1px solid rgba(215, 246, 161, 0.38);
  border-color: rgba(215, 246, 161, 0.38);
  padding: 8px 12px;
  border-radius: 999px;
}

.section.dark .section-kicker--plain-dark {
  background: transparent;
  border-color: transparent;
  padding: 0;
}

.section.dark .plain-link,
.section.dark a:not(.btn) {
  color: #d7f6a1;
}

.section.dark .card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.section.dark .card-media {
  background: rgba(255, 255, 255, 0.08);
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 560px;
  font-size: 1.05rem;
  margin-top: 2px;
}

.section-kicker {
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 18px 48px rgba(7, 24, 44, 0.06);
  min-width: 0;
}

.visual-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 225, 232, 0.92);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 22px 56px rgba(7, 24, 44, 0.1);
}

.visual-panel img,
.card-media img,
.blog-card-media img,
.case-study-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  contain: paint;
}

.visual-panel--hero {
  min-height: 390px;
}

.visual-panel--hero img {
  min-height: 390px;
}

.visual-panel--compact {
  min-height: 280px;
}

.visual-panel--compact img {
  min-height: 280px;
}

.visual-panel-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(7, 24, 44, 0.78);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.visual-panel-caption strong,
.visual-panel-caption span {
  display: block;
  color: #ffffff;
}

.visual-panel-caption strong {
  font-size: 0.98rem;
}

.visual-panel-caption span {
  margin-top: 4px;
  font-size: 0.86rem;
  line-height: 1.45;
  opacity: 0.82;
}

.card-media {
  overflow: hidden;
  height: 150px;
  margin: -24px -24px 20px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: #dfe9f2;
}

.card-media.card-media--small {
  height: 122px;
}

.module-visual-grid .card {
  display: grid;
  align-content: start;
}

.module-visual-grid .card-media.card-media--small {
  height: 112px;
  margin: 0 0 18px;
  border: 1px solid rgba(217, 225, 232, 0.88);
  border-radius: calc(var(--radius) - 2px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.module-visual-grid .card-media.card-media--small img {
  filter: saturate(0.92) contrast(0.96);
}

.card-media--workflow {
  height: 136px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.card-media--contact {
  height: 148px;
}

.blog-card-media {
  overflow: hidden;
  height: 132px;
  margin: -22px -22px 18px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: #dfe9f2;
}

.case-study-media {
  overflow: hidden;
  height: 190px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #dfe9f2;
  box-shadow: 0 16px 42px rgba(7, 24, 44, 0.08);
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.image-strip .visual-panel {
  min-height: clamp(300px, 28vw, 440px);
}

.image-strip .visual-panel img {
  min-height: clamp(300px, 28vw, 440px);
}

.pricing-image-strip {
  margin-top: 22px;
}

.pricing-image-strip .visual-panel {
  min-height: 210px;
}

.pricing-image-strip .visual-panel img {
  min-height: 210px;
}

.section.dark .visual-panel {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.section.dark .visual-panel-caption {
  background: rgba(255, 255, 255, 0.12);
}

.capability-section {
  background: var(--white);
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 44px;
  align-items: start;
}

.capability-intro {
  position: sticky;
  top: 102px;
  max-width: 520px;
}

.capability-intro h2 {
  font-size: clamp(2rem, 3.3vw, 3.1rem);
  line-height: 1.08;
}

.capability-intro p {
  margin-top: 18px;
  font-size: 1.08rem;
  max-width: 500px;
}

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

.capability-cards .card {
  padding: 22px;
}

.capability-cards p {
  font-size: 1.05rem;
  line-height: 1.64;
}

.card .icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  flex: 0 0 42px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: #e8f1ff;
  color: var(--blue);
  margin-bottom: 18px;
}

.card .icon svg {
  width: 22px;
  height: 22px;
}

.module-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.module-card li {
  display: flex;
  gap: 10px;
  color: #384554;
}

.module-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 9px;
}

.card p,
.price-card p {
  margin-top: 10px;
}

.list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.list li {
  display: flex;
  gap: 10px;
  color: #384554;
}

.list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 9px;
  flex: 0 0 auto;
}

.workflow {
  background: var(--navy);
  color: var(--white);
}

.workflow h2,
.workflow h3,
.workflow p {
  color: var(--white);
}

.workflow p {
  opacity: 0.78;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.step {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 14px;
}

.pricing {
  background: #ffffff;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #fbfdff;
  position: relative;
}

.price-card.featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.price-card.featured h3,
.price-card.featured p,
.price-card.featured .price {
  color: var(--white);
}

.price {
  color: var(--navy);
  font-size: 2rem;
  font-weight: 900;
  margin-top: 18px;
}

.price span {
  font-size: 0.94rem;
  color: inherit;
  opacity: 0.72;
}

.price small {
  font-size: 0.9rem;
  color: inherit;
  opacity: 0.7;
}

.pricing-hero {
  padding: 74px 0 78px;
  background:
    radial-gradient(circle at 84% 16%, rgba(0, 168, 143, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #eef6fb 100%);
}

.pricing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 46px;
  align-items: center;
}

.pricing-hero .hero-actions {
  align-items: center;
}

.pricing-hero .plain-link {
  min-height: 0;
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.35;
  text-decoration-thickness: 1px;
  box-shadow: none;
}

.pricing-hero .plain-link:hover {
  color: var(--blue-dark);
}

.faq-section .section-actions .plain-link {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--navy);
  line-height: 1.35;
}

.faq-section .section-actions .plain-link:hover {
  background: transparent;
  color: var(--blue-dark);
}

.pricing-hero .hero-text-link {
  display: inline;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--navy);
  box-shadow: none;
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.pricing-hero .hero-text-link:hover {
  color: var(--blue-dark);
}

.pricing-hero .hero-actions > a.hero-text-link[href="/pricing"] {
  appearance: none;
  display: inline-block;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--navy);
  font: inherit;
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transform: none;
}

.pricing-hero .hero-actions > a.hero-text-link[href="/pricing"]:hover {
  background: transparent;
  box-shadow: none;
  color: var(--blue-dark);
  transform: none;
}

.how-it-works-hero .hero-actions > a.hero-text-link[href="/pricing"] {
  appearance: none !important;
  display: inline !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--navy) !important;
  font: inherit;
  font-size: 0.96rem !important;
  font-weight: 750 !important;
  line-height: 1.35 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 5px !important;
  transform: none !important;
}

.how-it-works-hero .hero-actions > a.hero-text-link[href="/pricing"]:hover {
  background: transparent !important;
  box-shadow: none !important;
  color: var(--blue-dark) !important;
  transform: none !important;
}

.case-studies-hero .hero-actions > a.hero-text-link[href="/pricing"] {
  appearance: none !important;
  display: inline !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--navy) !important;
  font: inherit;
  font-size: 0.96rem !important;
  font-weight: 750 !important;
  line-height: 1.35 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 5px !important;
  transform: none !important;
}

.case-studies-hero .hero-actions > a.hero-text-link[href="/pricing"]:hover {
  background: transparent !important;
  box-shadow: none !important;
  color: var(--blue-dark) !important;
  transform: none !important;
}

.case-studies-hero .hero-pricing-link {
  margin-top: 12px;
}

.case-studies-hero .hero-pricing-link > a.hero-text-link[href="/pricing"] {
  appearance: none !important;
  display: inline !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--navy) !important;
  font: inherit;
  font-size: 0.96rem !important;
  font-weight: 750 !important;
  line-height: 1.35 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 5px !important;
  transform: none !important;
}

.case-studies-hero .hero-pricing-link > a.hero-text-link[href="/pricing"]:hover {
  background: transparent !important;
  box-shadow: none !important;
  color: var(--blue-dark) !important;
  transform: none !important;
}

.pricing-summary {
  background: var(--navy);
  color: var(--white);
  border-radius: 14px;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow);
}

.pricing-summary h2,
.pricing-summary p {
  color: var(--white);
}

.pricing-summary h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-top: 12px;
}

.pricing-summary p {
  margin-top: 16px;
  opacity: 0.8;
}

.saving-stat {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.saving-stat strong {
  color: var(--lime);
  font-size: 2.45rem;
  line-height: 1;
  font-weight: 900;
}

.saving-stat span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
  line-height: 1.35;
}

.pricing-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.plan-card h3 {
  min-height: 54px;
}

.plan-card .btn {
  margin-top: auto;
}

.plan-list {
  display: grid;
  gap: 9px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.plan-list li {
  display: flex;
  gap: 10px;
  color: #384554;
  font-size: 0.94rem;
  line-height: 1.45;
}

.plan-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 8px;
}

.price-card.featured .plan-list li {
  color: rgba(255, 255, 255, 0.84);
}

.price-card.featured .plan-list li::before {
  background: var(--lime);
}

.best-value-card {
  isolation: isolate;
}

.exclusion-list {
  display: grid;
  gap: 12px;
}

.pricing-link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.pricing-link-card {
  display: grid;
  gap: 10px;
  min-height: 160px;
  color: var(--white);
}

.pricing-link-card strong,
.pricing-link-card span {
  color: var(--white);
}

.pricing-link-card strong {
  font-size: 1.02rem;
  line-height: 1.25;
}

.pricing-link-card span {
  opacity: 0.76;
  line-height: 1.48;
}

.image-rich-list {
  display: grid;
  gap: 16px;
}

.image-rich-card {
  overflow: hidden;
  padding: 0;
}

.image-rich-card .card-media {
  margin: 0;
  height: 188px;
  border-radius: 0;
}

.image-rich-card-content {
  padding: 22px;
}

.image-rich-card-content strong,
.image-rich-card-content span {
  display: block;
}

.image-rich-card-content strong {
  color: var(--navy);
  font-size: 1.02rem;
}

.image-rich-card-content span {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.55;
}

.section-image-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.section-image-stack {
  display: grid;
  gap: 16px;
}

.audit-link-card strong {
  color: var(--navy);
}

.audit-link-card span {
  color: var(--muted);
}

.pricing-final-cta {
  justify-content: center;
}

.tag {
  display: inline-flex;
  border-radius: 999px;
  background: var(--lime);
  color: var(--navy);
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 850;
  margin-bottom: 12px;
}

.bundle {
  background: var(--navy);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 28px;
  align-items: center;
  overflow: hidden;
  border-radius: 14px;
  padding: clamp(24px, 4vw, 34px);
}

.bundle h3,
.bundle h2,
.bundle p,
.bundle .price {
  color: var(--white);
}

.bundle h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-top: 14px;
}

.bundle p {
  max-width: 720px;
  opacity: 0.82;
  margin-top: 14px;
}

.bundle-label {
  justify-self: start;
  display: inline-flex;
  border-radius: 999px;
  background: var(--lime);
  color: var(--navy);
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 850;
}

.audit,
.audit-band {
  background:
    linear-gradient(135deg, rgba(19, 94, 232, 0.94), rgba(7, 24, 44, 0.98)),
    url("/images/img20-audit.webp") center / cover;
  color: var(--white);
}

.audit h2,
.audit p,
.audit-band h2,
.audit-band p {
  color: var(--white);
}

.audit-panel,
.audit-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 26px 42px;
  align-items: start;
}

.audit-band {
  border-radius: 14px;
  padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow);
}

.audit-copy {
  display: grid;
  gap: 18px;
}

.audit-copy p {
  margin: 0;
}

.audit-visual {
  overflow: hidden;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.audit-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.audit-benefits {
  display: grid;
  gap: 12px;
  align-self: stretch;
}

.audit-benefits div {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  padding: 16px 18px;
  backdrop-filter: blur(8px);
}

.audit-benefits strong,
.audit-benefits span {
  display: block;
  color: var(--white);
}

.audit-benefits strong {
  font-size: 1rem;
  font-weight: 900;
}

.audit-benefits span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.45;
}

.form,
.audit-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow);
}

.form label {
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 800;
}

.form input,
.form textarea,
.form select,
.audit-form input,
.audit-form select,
.audit-form textarea,
.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
  background: #f9fbfd;
}

.form textarea,
.audit-form textarea,
.contact-page-form textarea {
  min-height: 104px;
  resize: vertical;
}

.form-success {
  margin: 0;
  border: 1px solid rgba(31, 173, 120, 0.28);
  border-radius: var(--radius);
  background: rgba(31, 173, 120, 0.1);
  color: #143326;
  padding: 12px 14px;
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.45;
}

.contact-preview {
  background: #ffffff;
}

.contact-preview-grid,
.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.contact-card,
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 30px);
  box-shadow: 0 18px 48px rgba(7, 24, 44, 0.08);
}

.contact-card h3,
.contact-form-card h3 {
  margin-bottom: 14px;
}

.contact-card ul,
.contact-methods {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-card li,
.contact-method {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 650;
}

.contact-card li::before,
.contact-method::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(0, 168, 143, 0.12);
}

.contact-method strong {
  display: block;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-method a {
  color: var(--blue-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.contact-page-form label {
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 850;
}

.contact-page-form .btn,
.audit-page-form .btn {
  font-size: 0.875rem;
}

.contact-hero {
  background:
    radial-gradient(circle at 82% 14%, rgba(0, 168, 143, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #eef6fb 100%);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.contact-hero-note h2 {
  font-size: clamp(1.7rem, 2.7vw, 2.45rem);
  margin-bottom: 14px;
}

.contact-hero-note p {
  color: #26313c;
}

.contact-hero-actions {
  margin-top: 30px;
}

.contact-hero-actions > a.plain-link[href="/audit"] {
  display: inline-flex;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--blue-dark);
}

.contact-hero-actions > a.plain-link[href="/audit"]:hover {
  background: transparent;
  box-shadow: none;
}

.contact-response-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-audit-route .section-actions {
  margin-top: 22px;
}

.blog-hero {
  background:
    radial-gradient(circle at 82% 14%, rgba(0, 168, 143, 0.13), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #eef6fb 100%);
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.blog-hero-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 30px);
  box-shadow: 0 18px 48px rgba(7, 24, 44, 0.08);
}

.blog-hero-panel h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  margin-bottom: 14px;
}

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

.blog-card-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-category-card,
.blog-post-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 16px 44px rgba(7, 24, 44, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.blog-category-card:hover,
.blog-post-card:hover {
  transform: translateY(-2px);
  border-color: rgba(19, 94, 232, 0.35);
  box-shadow: 0 22px 56px rgba(7, 24, 44, 0.12);
}

.blog-category-card strong,
.blog-post-card strong {
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.2;
}

.blog-category-card span,
.blog-post-card span {
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.blog-category-card span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.blog-post-card p {
  color: #46515d;
}

.faq-section {
  background: #eef6fb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 16px 44px rgba(7, 24, 44, 0.08);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  color: var(--navy);
  font-weight: 850;
  list-style: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  content: "";
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--blue-dark);
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item summary:focus-visible {
  border-radius: 6px;
  box-shadow: 0 0 0 3px rgba(29, 91, 226, 0.22);
}

.faq-item p {
  margin-top: 12px;
  overflow: hidden;
}

.footer,
.site-footer {
  background: #06111f;
  color: var(--white);
  padding: 42px 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--teal) 58%, var(--lime) 100%);
}

.site-footer > .container {
  position: relative;
}

.footer-inner,
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.footer p,
.site-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.fineprint {
  max-width: 460px;
  margin-top: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.page-hero {
  padding: 70px 0;
  background: linear-gradient(180deg, #ffffff, #edf5fc);
}

.page-hero .lead {
  max-width: 760px;
}

.audit-hero {
  padding: 78px 0 84px;
  background:
    radial-gradient(circle at 80% 8%, rgba(0, 168, 143, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #eef6fb 100%);
}

.audit-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.86fr);
  gap: 48px;
  align-items: start;
}

.audit-hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.audit-hero-points span {
  min-height: 58px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: #26313c;
  font-weight: 750;
  padding: 12px 14px;
}

.audit-request-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow);
}

.audit-request-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin-bottom: 20px;
}

.audit-snapshot h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.audit-snapshot p {
  margin-top: 16px;
  font-size: 1.06rem;
}

.mini-report {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.mini-report div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}

.mini-report strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.mini-report span {
  color: #26313c;
  font-weight: 760;
}

.audit-check-grid {
  align-items: stretch;
}

.audit-link-card {
  background: #f7fbff;
}

.internal-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.internal-link-list a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid #c9ddff;
  border-radius: var(--radius);
  background: #e8f1ff;
  color: var(--blue-dark);
  padding: 7px 10px;
  font-size: 0.88rem;
  font-weight: 850;
}

.audit-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1fr);
  gap: 44px;
  align-items: start;
}

.audit-page-form {
  padding: 0;
  box-shadow: none;
}

.audit-page-form label {
  display: grid;
  gap: 7px;
}

.audit-page-form label span {
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 850;
}

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

.checkbox-field {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  margin: 0;
  background: #f9fbfd;
}

.checkbox-field legend {
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 850;
  padding: 0 6px;
}

.checkbox-field label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 10px;
  color: #26313c;
  cursor: pointer;
  transition: background 160ms ease;
}

.checkbox-field label:hover,
.checkbox-field label:focus-within {
  background: rgba(19, 94, 232, 0.06);
}

.checkbox-field input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  flex: 0 0 18px;
  accent-color: var(--blue);
}

.checkbox-field label span {
  color: #26313c;
  font-size: 0.94rem;
  font-weight: 720;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: start;
}

.matrix {
  display: grid;
  gap: 12px;
}

.audit-output-visual-stack {
  display: grid;
  gap: 16px;
}

.matrix-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.matrix-row strong {
  color: var(--navy);
}

.audit-output-preview {
  display: grid;
  gap: 12px;
}

.preview-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.preview-row strong,
.preview-row p {
  color: var(--white);
}

.preview-row p {
  opacity: 0.82;
}

.seo-ai-search .audit-output-preview .preview-row {
  background: var(--white);
  border-color: var(--line);
}

.seo-ai-search .audit-output-preview .preview-row strong {
  color: var(--navy);
}

.seo-ai-search .audit-output-preview .preview-row p {
  color: var(--muted);
  opacity: 1;
}

.bundle-timeline .preview-row {
  background: var(--white);
  border-color: var(--line);
}

.bundle-timeline .preview-row strong {
  color: var(--navy);
}

.bundle-timeline .preview-row p {
  color: var(--muted);
  opacity: 1;
}

.step-card > span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 14px;
}

.reassurance-list {
  display: grid;
  gap: 12px;
}

.reassurance-list a,
.matrix-row a {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-page {
  max-width: 860px;
}

.legal-header .header-inner {
  justify-content: flex-start;
}

.legal-page h2 {
  margin: 34px 0 12px;
  font-size: 1.42rem;
}

.legal-page p {
  margin: 0 0 16px;
  color: #26313c;
}

.legal-page ul {
  margin: 0 0 18px;
  padding-left: 22px;
  color: #26313c;
}

.legal-page li {
  margin: 0 0 12px;
}

.legal-page a {
  color: var(--blue-dark);
  font-weight: 750;
  text-decoration: underline;
}

@media (max-width: 1180px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 10px 14px;
    padding: 10px 0 12px;
  }

  .header-inner > .btn {
    display: none;
  }

  .mobile-nav-toggle {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .mobile-nav-button {
    display: inline-flex !important;
    margin-left: auto;
  }

  .mobile-nav-toggle:checked + .mobile-nav-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-nav-toggle:checked + .mobile-nav-button span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-toggle:checked + .mobile-nav-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    order: 3;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    overflow: visible;
    padding: 10px;
    background: #ffffff;
    border: 1px solid rgba(217, 225, 232, 0.92);
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(7, 24, 44, 0.1);
  }

  .mobile-nav-toggle:checked ~ .nav {
    display: flex;
  }

  .nav a {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    padding: 0 14px;
    background: transparent;
    box-shadow: none;
    font-size: 0.95rem;
  }

  .nav a + a::before {
    display: none;
  }

  .nav a:hover::after,
  .nav a:focus-visible::after {
    opacity: 0;
  }

  .nav .nav-audit-cta {
    display: none;
  }

  .mobile-nav-toggle:checked ~ .btn {
    order: 4;
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: 4px;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--blue);
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 850;
    box-shadow: 0 14px 30px rgba(19, 94, 232, 0.22);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .audit-hero-grid,
  .audit-form-section,
  .audit-panel,
  .audit-band,
  .contact-preview-grid,
  .contact-hero-grid,
  .contact-page-grid,
  .blog-hero-grid,
  .capability-layout,
  .pricing-hero-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 28px 0 30px;
  }

  .hero-grid {
    gap: 0;
  }

  .hero .phone-conversation,
  .hero .proof-row {
    display: none;
  }

  .hero h1 {
    max-width: 720px;
  }

  .hero-copy,
  .channel-row,
  .hero-deliverables {
    max-width: 720px;
  }

  .visual-panel--hero,
  .visual-panel--hero img,
  .visual-panel--compact,
  .visual-panel--compact img {
    min-height: 300px;
  }

  .capability-intro {
    position: static;
    max-width: 760px;
  }

  .grid-3,
  .grid-2,
  .price-grid,
  .pricing-card-grid,
  .pricing-link-grid,
  .workflow-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-category-grid,
  .blog-card-grid,
  .blog-card-grid.compact {
    grid-template-columns: 1fr 1fr;
  }

  .section-image-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 10px 14px;
    padding: 10px 0 12px;
  }

  .header-inner > .btn {
    display: none;
  }

  .mobile-nav-toggle {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .mobile-nav-button {
    display: inline-flex !important;
    margin-left: auto;
  }

  .mobile-nav-toggle:checked + .mobile-nav-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-nav-toggle:checked + .mobile-nav-button span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-toggle:checked + .mobile-nav-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    order: 3;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    overflow: visible;
    padding: 10px;
    background: #ffffff;
    border: 1px solid rgba(217, 225, 232, 0.92);
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(7, 24, 44, 0.1);
  }

  .mobile-nav-toggle:checked ~ .nav {
    display: flex;
  }

  .nav a {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    padding: 0 14px;
    background: transparent;
    box-shadow: none;
    font-size: 0.95rem;
  }

  .nav a + a::before {
    display: none;
  }

  .nav a:hover::after,
  .nav a:focus-visible::after {
    opacity: 0;
  }

  .nav .nav-audit-cta {
    display: none;
  }

  .mobile-nav-toggle:checked ~ .btn {
    order: 4;
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: 4px;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--blue);
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 850;
    box-shadow: 0 14px 30px rgba(19, 94, 232, 0.22);
  }

  .pricing-hero .hero-text-link,
  .pricing-hero .hero-actions > a.hero-text-link[href="/pricing"],
  .how-it-works-hero .hero-actions > a.hero-text-link[href="/pricing"],
  .case-studies-hero .hero-actions > a.hero-text-link[href="/pricing"],
  .case-studies-hero .hero-pricing-link > a.hero-text-link[href="/pricing"] {
    display: inline-block !important;
    padding: 8px 0 !important;
    line-height: 1.6 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .operator-panel {
    justify-self: stretch;
    width: 100%;
  }

  .phone-conversation {
    justify-self: center;
    width: min(100%, 340px);
    padding-inline: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner > .btn {
    display: none;
  }

  .brand img {
    height: 30px;
  }

  .hero {
    padding: 22px 0 24px;
  }

  .section::before,
  .pricing-hero::before,
  .audit-hero::before,
  .contact-hero::before,
  .blog-hero::before,
  #agents::before,
  #workflow::before {
    opacity: 0.08;
    background-size: auto, 360px auto;
    background-position: center, right -190px top 38px;
  }

  .section[aria-labelledby="campaign-types"]::before,
  .section[aria-labelledby="on-page-seo"]::before,
  .section[aria-labelledby="schema-opportunities"]::before,
  .section[aria-labelledby="ethical-links"]::before,
  .section[aria-labelledby="seo-map"]::before,
  .section[aria-labelledby="landing-page"]::before,
  .section[aria-labelledby="bundle-results"]::before,
  .section[aria-labelledby="after-submission"]::before,
  .section[aria-labelledby="landing-pages"]::before,
  .section[aria-labelledby="visual-qa"]::before,
  .section[aria-labelledby="plain-english-task"]::before,
  .section[aria-labelledby="work-logs"]::before,
  .section[aria-labelledby="completed-evidence"]::before,
  .section[aria-labelledby="internal-links"]::before,
  .section[aria-labelledby="pricing-faq-title"]::before,
  .section[aria-labelledby="case-studies-faq-title"]::before,
  .section[aria-labelledby="how-it-works-faq-title"]::before,
  .section[aria-label="Pricing workflow visuals"]::before {
    background-position: center, left -210px top 38px;
  }

  .section[aria-labelledby="wordpress-editing"]::before,
  .section[aria-labelledby="cro-trust"]::before,
  .section[aria-labelledby="connect-tools"]::before,
  .section[aria-labelledby="review-approve"]::before,
  .section[aria-labelledby="monthly-improvement"]::before,
  .section.dark[aria-labelledby="confirm-scope"]::before,
  .section.dark:not([aria-labelledby])::before {
    background-position: center, right -190px top 38px;
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 3.2rem);
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10.4vw, 2.55rem);
    line-height: 1.02;
    margin-top: 10px;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.42;
    margin-top: 10px;
  }

  .eyebrow {
    padding: 7px 10px;
    font-size: 0.72rem;
  }

  .channel-row {
    gap: 7px;
    margin-top: 10px;
  }

  .channel-label {
    flex-basis: 100%;
    font-size: 0.72rem;
  }

  .logo-pill {
    min-height: 30px;
    padding: 5px 8px;
    font-size: 0.78rem;
  }

  .hero-deliverables {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 10px;
  }

  .hero-deliverables div {
    padding: 8px 7px;
  }

  .hero-deliverables strong {
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .hero-deliverables span {
    display: none;
  }

  .hero-actions {
    margin-top: 12px;
  }

  .phone-conversation {
    width: min(100%, 340px);
    padding: 14px 0 0;
  }

  .phone-conversation-shell {
    border-width: 8px;
    border-radius: 30px;
  }

  .phone-chat-screen,
  .phone-conversation-video {
    border-radius: 22px;
  }

  .phone-chat-header {
    min-height: 96px;
    padding: 42px 18px 12px;
  }

  .phone-chat-body {
    gap: 6px;
    padding: 13px 12px 14px;
  }

  .chat-bubble {
    padding: 9px 11px 8px;
  }

  .chat-bubble p {
    font-size: 0.78rem;
    line-height: 1.28;
  }

  .phone-work-card {
    width: 88%;
    padding: 9px 11px;
  }

  .phone-work-card strong,
  .phone-work-card span {
    font-size: 0.7rem;
  }

  .proof {
    padding: 16px;
  }

  .proof-strip,
  .proof-row,
  .hero-deliverables,
  .image-strip,
  .audit-hero-points,
  .grid-3,
  .grid-2,
  .capability-cards,
  .faq-grid,
  .price-grid,
  .pricing-card-grid,
  .pricing-link-grid,
  .workflow-grid,
  .blog-category-grid,
  .blog-card-grid,
  .blog-card-grid.compact,
  .task-grid,
  .matrix-row,
  .preview-row,
  .mini-report div,
  .bundle {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer-inner,
  .footer-grid {
    display: grid;
  }

  .price-card.featured {
    transform: none;
  }

  .bundle .price,
  .price {
    font-size: 1.8rem;
  }

  .saving-stat {
    grid-template-columns: 1fr;
  }

  .plan-card h3 {
    min-height: 0;
  }

  .card-media {
    height: 128px;
  }

  .blog-card-media {
    height: 124px;
  }

  .visual-panel-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 13px;
  }

  .audit-form {
    padding: 18px;
  }

  .audit-page-form {
    padding: 0;
  }

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

@media (max-width: 640px) {
  #agents::before,
  #workflow::before,
  .section::before,
  .pricing-hero::before,
  .audit-hero::before,
  .contact-hero::before,
  .blog-hero::before {
    opacity: 1 !important;
    background-size: auto, 420px auto !important;
    background-position: center, right -72px top 30px !important;
  }

  .section[aria-labelledby="website-tasks"]::before,
  .section[aria-labelledby="work-log"]::before,
  .section[aria-labelledby="connect-chat"]::before,
  .section[aria-labelledby="ai-search"]::before,
  .section[aria-labelledby="waste-problems"]::before,
  .section[aria-labelledby="seo-problems"]::before,
  .section[aria-labelledby="technical-seo"]::before,
  .section[aria-labelledby="local-seo"]::before,
  .section[aria-labelledby="pricing-options"]::before,
  .section[aria-labelledby="ads-recovery"]::before,
  .section[aria-labelledby="what-wilmot-does"]::before,
  .section[aria-labelledby="contact-form-title"]::before,
  .section[aria-labelledby="audit-first"]::before,
  .section[aria-labelledby="pricing-cta"]::before,
  .section[aria-labelledby="audit-route-title"]::before,
  .section[aria-labelledby="module-links"]::before,
  .section[aria-labelledby="wordpress-editing"]::before,
  .section[aria-labelledby="cro-trust"]::before,
  .section[aria-labelledby="connect-tools"]::before,
  .section[aria-labelledby="review-approve"]::before,
  .section[aria-labelledby="monthly-improvement"]::before {
    background-size: auto, 420px auto !important;
    background-position: center, right -72px top 30px !important;
  }

  .section[aria-labelledby="campaign-types"]::before,
  .section[aria-labelledby="on-page-seo"]::before,
  .section[aria-labelledby="schema-opportunities"]::before,
  .section[aria-labelledby="ethical-links"]::before,
  .section[aria-labelledby="seo-map"]::before,
  .section[aria-labelledby="landing-page"]::before,
  .section[aria-labelledby="bundle-results"]::before,
  .section[aria-labelledby="after-submission"]::before,
  .section[aria-labelledby="landing-pages"]::before,
  .section[aria-labelledby="visual-qa"]::before,
  .section[aria-labelledby="plain-english-task"]::before,
  .section[aria-labelledby="work-logs"]::before,
  .section[aria-labelledby="completed-evidence"]::before,
  .section[aria-labelledby="internal-links"]::before,
  .section[aria-labelledby="pricing-faq-title"]::before,
  .section[aria-labelledby="case-studies-faq-title"]::before,
  .section[aria-labelledby="how-it-works-faq-title"]::before,
  .section[aria-label="Pricing workflow visuals"]::before {
    background-size: auto, 420px auto !important;
    background-position: center, left -72px top 30px !important;
  }
}

@media (max-width: 640px) {
  .section[aria-labelledby="module-links"]::before,
  .section[aria-labelledby="internal-links"]::before,
  .section[aria-labelledby="pricing-cta"]::before,
  .section[aria-labelledby="pricing-faq-title"]::before,
  .section[aria-labelledby="case-studies-faq-title"]::before,
  .section[aria-labelledby="how-it-works-faq-title"]::before,
  .section.dark[aria-labelledby="site-bottom-cta-title"]::before {
    background-size: auto, 300px auto !important;
    background-position: center, right -96px bottom -84px !important;
  }

  .section[aria-labelledby="campaign-types"]::before,
  .section[aria-labelledby="on-page-seo"]::before,
  .section[aria-labelledby="schema-opportunities"]::before,
  .section[aria-labelledby="ethical-links"]::before,
  .section[aria-labelledby="seo-map"]::before,
  .section[aria-labelledby="landing-page"]::before,
  .section[aria-labelledby="bundle-results"]::before,
  .section[aria-labelledby="after-submission"]::before,
  .section[aria-labelledby="landing-pages"]::before,
  .section[aria-labelledby="visual-qa"]::before,
  .section[aria-labelledby="plain-english-task"]::before,
  .section[aria-labelledby="work-logs"]::before,
  .section[aria-labelledby="completed-evidence"]::before,
  .section[aria-labelledby="internal-links"]::before,
  .section[aria-label="Pricing workflow visuals"]::before {
    background-size: auto, 300px auto !important;
    background-position: center, left -112px bottom -84px !important;
  }
}

/* Final cascade guard for related-page sections shown after module copy. */
.section[aria-labelledby="internal-links"]::before {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.995) 0%, rgba(255, 255, 255, 0.985) 66%, rgba(255, 255, 255, 0.84) 100%),
    url("/images/img20-slack-phone.webp") !important;
  background-size: auto, min(340px, 24vw) !important;
  background-position: center, right 36px bottom -124px !important;
}

@media (max-width: 640px) {
  .section[aria-labelledby="internal-links"]::before {
    background-size: auto, 280px auto !important;
    background-position: center, right -118px bottom -92px !important;
  }
}

/* Dense section background fix: do not place artwork behind stacked cards or reading rows. */
.section[aria-labelledby="technical-seo"]::before,
.section[aria-labelledby="campaign-types"]::before,
.section[aria-labelledby="on-page-seo"]::before,
.section[aria-labelledby="schema-opportunities"]::before,
.section[aria-labelledby="ethical-links"]::before,
.section[aria-labelledby="seo-map"]::before,
.section[aria-labelledby="website-tasks"]::before,
.section[aria-labelledby="work-log"]::before,
.section[aria-labelledby="connect-chat"]::before,
.section[aria-labelledby="ai-search"]::before,
.section[aria-labelledby="pricing-options"]::before,
.section[aria-label="Pricing workflow visuals"]::before,
.section[aria-labelledby="pricing-faq-title"]::before,
.section[aria-labelledby="case-studies-faq-title"]::before,
.section[aria-labelledby="how-it-works-faq-title"]::before,
.section[aria-labelledby="module-links"]::before,
.section[aria-labelledby="internal-links"]::before {
  background-image: none !important;
}

.section[aria-labelledby="audit-first"]::before,
.section[aria-labelledby="local-seo"]::before,
.section[aria-labelledby="pricing-cta"]::before,
.section[aria-labelledby="audit-route-title"]::before,
.section[aria-labelledby="wordpress-editing"]::before,
.section[aria-labelledby="cro-trust"]::before,
.section[aria-labelledby="connect-tools"]::before,
.section[aria-labelledby="review-approve"]::before,
.section[aria-labelledby="monthly-improvement"]::before {
  background-image:
    linear-gradient(90deg, rgba(238, 245, 251, 1) 0%, rgba(238, 245, 251, 0.98) 58%, rgba(238, 245, 251, 0.72) 100%),
    url("/images/img20-laptop-workspace.webp") !important;
  background-size: auto, min(300px, 22vw) !important;
  background-position: center, right 34px bottom -92px !important;
}

.section[aria-labelledby="waste-problems"]::before,
.section[aria-labelledby="seo-problems"]::before,
.section[aria-labelledby="website-problems"]::before,
.section[aria-labelledby="ads-recovery"]::before,
.section[aria-labelledby="what-wilmot-does"]::before,
.section[aria-labelledby="contact-form-title"]::before,
.section[aria-labelledby="landing-page"]::before,
.section[aria-labelledby="bundle-results"]::before,
.section[aria-labelledby="after-submission"]::before,
.section[aria-labelledby="landing-pages"]::before,
.section[aria-labelledby="visual-qa"]::before,
.section[aria-labelledby="plain-english-task"]::before,
.section[aria-labelledby="work-logs"]::before,
.section[aria-labelledby="completed-evidence"]::before {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 58%, rgba(255, 255, 255, 0.72) 100%),
    url("/images/img20-slack-phone.webp") !important;
  background-size: auto, min(300px, 22vw) !important;
  background-position: center, right 34px bottom -92px !important;
}

.section.dark[aria-labelledby="plain-english"]::before,
.section.dark[aria-labelledby="site-bottom-cta-title"]::before,
.section.dark[aria-labelledby="confirm-scope"]::before,
.section.dark:not([aria-labelledby])::before {
  background-size: auto, min(300px, 22vw) !important;
  background-position: center, right 34px bottom -92px !important;
}

@media (max-width: 640px) {
  .section[aria-labelledby="technical-seo"]::before,
  .section[aria-labelledby="campaign-types"]::before,
  .section[aria-labelledby="on-page-seo"]::before,
  .section[aria-labelledby="schema-opportunities"]::before,
  .section[aria-labelledby="ethical-links"]::before,
  .section[aria-labelledby="seo-map"]::before,
  .section[aria-labelledby="website-tasks"]::before,
  .section[aria-labelledby="work-log"]::before,
  .section[aria-labelledby="connect-chat"]::before,
  .section[aria-labelledby="ai-search"]::before,
  .section[aria-labelledby="pricing-options"]::before,
  .section[aria-label="Pricing workflow visuals"]::before,
  .section[aria-labelledby="pricing-faq-title"]::before,
  .section[aria-labelledby="case-studies-faq-title"]::before,
  .section[aria-labelledby="how-it-works-faq-title"]::before,
  .section[aria-labelledby="module-links"]::before,
  .section[aria-labelledby="internal-links"]::before {
    background-image: none !important;
  }

  .section[aria-labelledby="audit-first"]::before,
  .section[aria-labelledby="local-seo"]::before,
  .section[aria-labelledby="pricing-cta"]::before,
  .section[aria-labelledby="audit-route-title"]::before,
  .section[aria-labelledby="wordpress-editing"]::before,
  .section[aria-labelledby="cro-trust"]::before,
  .section[aria-labelledby="connect-tools"]::before,
  .section[aria-labelledby="review-approve"]::before,
  .section[aria-labelledby="monthly-improvement"]::before,
  .section[aria-labelledby="waste-problems"]::before,
  .section[aria-labelledby="seo-problems"]::before,
  .section[aria-labelledby="website-problems"]::before,
  .section[aria-labelledby="ads-recovery"]::before,
  .section[aria-labelledby="what-wilmot-does"]::before,
  .section[aria-labelledby="contact-form-title"]::before,
  .section[aria-labelledby="landing-page"]::before,
  .section[aria-labelledby="bundle-results"]::before,
  .section[aria-labelledby="after-submission"]::before,
  .section[aria-labelledby="landing-pages"]::before,
  .section[aria-labelledby="visual-qa"]::before,
  .section[aria-labelledby="plain-english-task"]::before,
  .section[aria-labelledby="work-logs"]::before,
  .section[aria-labelledby="completed-evidence"]::before {
    background-size: auto, 240px auto !important;
    background-position: center, right -92px bottom -78px !important;
  }
}

/* Final production guard: use visible foreground Wilmot examples, not section backgrounds. */
#agents::before,
#workflow::before,
.capability-section::before,
.section::before,
.pricing-hero::before,
.audit-hero::before,
.contact-hero::before,
.blog-hero::before {
  background-image: none !important;
  opacity: 0 !important;
}

.wilmot-example-strip {
  padding-top: 0;
}

.wilmot-example-strip::before {
  background-image: none !important;
  opacity: 0 !important;
}

/* Frank requested foreground Wilmot examples instead of decorative section backgrounds. */
#agents::before,
#workflow::before,
.capability-section::before,
.section::before,
.pricing-hero::before,
.audit-hero::before,
.contact-hero::before,
.blog-hero::before {
  background-image: none !important;
  opacity: 0 !important;
}

.wilmot-example-strip {
  padding-top: 0;
}

.wilmot-example-strip::before {
  background-image: none !important;
}

/* Text-safe Wilmot backgrounds: visible brand texture, kept out of reading zones. */
#agents::before,
#workflow::before,
.capability-section::before,
.section[aria-labelledby="audit-first"]::before,
.section[aria-labelledby="technical-seo"]::before,
.section[aria-labelledby="local-seo"]::before,
.section[aria-labelledby="pricing-cta"]::before,
.section[aria-labelledby="audit-route-title"]::before,
.section[aria-labelledby="module-links"]::before,
.section[aria-labelledby="waste-problems"]::before,
.section[aria-labelledby="seo-problems"]::before,
.section[aria-labelledby="website-problems"]::before,
.section[aria-labelledby="pricing-options"]::before,
.section[aria-labelledby="ads-recovery"]::before,
.section[aria-labelledby="what-wilmot-does"]::before,
.section[aria-labelledby="contact-form-title"]::before,
.section[aria-labelledby="website-tasks"]::before,
.section[aria-labelledby="work-log"]::before,
.section[aria-labelledby="connect-chat"]::before,
.section[aria-labelledby="ai-search"]::before,
.section[aria-labelledby="campaign-types"]::before,
.section[aria-labelledby="on-page-seo"]::before,
.section[aria-labelledby="schema-opportunities"]::before,
.section[aria-labelledby="ethical-links"]::before,
.section[aria-labelledby="seo-map"]::before,
.section[aria-labelledby="landing-page"]::before,
.section[aria-labelledby="bundle-results"]::before,
.section[aria-labelledby="after-submission"]::before,
.section[aria-label="Pricing workflow visuals"]::before,
.section[aria-labelledby="wordpress-editing"]::before,
.section[aria-labelledby="cro-trust"]::before,
.section[aria-labelledby="connect-tools"]::before,
.section[aria-labelledby="review-approve"]::before,
.section[aria-labelledby="monthly-improvement"]::before,
.section[aria-labelledby="landing-pages"]::before,
.section[aria-labelledby="visual-qa"]::before,
.section[aria-labelledby="plain-english-task"]::before,
.section[aria-labelledby="work-logs"]::before,
.section[aria-labelledby="completed-evidence"]::before,
.section[aria-labelledby="internal-links"]::before,
.section[aria-labelledby="pricing-faq-title"]::before,
.section[aria-labelledby="case-studies-faq-title"]::before,
.section[aria-labelledby="how-it-works-faq-title"]::before,
.pricing-hero::before,
.audit-hero::before,
.contact-hero::before,
.blog-hero::before {
  opacity: 1 !important;
  background-size: auto, min(360px, 26vw) !important;
  background-position: center, right 34px bottom -104px !important;
}

#agents::before,
.capability-section::before,
.section[aria-labelledby="audit-first"]::before,
.section[aria-labelledby="technical-seo"]::before,
.section[aria-labelledby="local-seo"]::before,
.section[aria-labelledby="pricing-cta"]::before,
.section[aria-labelledby="audit-route-title"]::before,
.section[aria-labelledby="module-links"]::before,
.section[aria-labelledby="wordpress-editing"]::before,
.section[aria-labelledby="cro-trust"]::before,
.section[aria-labelledby="connect-tools"]::before,
.section[aria-labelledby="review-approve"]::before,
.section[aria-labelledby="monthly-improvement"]::before {
  background-image:
    linear-gradient(90deg, rgba(238, 245, 251, 0.995) 0%, rgba(238, 245, 251, 0.985) 68%, rgba(238, 245, 251, 0.82) 100%),
    url("/images/img20-laptop-workspace.webp") !important;
}

.section[aria-labelledby="waste-problems"]::before,
.section[aria-labelledby="seo-problems"]::before,
.section[aria-labelledby="website-problems"]::before,
.section[aria-labelledby="pricing-options"]::before,
.section[aria-labelledby="ads-recovery"]::before,
.section[aria-labelledby="what-wilmot-does"]::before,
.section[aria-labelledby="contact-form-title"]::before,
.section[aria-labelledby="website-tasks"]::before,
.section[aria-labelledby="work-log"]::before,
.section[aria-labelledby="connect-chat"]::before,
.section[aria-labelledby="ai-search"]::before,
.section[aria-labelledby="campaign-types"]::before,
.section[aria-labelledby="on-page-seo"]::before,
.section[aria-labelledby="schema-opportunities"]::before,
.section[aria-labelledby="ethical-links"]::before,
.section[aria-labelledby="seo-map"]::before,
.section[aria-labelledby="landing-page"]::before,
.section[aria-labelledby="bundle-results"]::before,
.section[aria-labelledby="after-submission"]::before,
.section[aria-label="Pricing workflow visuals"]::before,
.section[aria-labelledby="landing-pages"]::before,
.section[aria-labelledby="visual-qa"]::before,
.section[aria-labelledby="plain-english-task"]::before,
.section[aria-labelledby="work-logs"]::before,
.section[aria-labelledby="completed-evidence"]::before,
.section[aria-labelledby="internal-links"]::before,
.section[aria-labelledby="pricing-faq-title"]::before,
.section[aria-labelledby="case-studies-faq-title"]::before,
.section[aria-labelledby="how-it-works-faq-title"]::before {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.995) 0%, rgba(255, 255, 255, 0.985) 68%, rgba(255, 255, 255, 0.82) 100%),
    url("/images/img20-slack-phone.webp") !important;
}

.pricing-hero::before,
.audit-hero::before,
.contact-hero::before,
.blog-hero::before {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(238, 246, 251, 0.985) 68%, rgba(238, 246, 251, 0.82) 100%),
    url("/images/img20-laptop-workspace.webp") !important;
}

#workflow::before,
.section.dark[aria-labelledby="plain-english"]::before,
.section.dark[aria-labelledby="site-bottom-cta-title"]::before,
.section.dark[aria-labelledby="confirm-scope"]::before,
.section.dark:not([aria-labelledby])::before {
  opacity: 1 !important;
  background-image:
    linear-gradient(90deg, rgba(7, 24, 44, 0.995) 0%, rgba(7, 24, 44, 0.985) 66%, rgba(7, 24, 44, 0.78) 100%),
    url("/images/img20-slack-phone.webp") !important;
  background-size: auto, min(340px, 25vw) !important;
  background-position: center, right 32px bottom -108px !important;
}

.section.dark[aria-labelledby="confirm-scope"]::before,
.section.dark:not([aria-labelledby])::before {
  background-image:
    linear-gradient(90deg, rgba(7, 24, 44, 0.995) 0%, rgba(7, 24, 44, 0.985) 66%, rgba(7, 24, 44, 0.78) 100%),
    url("/images/img20-success.webp") !important;
}

@media (max-width: 640px) {
  #agents::before,
  #workflow::before,
  .capability-section::before,
  .section[aria-labelledby="audit-first"]::before,
  .section[aria-labelledby="technical-seo"]::before,
  .section[aria-labelledby="local-seo"]::before,
  .section[aria-labelledby="pricing-cta"]::before,
  .section[aria-labelledby="audit-route-title"]::before,
  .section[aria-labelledby="module-links"]::before,
  .section[aria-labelledby="waste-problems"]::before,
  .section[aria-labelledby="seo-problems"]::before,
  .section[aria-labelledby="website-problems"]::before,
  .section[aria-labelledby="pricing-options"]::before,
  .section[aria-labelledby="ads-recovery"]::before,
  .section[aria-labelledby="what-wilmot-does"]::before,
  .section[aria-labelledby="contact-form-title"]::before,
  .section[aria-labelledby="website-tasks"]::before,
  .section[aria-labelledby="work-log"]::before,
  .section[aria-labelledby="connect-chat"]::before,
  .section[aria-labelledby="ai-search"]::before,
  .section[aria-labelledby="campaign-types"]::before,
  .section[aria-labelledby="on-page-seo"]::before,
  .section[aria-labelledby="schema-opportunities"]::before,
  .section[aria-labelledby="ethical-links"]::before,
  .section[aria-labelledby="seo-map"]::before,
  .section[aria-labelledby="landing-page"]::before,
  .section[aria-labelledby="bundle-results"]::before,
  .section[aria-labelledby="after-submission"]::before,
  .section[aria-label="Pricing workflow visuals"]::before,
  .section[aria-labelledby="wordpress-editing"]::before,
  .section[aria-labelledby="cro-trust"]::before,
  .section[aria-labelledby="connect-tools"]::before,
  .section[aria-labelledby="review-approve"]::before,
  .section[aria-labelledby="monthly-improvement"]::before,
  .section[aria-labelledby="landing-pages"]::before,
  .section[aria-labelledby="visual-qa"]::before,
  .section[aria-labelledby="plain-english-task"]::before,
  .section[aria-labelledby="work-logs"]::before,
  .section[aria-labelledby="completed-evidence"]::before,
  .section[aria-labelledby="internal-links"]::before,
  .section[aria-labelledby="pricing-faq-title"]::before,
  .section[aria-labelledby="case-studies-faq-title"]::before,
  .section[aria-labelledby="how-it-works-faq-title"]::before,
  .pricing-hero::before,
  .audit-hero::before,
  .contact-hero::before,
  .blog-hero::before {
    opacity: 1 !important;
    background-size: auto, 230px auto !important;
    background-position: center, right -112px bottom -78px !important;
  }

  #workflow::before,
  .section.dark::before {
    background-size: auto, 220px auto !important;
    background-position: center, right -108px bottom -82px !important;
  }
}

/* Final guard: dense rows/cards should not obstruct decorative backgrounds. */
.section[aria-labelledby="technical-seo"]::before,
.section[aria-labelledby="campaign-types"]::before,
.section[aria-labelledby="on-page-seo"]::before,
.section[aria-labelledby="schema-opportunities"]::before,
.section[aria-labelledby="ethical-links"]::before,
.section[aria-labelledby="seo-map"]::before,
.section[aria-labelledby="website-tasks"]::before,
.section[aria-labelledby="work-log"]::before,
.section[aria-labelledby="connect-chat"]::before,
.section[aria-labelledby="ai-search"]::before,
.section[aria-labelledby="pricing-options"]::before,
.section[aria-label="Pricing workflow visuals"]::before,
.section[aria-labelledby="pricing-faq-title"]::before,
.section[aria-labelledby="case-studies-faq-title"]::before,
.section[aria-labelledby="how-it-works-faq-title"]::before,
.section[aria-labelledby="module-links"]::before,
.section[aria-labelledby="internal-links"]::before {
  background-image: none !important;
}

.section[aria-labelledby="audit-first"]::before,
.section[aria-labelledby="local-seo"]::before,
.section[aria-labelledby="pricing-cta"]::before,
.section[aria-labelledby="audit-route-title"]::before,
.section[aria-labelledby="wordpress-editing"]::before,
.section[aria-labelledby="cro-trust"]::before,
.section[aria-labelledby="connect-tools"]::before,
.section[aria-labelledby="review-approve"]::before,
.section[aria-labelledby="monthly-improvement"]::before {
  background-image:
    linear-gradient(90deg, rgba(238, 245, 251, 1) 0%, rgba(238, 245, 251, 0.98) 60%, rgba(238, 245, 251, 0.7) 100%),
    url("/images/img20-laptop-workspace.webp") !important;
  background-size: auto, min(300px, 22vw) !important;
  background-position: center, right 34px bottom -92px !important;
}

.section[aria-labelledby="waste-problems"]::before,
.section[aria-labelledby="seo-problems"]::before,
.section[aria-labelledby="website-problems"]::before,
.section[aria-labelledby="ads-recovery"]::before,
.section[aria-labelledby="what-wilmot-does"]::before,
.section[aria-labelledby="contact-form-title"]::before,
.section[aria-labelledby="landing-page"]::before,
.section[aria-labelledby="bundle-results"]::before,
.section[aria-labelledby="after-submission"]::before,
.section[aria-labelledby="landing-pages"]::before,
.section[aria-labelledby="visual-qa"]::before,
.section[aria-labelledby="plain-english-task"]::before,
.section[aria-labelledby="work-logs"]::before,
.section[aria-labelledby="completed-evidence"]::before {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 60%, rgba(255, 255, 255, 0.7) 100%),
    url("/images/img20-slack-phone.webp") !important;
  background-size: auto, min(300px, 22vw) !important;
  background-position: center, right 34px bottom -92px !important;
}

.section.dark[aria-labelledby="plain-english"]::before,
.section.dark[aria-labelledby="site-bottom-cta-title"]::before,
.section.dark[aria-labelledby="confirm-scope"]::before,
.section.dark:not([aria-labelledby])::before {
  background-size: auto, min(300px, 22vw) !important;
  background-position: center, right 34px bottom -92px !important;
}

@media (max-width: 640px) {
  .section[aria-labelledby="technical-seo"]::before,
  .section[aria-labelledby="campaign-types"]::before,
  .section[aria-labelledby="on-page-seo"]::before,
  .section[aria-labelledby="schema-opportunities"]::before,
  .section[aria-labelledby="ethical-links"]::before,
  .section[aria-labelledby="seo-map"]::before,
  .section[aria-labelledby="website-tasks"]::before,
  .section[aria-labelledby="work-log"]::before,
  .section[aria-labelledby="connect-chat"]::before,
  .section[aria-labelledby="ai-search"]::before,
  .section[aria-labelledby="pricing-options"]::before,
  .section[aria-label="Pricing workflow visuals"]::before,
  .section[aria-labelledby="pricing-faq-title"]::before,
  .section[aria-labelledby="case-studies-faq-title"]::before,
  .section[aria-labelledby="how-it-works-faq-title"]::before,
  .section[aria-labelledby="module-links"]::before,
  .section[aria-labelledby="internal-links"]::before {
    background-image: none !important;
  }

  .section[aria-labelledby="audit-first"]::before,
  .section[aria-labelledby="local-seo"]::before,
  .section[aria-labelledby="pricing-cta"]::before,
  .section[aria-labelledby="audit-route-title"]::before,
  .section[aria-labelledby="wordpress-editing"]::before,
  .section[aria-labelledby="cro-trust"]::before,
  .section[aria-labelledby="connect-tools"]::before,
  .section[aria-labelledby="review-approve"]::before,
  .section[aria-labelledby="monthly-improvement"]::before,
  .section[aria-labelledby="waste-problems"]::before,
  .section[aria-labelledby="seo-problems"]::before,
  .section[aria-labelledby="website-problems"]::before,
  .section[aria-labelledby="ads-recovery"]::before,
  .section[aria-labelledby="what-wilmot-does"]::before,
  .section[aria-labelledby="contact-form-title"]::before,
  .section[aria-labelledby="landing-page"]::before,
  .section[aria-labelledby="bundle-results"]::before,
  .section[aria-labelledby="after-submission"]::before,
  .section[aria-labelledby="landing-pages"]::before,
  .section[aria-labelledby="visual-qa"]::before,
  .section[aria-labelledby="plain-english-task"]::before,
  .section[aria-labelledby="work-logs"]::before,
  .section[aria-labelledby="completed-evidence"]::before {
    background-size: auto, 240px auto !important;
    background-position: center, right -92px bottom -78px !important;
  }
}

/* Final production guard: foreground Wilmot examples only. */
#agents::before,
#workflow::before,
.capability-section::before,
.section::before,
.pricing-hero::before,
.audit-hero::before,
.contact-hero::before,
.blog-hero::before {
  background-image: none !important;
  opacity: 0 !important;
}

.wilmot-example-strip {
  padding-top: 0;
}

.wilmot-example-strip::before {
  background-image: none !important;
  opacity: 0 !important;
}

/* Absolute final production guard: foreground Wilmot examples only. */
html body #agents::before,
html body #workflow::before,
html body .capability-section.capability-section::before,
html body .section.section.section::before,
html body .pricing-hero.pricing-hero::before,
html body .audit-hero.audit-hero::before,
html body .contact-hero.contact-hero::before,
html body .blog-hero.blog-hero::before,
html body .wilmot-example-strip.wilmot-example-strip::before {
  background-image: none !important;
  opacity: 0 !important;
}

.wilmot-live-demo {
  background: #f7f8f5;
  scroll-margin-top: 104px;
}

.wilmot-live-demo--early {
  padding-top: 42px;
}

.approval-strip {
  background: #17342a;
  color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  margin-top: 28px;
}

.approval-strip strong,
.approval-strip span {
  display: block;
}

.approval-strip strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.25;
}

.approval-strip span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.5;
}

.approval-strip__item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 14px;
}

.approval-strip--light {
  background: #edf2e8;
  color: var(--navy);
  border: 1px solid rgba(22, 38, 31, 0.12);
  box-shadow: 0 18px 48px rgba(22, 38, 31, 0.08);
}

.approval-strip--light .approval-strip__item {
  background: #ffffff;
  border-color: rgba(22, 38, 31, 0.12);
}

.approval-strip--light strong {
  color: var(--navy);
}

.approval-strip--light span {
  color: var(--muted);
}

.proof-table {
  display: grid;
  border: 1px solid rgba(22, 38, 31, 0.14);
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
}

.web-proof-table {
  margin-bottom: 18px;
}

.audit-proof-row {
  display: grid;
  grid-template-columns: 0.72fr 1.1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(22, 38, 31, 0.1);
}

.audit-proof-row:first-child {
  border-top: 0;
}

.audit-proof-row > * {
  padding: 14px;
  margin: 0;
  border-left: 1px solid rgba(22, 38, 31, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.audit-proof-row > *:first-child {
  border-left: 0;
}

.audit-proof-row strong {
  color: var(--navy);
}

.audit-proof-row--head > * {
  background: #edf2e8;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.example-week {
  display: grid;
  gap: 10px;
  margin: 18px 0 20px;
  padding: 14px;
  border: 1px solid rgba(22, 38, 31, 0.12);
  border-radius: 14px;
  background: #f7f8f5;
}

.example-week strong {
  color: var(--navy);
  font-family: var(--font-heading);
}

.example-week span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.response-path {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.response-path .matrix-row strong {
  white-space: nowrap;
}

.wilmot-live-demo .section-head {
  max-width: 780px;
}

.live-demo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: stretch;
}

.live-demo-copy {
  display: grid;
  gap: 18px;
  max-width: 860px;
}

.live-demo-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.live-demo-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 650;
}

.live-demo-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--green);
  flex: 0 0 auto;
}

.live-device-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(260px, 0.85fr) minmax(460px, 1.3fr);
  gap: 24px;
  align-items: stretch;
}

.live-phone-stack {
  display: contents;
}

.live-device {
  min-width: 0;
  border: 1px solid rgba(22, 38, 31, 0.14);
  box-shadow: 0 22px 50px rgba(22, 38, 31, 0.13);
  overflow: hidden;
}

.live-phone {
  border-radius: 28px;
  background: #17191c;
  padding: 10px;
  min-height: 560px;
}

.live-phone-screen {
  height: 100%;
  min-height: 536px;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #f4f5ef;
}

.live-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 14px 5px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
}

.live-signal {
  display: flex;
  gap: 3px;
  align-items: flex-end;
}

.live-signal span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: currentColor;
}

.live-signal span:nth-child(1) { height: 5px; }
.live-signal span:nth-child(2) { height: 7px; }
.live-signal span:nth-child(3) { height: 9px; }

.live-header {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(22, 38, 31, 0.12);
}

.live-avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 850;
}

.live-title {
  min-width: 0;
}

.live-title strong {
  display: block;
  font-size: 0.78rem;
  line-height: 1.2;
}

.live-title span {
  display: block;
  font-size: 0.62rem;
  color: var(--muted);
}

.live-stream {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 10px;
  overflow: hidden;
}

.live-message {
  max-width: 88%;
  padding: 7px 9px;
  border-radius: 13px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.live-message.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.live-message--user {
  align-self: flex-end;
}

.live-message--bot {
  align-self: flex-start;
}

.live-message-name {
  display: block;
  margin-bottom: 2px;
  font-size: 0.58rem;
  font-weight: 850;
  color: inherit;
  opacity: 0.9;
}

.live-message p {
  margin: 0;
  color: inherit;
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.4;
}

.live-composer {
  margin: 0 9px 10px;
  min-height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  padding: 7px 10px;
  font-size: 0.66rem;
  line-height: 1.2;
  overflow: hidden;
  white-space: nowrap;
}

.live-composer.is-typing::after {
  content: "";
  width: 1px;
  height: 13px;
  margin-left: 2px;
  background: currentColor;
  animation: live-cursor 0.9s steps(1) infinite;
}

.live-typing {
  width: fit-content;
  padding: 8px 10px;
  border-radius: 14px;
  display: flex;
  gap: 4px;
}

.live-typing span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  animation: live-dot 1s infinite ease-in-out;
}

.live-typing span:nth-child(2) { animation-delay: 120ms; }
.live-typing span:nth-child(3) { animation-delay: 240ms; }

.live-phone--telegram .live-phone-screen {
  background: #dbeaf5;
}

.live-phone--telegram .live-status,
.live-phone--telegram .live-header {
  background: #ffffff;
  color: #17212b;
}

.live-phone--telegram .live-avatar,
.live-phone--telegram .live-composer {
  background: #2aabee;
  color: #ffffff;
}

.live-message--telegram.live-message--user {
  background: #d8f0c5;
  color: #17212b;
  border-bottom-right-radius: 4px;
}

.live-message--telegram.live-message--bot,
.live-typing--telegram {
  background: #ffffff;
  color: #17212b;
  border-bottom-left-radius: 4px;
}

.live-typing--telegram span {
  background: #8796a4;
}

.live-phone--slack .live-phone-screen {
  background: #1d1f23;
}

.live-phone--slack .live-status,
.live-phone--slack .live-header {
  background: #19171d;
  color: #ffffff;
  border-color: #303136;
}

.live-phone--slack .live-avatar {
  background: #4a154b;
  color: #f5e8f5;
  border-radius: 7px;
}

.live-phone--slack .live-title span {
  color: #a9a5ad;
}

.live-phone--slack .live-composer {
  background: #25282d;
  border: 1px solid #3b3e43;
  color: #c8c9cc;
  border-radius: 9px;
}

.live-message--slack {
  max-width: 94%;
  border-radius: 8px;
}

.live-message--slack.live-message--user {
  background: #4a2552;
  color: #fff7ff;
}

.live-message--slack.live-message--bot,
.live-typing--slack {
  background: #30343a;
  color: #f2f4f7;
}

.live-typing--slack span {
  background: #a9a5ad;
}

.live-laptop {
  min-height: 560px;
  border-radius: 18px;
  background: #20242a;
  padding: 12px;
}

.live-laptop-screen {
  min-height: 536px;
  border-radius: 12px;
  overflow: hidden;
  background: #f9faf6;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.live-laptop-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(22, 38, 31, 0.12);
}

.live-window-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c7c9c3;
}

.live-laptop-title {
  margin-left: 6px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 850;
}

.live-laptop-body {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  min-height: 0;
}

.live-laptop-sidebar {
  padding: 14px;
  background: #eef2e8;
  border-right: 1px solid rgba(22, 38, 31, 0.1);
}

.live-work-card {
  display: grid;
  gap: 8px;
  padding: 10px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(22, 38, 31, 0.1);
  margin-bottom: 10px;
}

.live-work-card span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.live-work-card strong {
  color: var(--navy);
  font-size: 0.82rem;
  line-height: 1.2;
}

.live-work-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.35;
}

.live-laptop-chat {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.live-laptop-chat .live-stream {
  padding: 14px;
}

.live-message--laptop.live-message--user {
  background: #17342a;
  color: #ffffff;
  border-bottom-right-radius: 4px;
}

.live-message--laptop.live-message--bot,
.live-typing--laptop {
  background: #e8eee2;
  color: var(--navy);
  border-bottom-left-radius: 4px;
}

.live-typing--laptop span {
  background: #647267;
}

.live-laptop-chat .live-composer {
  border: 1px solid rgba(22, 38, 31, 0.12);
  background: #ffffff;
  color: var(--muted);
}

@keyframes live-dot {
  0%, 70%, 100% { transform: translateY(0); opacity: 0.45; }
  35% { transform: translateY(-4px); opacity: 1; }
}

@keyframes live-cursor {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .live-message,
  .live-typing span,
  .live-composer.is-typing::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1180px) {
  .live-device-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .live-laptop {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .approval-strip {
    grid-template-columns: 1fr;
  }

  .audit-proof-row,
  .audit-proof-row--head {
    grid-template-columns: 1fr;
  }

  .audit-proof-row--head {
    display: none;
  }

  .audit-proof-row > * {
    border-left: 0;
    border-top: 1px solid rgba(22, 38, 31, 0.08);
  }

  .audit-proof-row > *:first-child {
    border-top: 0;
  }

  .image-strip {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .image-strip .visual-panel,
  .image-strip .visual-panel img {
    min-height: 360px;
  }

  .live-device-grid {
    grid-template-columns: 1fr;
  }

  .live-laptop {
    grid-column: auto;
  }

  .live-laptop {
    min-height: 420px;
    padding: 7px;
    border-radius: 15px;
  }

  .live-laptop-screen {
    min-height: 406px;
  }

  .live-laptop-body {
    grid-template-columns: 1fr;
  }

  .live-laptop-sidebar {
    display: none;
  }

  .live-phone {
    min-height: 460px;
  }

  .live-phone-screen {
    min-height: 440px;
  }
}
